OSDN Git Service

PR target/46435
[pf3gnuchains/gcc-fork.git] / gcc / ChangeLog
1 2010-11-12  Joern Rennecke  <amylaar@spamcop.net>
2
3         PR target/46438
4         * config/xtensa/xtensa.c (xtensa_expand_nonlocal_goto): Use LCT_NORMAL.
5         (xtensa_setup_frame_addresses, xtensa_trampoline_init): Likewise.
6         (xtensa_function_arg_1): De-constify cum.
7         (xtensa_expand_prologue): Use add_reg_note.
8
9         PR target/46435
10         * config/cris/cris.c (saved_regs_mentioned): Delete.
11         (cris_reload_address_legitimized): Cast itype to enum reload_type.
12         Remove unused variable op0p.
13         (cris_rtx_costs): Cast argument 2 to rtx_cost to enum rtx_code.
14         (cris_emit_movem_store): Use add_reg_note.
15
16 2010-11-12  Eric Botcazou  <ebotcazou@adacore.com>
17
18         * function.c (expand_function_end): Set the locator of the prologue on
19         the stack checking insns.
20
21 2010-11-12  Richard Henderson  <rth@redhat.com>
22
23         * config.gcc [xtensa] (extra_options): Add fused-madd.opt.
24         * config/xtensa/xtensa.opt (mfused-madd): Remove.
25         * config/xtensa/xtensa.c (TARGET_DEFAULT_TARGET_FLAGS): Remove
26         MASK_FUSED_MADD.
27         * config/xtensa/xtensa.md (fmasf4): Rename from muladdsf3; use fma.
28         (fnmasf4): Rename from mulsubsf3; use fma.
29
30 2010-11-12  Joern Rennecke  <amylaar@spamcop.net>
31             Richard Henderson  <rth@redhat.com>
32
33         PR target/46428
34         * config/moxie/moxie.c (moxie_expand_prologue): Remove unused variables.
35         * config/moxie/moxie.h (HARD_REGNO_OK_FOR_BASE_P): Use unsigned
36         comparison.
37
38 2010-11-12  Pat Haugen  <pthaugen@us.ibm.com>
39
40         * opts-common.c (decode_cmdline_option): Initialize separate_args.
41
42 2010-11-12  Jan Hubicka  <jh@suse.cz>
43
44         * doc/invoke.texi (early-inlining-insns): Update default.
45         * params.def (early-inlining-insns): Default to 10.
46
47 2010-11-12  Olivier Hainque  <hainque@adacore.com>
48
49         * config/rs6000/aix.h: #undef TARGET_AIX_OS before #define.
50
51 2010-11-12  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
52
53         * config/mips/iris6.h [!IRIX_USING_GNU_LD]
54         (SUPPORTS_INIT_PRIORITY): Define.
55
56 2010-11-12  Joern Rennecke  <amylaar@spamcop.net>
57
58         PR target/46430
59         * config/avr/avr-protos.h (avr_return_addr_rtx): Update prototype.
60         * config/avr/driver-avr.c (avr_device_to_arch): Always return value.
61         (avr_device_to_data_start, avr_device_to_startfiles): Likewise.
62         (avr_device_to_devicelib): Likewise.
63         * config/avr/avr.md (zero_extendqihi2): Put variable declarations
64         into block.
65         (zero_extendqisi2, zero_extendhisi2, zero_extendqidi2): Likewise.
66         (zero_extendhidi2, zero_extendsidi2): Likewise.
67         * config/avr/avr.c (avr_num_arg_regs): Constify type.
68         (avr_return_addr_rtx): De-constify tem.
69         (avr_rotate_bytes): Move declarations to start of block.
70         Don't use variable length array.
71         Put nested if/else into block.
72
73         PR rtl-optimization/46433
74         * var-tracking.c: Include tm_p.h .
75
76         PR bootstrap/44756
77         PR build/44767
78         * doc/tm.texi.in (LOCAL_ALIGNMENT): State that the type, if any,
79         should be unsigned.
80         (STACK_SLOT_ALIGNMENT, LOCAL_DECL_ALIGNMENT, PUSH_ROUNDING): Likewise.
81         * doc/tm.texi: Regenerate.
82
83         PR target/46412
84         * config/bfin/bfin-protos.h (bfin_local_alignment): Update prototype.
85         * config/bfin/bfin.c: Include sel-sched.h .
86         (bfin_cpus): Use BFIN_CPU_UNKNOWN for last initializer element.
87         (expand_interrupt_handler_prologue): Remove unused variable insn.
88         (bfin_load_pic_reg): Likewise.
89         (bfin_rtx_costs): Make code / outer_code variables of type
90         enum rtx_code, copied from re-named parameters.
91         (bfin_local_alignment): Change align argument and return type
92         to unsigned.
93         (bfin_adjust_cost): Remove unused variable insn_type.
94         Declare variables at start of block.
95         (struct loop_info): Rename to...
96         (struct loop_info_d).
97         (workaround_rts_anomaly): Change type of icode to int.
98         (harmless_null_pointer_p): Cast REGNO (..) to int before comparison
99         with int-typed variable.
100         (note_np_check_stores): Likewise.
101         (trapping_loads_p): Remove unused variable pat.
102         (bfin_expand_binop_builtin): Use expand_normal.
103         (bfin_expand_unop_builtin): Likewise.
104         (bfin_expand_builtin): Likewise.
105         Set tmode before use.
106
107         PR middle-end/44769
108         * final.c (split_double): Don't use BITS_PER_WORD directly in
109         shift count.
110
111         PR target/46431
112         * config/fr30/fr30.md (*movsf_constant_store): Remove duplicated
113         assignment.
114
115         PR target/46450
116         * config/stormy16/stormy16.c (xstormy16_expand_prologue):
117         Use add_reg_note.
118         (xstormy16_function_arg): Dereference cum.
119         (xstormy16_expand_builtin): Use expand_normal.
120         Change type of omode to enum machine_mode.
121         (combine_bnp): Rename and to and_insn.
122
123         PR target/46437
124         * config/mcore/mcore.c (layout_mcore_frame): Remove unused variable
125         localreg.
126
127 2010-11-12  Eric Botcazou  <ebotcazou@adacore.com>
128
129         PR debug/46375
130         * emit-rtl.c (remove_insn): Do not mark BBs upon debug insns.
131
132 2010-11-11  Rodrigo Rivas Costa  <rodrigorivascosta@gmail.com>
133
134         PR lto/46376
135         * lto-symtab.c (lto_symtab_resolve_replaceable_p): Use DECL_ONE_ONLY.
136
137 2010-11-11  Nathan Froyd  <froydnj@codesourcery.com>
138
139         PR c/44782
140         * common.opt (fmax-errors=): New option.
141         * opts.c (common_handle_option) [OPT_fmax_errors_]: Handle it.
142         * diagnostic.h (struct diagnostic_context): Add max_errors field.
143         * diagnostic.c (diagnostic_initialize): Initialize it.
144         (diagnostic_action_after_output): Exit if more than max_errors
145         have been output.
146         * doc/invoke.texi (Warning Options): Add -fmax-errors.
147         (-fmax-errors): Document.
148
149 2010-11-11  Richard Henderson  <rth@redhat.com>
150
151         * optabs.c (init_optabs): Init {fma,fms,fnma,fnms}_optab properly.
152
153 2010-11-11  Richard Henderson  <rth@redhat.com>
154
155         * config/fused-madd.opt: New file.
156         * config.gcc [i386-*, x86_64-*] (extra_options): Use it.
157         * config/i386/i386.c (ix86_extra_costs): Handle FMA.
158         (TARGET_DEFAULT_TARGET_FLAGS): Remove MASK_FUSED_MADD.
159         * config/i386/i386.opt (mfused-madd): Remove.
160         * config/i386/sse.md (split_fma): Remove.
161         (split_fms, split_fnma, split_fnms): Remove.
162
163 2010-11-12  Jakub Jelinek  <jakub@redhat.com>
164
165         PR target/46088
166         * config/i386/i386.md (*ashl<mode>3_cconly,
167         *<shiftrt_insn><mode>3_cconly): Don't use ix86_binary_operator_ok,
168         change nonimmediate_operand predicate to register_operand.
169
170 2010-11-11  Paolo Bonzini  <bonzini@gnu.org>
171
172         * Makefile.in (gengtype-lex.c): Include bconfig.h first.
173
174 2010-11-11  Jan Hubicka  <jh@suse.cz>
175
176         * opts.c (finish_options): Do not error on -flto-partition alone.
177
178         * doc/invoke.texi (-fwhopr): Merge into -flto section.
179         (-flto-partition): Document none.
180         * gcc.c (LINK_COMMAND_SPEC): Remove -fwhopr.
181         * lto-wrapper.c: Update comment.
182         (run_gcc): Update LTO option parsing.
183         * opts.c (finish_options): add support -flto-partition=none
184         (common_handle_option): Remove fwhopr.
185         * common.opt: Turn fwhopr into flto.
186         * collect2.c (main): Update option handling.
187         * cgraphunit.c (cgraph_decide_is_function_needed): Remove flag_whopr.
188         * ipa-split.c (execute_split_functions): Remove flag_whopr.
189         * ipa.c (function_and_variable_visibility): Remove flag_whopr.
190         * ipa-prop.c (ipa_compute_jump_functions): Remove flag_whopr.
191         * varpool.c (decide_is_variable_needed): Remove flag_whopr.
192
193 2010-11-11  Jan Hubicka  <jh@suse.cz>
194
195         PR tree-optimize/40436
196         * ipa-inline.c (likely_eliminated_by_inlining_p): Rename to ...
197         (eliminated_by_inlining_prob): ... this one; return 50% probability for
198         SRA.
199         (estimate_function_body_sizes): Update use of eliminated_by_inlining_prob;
200         estimate static function size for 2 instructions.
201
202 2010-11-11  Joern Rennecke  <amylaar@spamcop.net>
203
204         PR target/44749
205         * config/mep/mep-protos.h (mep_legitimize_reload_address): Always
206         declare.  Change type of argument four to type int.
207         (mep_secondary_input_reload_class): Returns enum reg_class.
208         (mep_secondary_output_reload_class): Likewise.
209         (mep_function_value): Change types of arguments to cont_tree.
210         * config/mep/mep.c (mep_legitimize_reload_address): Change type of
211         argument four to type int.
212         (mep_secondary_input_reload_class): Returns enum reg_class.
213         (mep_secondary_output_reload_class): Likewise.
214         (mep_function_value): Change types of arguments to cont_tree.
215         * config/mep/mep.h (REGNO_REG_CLASS): Cast return value of
216         mep_regno_reg_class to enum reg_class.
217
218 2010-11-11  Richard Henderson  <rth@redhat.com>
219
220         * tree-ssa-math-opts.c (convert_mult_to_fma): Do not verify
221         that the target has the exact fma operation that we matched.
222
223 2010-11-11  Joseph Myers  <joseph@codesourcery.com>
224
225         * reginfo.c (fix_register): Avoid inserting English word in
226         diagnostic sentence.  Use %qs for quoting and %'.
227
228 2010-11-11  H.J. Lu  <hongjiu.lu@intel.com>
229
230         * config/i386/driver-i386.c (host_detect_local_cpu): Support
231         Intel processor family 6, model 0x2c.
232
233 2010-11-11  Joseph Myers  <joseph@codesourcery.com>
234
235         * opts.c (warning_as_error_callback,
236         register_warning_as_error_callback): Remove.
237         (enable_warning_as_error): Don't use warning_as_error_callback.
238         * opts.h (register_warning_as_error_callback): Remove.
239
240 2010-11-11  Richard Henderson  <rth@redhat.com>
241
242         * tree-ssa-math-opts.c (convert_mult_to_fma): Handle a NEGATE_EXPR
243         in between the MULT and the PLUS/MINUS.
244
245 2010-11-11  Jakub Jelinek  <jakub@redhat.com>
246
247         PR middle-end/46388
248         * expr.c (expand_assignment): If to_rtx is a VOIDmode MEM, use
249         BLKmode mode for it.
250         (expand_expr_real_1): Similarly for op0.
251
252 2010-11-11  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
253
254         * doc/sourcebuild.texi (LTO Testing, dg-suppress-ld-options):
255         Document optional target selector.
256
257 2010-11-11  Dave Korn  <dave.korn.cygwin@gmail.com>
258
259         * lto-streamer-out.c (write_symbol): Use int_size_in_bytes rather than
260         assembling high and low parts of size if not using 32-bit HWINT; else
261         use DECL_SIZE_UNITS, not DECL_SIZE.
262
263 2010-11-11  Martin Jambor  <mjambor@suse.cz>
264
265         PR tree-optimization/46383
266         * ipa-prop.c (compute_complex_assign_jump_func): Ignore negative
267         offsets.
268         (compute_complex_ancestor_jump_func): Likewise.
269         * tree.c (get_binfo_at_offset): Return NULL_TREE if offset is negative.
270
271 2010-11-11  Jakub Jelinek  <jakub@redhat.com>
272
273         PR debug/46150
274         * tree-ssa-loop-ivopts.c (htab_inv_expr_eq): Don't return
275         true if expr1->hash != expr2->hash.
276
277 2010-11-10  Joseph Myers  <joseph@codesourcery.com>
278
279         * cfgloop.c (verify_loop_structure): Use %' in diagnostics.  Start
280         diagnostics with lowercase letters.
281         * cgraphunit.c (verify_cgraph_node): Start diagnostics with
282         lowercase letters.
283         * collect2.c (maybe_run_lto_and_relink): Remove trailing '.' from
284         diagnostic.
285         * config/alpha/freebsd.h (LINK_SPEC): Avoid '`' in diagnostic.
286         * config/arm/arm.c (arm_get_pcs_model): Start diagnostics with
287         lowercase letters.
288         * config/arm/freebsd.h (LINK_SPEC): Avoid '`' in diagnostic.
289         Remove trailing ' ' from diagnostic.
290         * config/avr/avr.c (print_operand_address): Start diagnostic with
291         a lowercase letter and remove trailing '.'.
292         * config/avr/avr.opt (mpmem-wrap-around): Fix typo in help text.
293         * config/bfin/bfin.c (bfin_option_override): Start diagnostics
294         with lowercase letters.  Use %' in diagnostics.  Remove trailing
295         '.' from diagnostics.
296         (bfin_handle_longcall_attribute): Use %' in diagnostic.
297         * config/cris/cris.c (cris_split_movdx,
298         cris_expand_pic_call_address): Start diagnostics with lowercase
299         letters.
300         (cris_asm_output_label_ref): Use %' in diagnostic.
301         * config/cris/cris.h (ASM_SPEC): Start diagnostic with a lowercase
302         letter.
303         * config/crx/crx.h (FUNCTION_PROFILER): Start diagnostic with a
304         lowercase letter.
305         * config/darwin-c.c (version_as_macro): Start diagnostic with a
306         lowercase letter.
307         * config/darwin-driver.c (darwin_default_min_version): Use %' in
308         diagnostic.
309         * config/host-darwin.c (darwin_gt_pch_use_address): Use %' in
310         diagnostic.
311         * config/i386/freebsd.h (LINK_SPEC): Avoid '`' in diagnostic.
312         * config/i386/host-cygwin.c (cygwin_gt_pch_get_address): Use %' in
313         diagnostics.
314         * config/i386/i386.c (ix86_option_override_internal): Write
315         diagnostic as a single sentence without trailing '.'.  Use %' in
316         diagnostics.
317         (ix86_function_sseregparm, classify_argument): Start diagnostics
318         with lowercase letters.
319         (ix86_expand_prologue): Use %' in diagnostic.
320         * config/i386/i386.h (CC1_CPU_SPEC_1): Remove trailing '.' from
321         diagnostic.
322         * config/i386/nwld.h (LINK_SPEC): Start diagnostic with a
323         lowercase letter.
324         * config/i386/winnt.c (i386_pe_determine_dllimport_p): Use %' in
325         diagnostic.
326         * config/ia64/freebsd.h (LINK_SPEC): Avoid '`' in diagnostic.
327         * config/ia64/ia64.opt (msched-max-memory-insns-hard-limit): Avoid
328         '`' in help text.
329         * config/lm32/lm32.c (lm32_print_operand): Start diagnostic with a
330         lowercase letter.
331         * config/mep/mep.c (mep_validate_vliw): Start diagnostics with
332         lowercase letters.
333         * config/microblaze/microblaze.c (microblaze_handle_option):
334         Remove trailing '.' from diagnostic.
335         (print_operand): Start diagnostic with a lowercase letter.
336         * config/pa/pa-hpux10.h (LINK_SPEC): Start diagnostics with
337         lowercase letters.  Avoid '`' in diagnostics.
338         * config/pa/pa-hpux11.h (LINK_SPEC): Start diagnostics with
339         lowercase letters.  Avoid '`' in diagnostics.
340         * config/pa/pa64-hpux.h (LINK_SPEC): Start diagnostics with
341         lowercase letters.  Avoid '`' in diagnostics.
342         * config/picochip/picochip.c (picochip_option_override,
343         picochip_emit_save_register, picochip_function_arg,
344         picochip_output_label, picochip_output_internal_label,
345         picochip_asm_output_opcode, picochip_output_cbranch,
346         picochip_output_compare, picochip_output_branch,
347         picochip_get_vliw_alu_id): Remove trailing '.' and '\n' from
348         diagnostics. Start diagnostics with lowercase letters.  Use %' in
349         diagnostics.
350         * config/rs6000/rs6000.c (rs6000_option_override_internal): Use
351         "SPE" capitalization.  Start diagnostic with a lowercase letter.
352         (rs6000_handle_option): Start diagnostics with lowercase letters.
353         (def_builtin): Remove trailing '.' from diagnostic.
354         (rs6000_savres_routine_name): Start diagnostic with a lowercase
355         letter.
356         * config/rs6000/sysv4.h (LINK_OS_FREEBSD_SPEC): Avoid '`' in
357         diagnostic.
358         * config/rx/rx.c (rx_handle_option): Start diagnostic with a
359         lowercase letter.
360         * config/s390/s390.c (s390_option_override) Start diagnostics with
361         lowercase letters.  Use %' in diagnostic.
362         * config/sh/sh.c (sh_output_mi_thunk): Start diagnostics with
363         lowercase letters.
364         * config/sh/symbian-base.c (sh_symbian_mark_dllimport): Use %' in
365         diagnostic.
366         * config/sh/symbian-c.c (sh_symbian_is_dllimported): Use %' in
367         diagnostic.
368         * config/sh/symbian-cxx.c (sh_symbian_is_dllimported): Use %' in
369         diagnostic.
370         * config/sparc/freebsd.h (LINK_SPEC): Avoid '`' in diagnostic.
371         * config/spu/spu.c (spu_option_override): Start diagnostics with
372         lowercase letters.  Use %qs for quoting in diagnostics.
373         (spu_check_builtin_parm): Remove trailing '.' from diagnostics.
374         Use %wd instead of HOST_WIDE_INT_PRINT_DEC in diagnostic .
375         * config/v850/v850.c (construct_save_jarl): Remove trailing '\n'
376         from diagnostic.
377         * convert.c (convert_to_integer, convert_to_vector): Use %' in
378         diagnostics.
379         * dbgcnt.c (dbg_cnt_process_opt): Start diagnostic with lowercase
380         letter and use "cannot" spelling.
381         * expmed.c (extract_fixed_bit_field): Start diagnostic with
382         lowercase letter and format as a single sentence without '.'.
383         * ggc-common.c (write_pch_globals, gt_pch_save, gt_pch_restore):
384         Use %' in diagnostics.
385         * ggc-page.c (ggc_pch_write_object, ggc_pch_finish, ggc_pch_read):
386         Use %' in diagnostics.
387         * ggc-zone.c (ggc_pch_write_object, ggc_pch_finish, ggc_pch_read):
388         Use %' in diagnostics.
389         * graph.c (clean_graph_dump_file): Use %' in diagnostic.
390         * graphite-poly.c (graphite_read_scop_file): Start diagnostics
391         with lowercase letters and remove tailing '.' and '\n'.
392         * lto-cgraph.c (input_profile_summary): Start diagnostic with
393         lowercase letter and remove trailing '.'.
394         (input_cgraph): Start diagnostics with lowercase letters and
395         remove trailing '\n'.
396         * opts.c (finish_options, common_handle_option): Start diagnostics
397         with lowercase letters and remove trailing '.'.  Fix typo in
398         diagnostic.
399         * passes.c (position_pass): Start diagnostic with lowercase
400         letter. 
401         * plugin.c (add_new_plugin, parse_plugin_arg_opt,
402         register_callback, try_init_one_plugin): Start diagnostics with
403         lowercase letters.
404         * reload1.c (spill_failure): Use %' in diagnostic.
405         (gen_reload): Start diagnostic with a lowercase letter.
406         * stor-layout.c (place_field): Start diagnostic with a lowercase
407         letter.
408         * toplev.c (open_auxiliary_file): Use %' in diagnostic.
409         * tree-cfg.c (verify_expr, verify_types_in_gimple_reference,
410         verify_gimple_call, verify_gimple_phi, verify_eh_throw_stmt_node):
411         Start diagnostics with lowercase letters, remove trailing '.' and
412         use %' in diagnostics.
413         * tree-ssa.c (verify_def): Remove trailing '.' from diagnostic.
414         (verify_ssa): Don't split diagnostic across two error calls.
415         Spell out "number" and use %' in diagnostic.
416         * value-prof.c (visit_hist, check_counter): Start diagnostics with
417         lowercase letters.
418
419 2010-11-10  Uros Bizjak  <ubizjak@gmail.com>
420
421         PR middle-end/46419
422         * config/i386/xmmintrin.h (_mm_cvtpi16_ps): Swap __hisi and __losi.
423         (_mm_cvtpu16_ps): Ditto.
424
425 2010-11-10  Joseph Myers  <joseph@codesourcery.com>
426
427         * common.opt (flag_excess_precision_cmdline, flag_generate_lto,
428         warn_larger_than, larger_than_size, warn_frame_larger_than,
429         frame_larger_than_size, flag_gen_aux_info, flag_shlib,
430         default_visibility, flag_tls_default): New Variable declarations.
431         (aux-info, auxbase, dumpbase, dumpdir, falign-functions=,
432         falign-jumps=, falign-labels=, falign-loops=, o, v): Use Var.
433         (v): Declare as Common and document here.
434         * flags.h (default_visibility, flag_generate_lto,
435         warn_larger_than, larger_than_size, warn_frame_larger_than,
436         frame_larger_than_size, flag_gen_aux_info, flag_pedantic_errors,
437         flag_shlib, flag_excess_precision_cmdline): Remove.
438         (set_Wstrict_aliasing): Update prototype.
439         * gcc.c (verbose_flag): Remove.
440         (driver_handle_option): Add diagnostic_context parameter.  Don't
441         handle OPT_v explicitly here.  Set verbose_flag to 1 rather than
442         incrementing it.
443         * opts-common.c (handle_option): Pass dc to handler.
444         * opts.c (warn_larger_than, larger_than_size,
445         warn_frame_larger_than, frame_larger_than_size,
446         default_visibility): Remove.
447         (common_handle_option): Add diagnostic_context parameter.
448         (set_fast_math_flags, set_unsafe_math_optimizations_flags): Add
449         gcc_options parameters.
450         (lang_handle_option, target_handle_option, read_cmdline_options,
451         decode_options): Add diagnostic_context parameters.
452         (finish_options): Access option state through opts pointer where
453         possible.
454         (common_handle_option): Access option state through opts pointer
455         where possible.  Do not set local static variable verbose.  Do not
456         explicitly handle OPT_v, OPT_Wstrict_aliasing_,
457         OPT_Wstrict_overflow_, OPT_Wunused, OPT_auxbase, OPT_dumpbase,
458         OPT_dumpdir, OPT_falign_functions_, OPT_falign_jumps_,
459         OPT_falign_labels_, OPT_falign_loops_, OPT_fira_verbose_, OPT_o or
460         OPT_fwhopr_.  Do not explicitly set .opt file variables for
461         OPT_aux_info or OPT_pedantic_errors.  Use dc for diagnostic context.
462         (set_Wstrict_aliasing): Add gcc_options parameter.
463         * opts.h (struct cl_option_handler_func): Add diagnostic_context
464         parameter to handler.
465         (decode_options): Add diagnostic_context parameter.
466         * toplev.c (dump_base_name, dump_dir_name, aux_base_name,
467         asm_file_name, flag_generate_lto, flag_gen_aux_info,
468         aux_info_file_name, flag_shlib, flag_tls_default,
469         flag_excess_precision_cmdline, flag_pedantic_errors): Remove.
470         (toplev_main): Pass global_dc to decode_options.
471         * toplev.h (dump_base_name, dump_dir_name, aux_base_name,
472         aux_info_file_name, asm_file_name): Remove.
473         * tree.h (flag_tls_default): Remove.
474
475 2010-11-10  Eric Botcazou  <ebotcazou@adacore.com>
476
477         * config/sparc/sparc.c (sparc_delegitimize_address): New function.
478         (TARGET_DELEGITIMIZE_ADDRESS): Define to above.
479
480 2010-11-10  Quentin Neill  <quentin.neill.gnu@gmail.com>
481
482         * config.gcc (i[34567]86-*-*): Include tbmintrin.h.
483         (x86_64-*-*): Likewise.
484         * config/i386/cpuid.h: Define TBM bit.
485         * config/i386/driver-i386.c (host_detect_local_cpu): Define
486         and set has_tbm.
487         * config/i386/i386-c.c (ix86_target_macros_internal): Check
488         isa_flag for TBM.
489         * config/i386/i386.c (OPTION_MASK_ISA_TBM_SET): New.
490         (OPTION_MASK_ISA_TBM_UNSET): New.
491         (ix86_handle_option): Handle -mtbm.
492         (isa_opts): Add -mtbm.
493         (enum pta_flags): Add PTA_TBM.
494         (ix86_option_override_internal): Add TBM support.
495         (ix86_valid_target_attribute_inner_p): Handle -mtbm.
496         (IX86_BUILTIN_BEXTRI32): New for TBM intrinsic.
497         (IX86_BUILTIN_BEXTRI64): Likewise.
498         (bdesc_args): Add TBM intrinsics.
499         (ix86_expand_builtin): Add TBM specific case.
500         * config/i386/i386.h (TARGET_TBM): New for TBM.
501         * config/i386/i386.md (UNSPEC_BEXTRI): New for TBM.
502         (tbm_bextri_<mode>): Likewise.
503         (*tbm_blcfill_<mode>): Likewise.
504         (*tbm_blci_<mode>): Likewise.
505         (*tbm_blcic_<mode>): Likewise.
506         (*tbm_blcmsk_<mode>): Likewise.
507         (*tbm_blcs_<mode>): Likewise.
508         (*tbm_blsfill_<mode>): Likewise.
509         (*tbm_blsic_<mode>): Likewise.
510         (*tbm_t1mskc_<mode>): Likewise.
511         (*tbm_tzmsk_<mode>): Likewise.
512         * config/i386/i386.opt: Add -mtbm.
513         * config/i386/tbmintrin.h (__bextri_u32): New.
514         (__blcfill_u32): Likewise.
515         (__blci_u32): Likewise.
516         (__blcic_u32): Likewise.
517         (__blcmsk_u32): Likewise.
518         (__blcs_u32): Likewise.
519         (__blsfill_u32): Likewise.
520         (__blsic_u32): Likewise.
521         (__t1mskc_u32): Likewise.
522         (__tzmsk_u32): Likewise.
523         (__bextri_u64): Likewise.
524         (__blcfill_u64): Likewise.
525         (__blci_u64): Likewise.
526         (__blcic_u64): Likewise.
527         (__blcmsk_u64): Likewise.
528         (__blcs_u64): Likewise.
529         (__blsfill_u64): Likewise.
530         (__blsic_u64): Likewise.
531         (__t1mskc_u64): Likewise.
532         (__tzmsk_u64): Likewise.
533         * config/i386/x86intrin.h: Add TBM check and tbmintrin.h.
534         * doc/invoke.texi: Document -mtbm.
535         * doc/extend.texi: Document TBM built-in functions.
536
537 2010-11-10  Quentin Neill  <quentin.neill.gnu@gmail.com>
538
539         * config.gcc (i[34567]86-*-*): Include bmiintrin.h.
540         (x86_64-*-*): Likewise.
541         * config/i386/cpuid.h: Define BMI bit.
542         * config/i386/driver-i386.c (host_detect_local_cpu): Define
543         and set has_bmi.
544         * config/i386/i386-c.c (ix86_target_macros_internal): Check
545         isa_flag for BMI.
546         * config/i386/i386.c (OPTION_MASK_ISA_BMI_SET): New.
547         (OPTION_MASK_ISA_BMI_UNSET): New.
548         (ix86_handle_option): Handle -mbmi.
549         (isa_opts): Add -mbmi.
550         (enum pta_flags): Add PTA_BMI.
551         (ix86_option_override_internal): Add BMI support.
552         (ix86_valid_target_attribute_inner_p): Handle -mbmi.
553         (IX86_BUILTIN_BEXTR32): New for BMI intrinsic.
554         (IX86_BUILTIN_BEXTR64): Likewise.
555         (IX86_BUILTIN_CTZS): Likewise.
556         (bdesc_args): Add BMI intrinsics.
557         (ix86_expand_args_builtin): Add BMI specific cases.
558         * config/i386/i386.h (TARGET_BMI): New for BMI.
559         (CTZ_DEFINED_VALUE_AT_ZERO): Likewise.
560         (CLZ_DEFINED_VALUE_AT_ZERO): Likewise.
561         * config/i386/i386.md (UNSPEC_BEXTR): New for BMI.
562         (UNSPEC_TZCNT): Likewise.
563         (ctz<mode>2): Add tzcnt, and handle 16 bit operands.
564         (bmi_andn_<mode>): New for BMI.
565         (bmi_bextr_<mode>): Likewise.
566         (bmi_blsi_<mode>): Likewise.
567         (bmi_blsmsk_<mode>): Likewise.
568         (bmi_blsr_<mode>): Likewise.
569         * config/i386/i386.opt: Add -mbmi.
570         * config/i386/x86intrin.h: Add BMI check and bmiintrin.h.
571         * config/i386/bmiintrin.h (__lzcnt_u16): New.
572         (__tzcnt_u16): Likewise.
573         (__andn_u32): Likewise.
574         (__bextr_u32): Likewise.
575         (__blsi_u32): Likewise.
576         (__blsmsk_u32): Likewise.
577         (__blsr_u32): Likewise.
578         (__lzcnt_u32): Likewise.
579         (__tzcnt_u32): Likewise.
580         (__andn_u64): Likewise.
581         (__bextr_u64): Likewise.
582         (__blsi_u64): Likewise.
583         (__blsmsk_u64): Likewise.
584         (__blsr_u64): Likewise.
585         (__lzcnt_u64): Likewise.
586         (__tzcnt_u64): Likewise.
587         * doc/invoke.texi: Document -mbmi and -mno-bmi.
588         * doc/extend.texi: Document BMI built-in functions.
589
590 2010-11-10  Jan Hubicka  <jh@suse.cz>
591
592         PR tree-optimize/46228
593         * doc/invoke.texi (comdat-sharing-probability): Document.
594         * ipa-inline.c (cgraph_estimate_growth): Handle COMDATs
595         * params.def (PARAM_COMDAT_SHARING_PROBABILITY): New param.
596
597 2010-11-10  Jan Hubicka  <jh@suse.cz>
598
599         PR tree-optimize/46228
600         * cgraph.c (cgraph_propagate_frequency): Fix typo.
601
602 2010-11-10  H.J. Lu  <hongjiu.lu@intel.com>
603
604         PR tree-optimization/46414
605         * tree-inline.c (estimate_move_cost): Check preferred vector
606         mode for vector type.
607
608 2010-11-10  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
609
610         * config/alpha/osf5.h (ASM_SPEC): Remove -nocpp.
611
612 2010-11-10  Sebastian Pop  <sebastian.pop@amd.com>
613
614         PR tree-optimization/45971
615         * tree-if-conv.c (predicate_scalar_phi): Do not generate a COND_EXPR
616         for phi nodes analyzable by scev.
617
618 2010-11-10  Richard Guenther  <rguenther@suse.de>
619
620         PR tree-optimization/44964
621         * ipa-inline.c (cgraph_flatten): Check that SSA form matches.
622
623 2010-11-10  Martin Jambor  <mjambor@suse.cz>
624
625         PR tree-optimization/46351
626         PR tree-optimization/46377
627         * tree-sra.c (type_internals_preclude_sra_p): Disqualify types with
628         aggregate bit-fields.
629
630 2010-11-10  Joseph Myers  <joseph@codesourcery.com>
631
632         * doc/tm.texi.in (TARGET_OPTION_TRANSLATE_TABLE): Remove.
633         * doc/tm.texi: Regenerate.
634         * opts-common.c (tm.h): Don't include.
635         (target_option_translations): Remove.
636         (decode_cmdline_options_to_array): Don't handle translating options.
637         * system.h (TARGET_OPTION_TRANSLATE_TABLE): Poison.
638         * config/darwin-driver.c: Don't condition includes on
639         CROSS_DIRECTORY_STRUCTURE.
640         (darwin_default_min_version): Make static.
641         (darwin_driver_init): New.  Call darwin_default_min_version if not
642         CROSS_DIRECTORY_STRUCTURE.
643         * config/darwin.h (TARGET_OPTION_TRANSLATE_TABLE): Remove.
644         (DRIVER_SELF_SPECS, DARWIN_CC1_SPEC): Define.
645         (ASM_SPEC): Add %{static}.
646         (darwin_default_min_version): Don't declare.
647         (darwin_driver_init): Declare.
648         (GCC_DRIVER_HOST_INITIALIZATION): Define to call
649         darwin_driver_init, independent of CROSS_DIRECTORY_STRUCTURE.
650         * config/darwin.opt (all_load, allowable_client,
651         arch_errors_fatal, bind_at_load, bundle, bundle_loader,
652         dead_strip, dependency-file, dylib_file, dynamic, dynamiclib,
653         exported_symbols_list, filelist, findirect-virtual-calls,
654         flat_namespace, force_cpusubtype_ALL, force_flat_namespace,
655         framework, fterminated-vtables, gfull, gused, image_base, init,
656         install_name, multi_module, multiply_defined,
657         multiply_defined_unused, no_dead_strip_inits_and_terms,
658         seg_addr_table, seg_addr_table_filename, segaddr,
659         segs_read_only_addr, segs_read_write_addr, single_module,
660         umbrella, unexported_symbols_list, weak_reference_mismatches,
661         Zall_load, Zarch_errors_fatal, Zbind_at_load, Zbundle,
662         Zdead_strip, Zdynamic, Zdynamiclib, Zflat_namespace,
663         Zforce_cpusubtype_ALL, Zforce_flat_namespace, Zmulti_module,
664         Zno_dead_strip_inits_and_terms, Zsingle_module): New.
665         * config/i386/darwin.h (CC1_SPEC): Add DARWIN_CC1_SPEC.
666         (ASM_SPEC): Add %{static}.
667         (SUBTARGET_OPTION_TRANSLATE_TABLE): Remove.
668         * config/mep/mep.h (TARGET_OPTION_TRANSLATE_TABLE): Remove.
669         (DRIVER_SELF_SPECS): Handle options formerly in
670         TARGET_OPTION_TRANSLATE_TABLE.
671         * config/mep/mep.opt (mfar): New.
672         * config/picochip/picochip.h (TARGET_OPTION_TRANSLATE_TABLE): Remove.
673         (DRIVER_SELF_SPECS): Define.  Handle options formerly in
674         TARGET_OPTION_TRANSLATE_TABLE.
675         * config/rs6000/darwin.h (CC1_SPEC): Handle -faltivec and -fno-altivec.
676         (SUBTARGET_OPTION_TRANSLATE_TABLE): Remove.
677         * config/rs6000/darwin.opt (Waltivec-long-deprecated, faltivec,
678         ffix-and-continue, findirect-data): New.
679         * config/rx/rx.h (TARGET_OPTION_TRANSLATE_TABLE): Remove.
680         * config/rx/rx.opt (nofpu): Make into alias of mnofpu.
681         (mnofpu): Define mask and use Report here.
682
683 2010-11-10  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
684
685         * config/s390/s390.c (s390_emit_prologue): Report the stack
686         size if -fstack-usage is used.
687
688 2010-11-10  Richard Guenther  <rguenther@suse.de>
689
690         PR tree-optimization/46398
691         * tree-ssa-sccvn.c (process_scc): Iterate for all PHIs.
692
693 2010-11-10  Joern Rennecke  <amylaar@spamcop.net>
694
695         PR target/44760
696         * config/iq2000/iq2000.h (REGISTER_NAMES): Remove trailing semicolon.
697         (REGNO_MODE_OK_FOR_BASE_P): Cast REGNO to int before passing it to
698         GP_REG_OR_PSEUDO_STRICT_P.
699         * config/iq2000/iq2000.md (andsi3+1): Add gcc_unreachable for
700         unexpected alternative.
701         (*movsf_internal): Likewise.
702         (indirect_jump): Replace call to non-existant function with call to
703         internal_error.
704         (tablejump): Likewise.
705         * config/iq2000/iq2000.c: Include df.h .
706         (iq2000_function_arg_advance): Use CONST_CAST2.
707         (compute_frame_size, iq2000_expand_prologue): Remove unused variables.
708         (iq2000_can_eliminate): Call leaf_function_p instead of testing for
709         a non-zero function address.
710         (iq2000_initial_elimination_offset): Add gcc_unreachable for
711         unexpected value of FROM.
712         (symbolic_expression_p): Delete.
713         (iq2000_function_value): Constify func.
714         (expand_one_builtin): Use expand_normal.
715         (iq2000_print_operand): Don't print VALUE if calculating it failed.
716
717         PR rtl-optimization/44764
718         * addresses.h (ok_for_base_p_1): Mark regno with ATTRIBUTE_UNUSED.
719
720         PR target/46407
721         * config/rx/rx.h (REGISTER_NAMES): Remove trailing semicolon.
722         * config/rx/rx.c (rx_promote_function_mode): Mark punsignedp
723         with ATTRIBUTE_UNUSED.
724         (valid_psw_flag): Constify parameter which.
725         (rx_memory_move_cost): Change type of parameter regclass to reg_class_t.
726
727         PR target/46415
728         * config/mmix/mmix-protos.h (mmix_local_alignment): Update prototype.
729         (mmix_dbx_register_number): Likewise.
730         * config/mmix/mmix.c: Include df.h .
731         (mmix_local_alignment): Change argument basic_align and return type
732         to unsigned.
733         (mmix_dbx_register_number): Change argument and return type to
734         unsigned.
735         (mmix_expand_prologue): Use add_reg_note.
736
737         PR target/46417
738         * config/spu/spu.c (spu_expand_insv): Remove unused variables.
739         (spu_split_store): Use aform.
740         (spu_function_profiler): Mark parameter labelno with ATTRIBUTE_UNUSED.
741
742 2010-11-10  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
743
744         PR/46268
745         * doc/gty.texi (GTY Options): Clarify that variable_size produces
746         allocators taking size in bytes, compare with length option.  Add
747         size calculation example.
748         (Invoking the garbage collector): Ensure that sentences are
749         followed by two spaces.  Describe that pointer fields must be
750         initialized at ggc_collect call.
751         (Troubleshooting): New section.
752
753 2010-11-09  Jan Hubicka  <jh@suse.cz>
754
755         PR tree-optimization/40436
756         * ipa-inline.c (leaf_node_p): Implement using is_inexpensive_builtin.
757         * tree-inline.c (estimate_num_insns): Inexpensive builtins are like
758         normal instructions; be sure bultin is not implemented in this file;
759         compute non-zero return cost.
760         (init_inline_once): Reduce builtin_call_cost to 1; set return cost.
761         * tree-inline.h (eni_weights_d): Add return cost.
762
763 2010-11-09  Joseph Myers  <joseph@codesourcery.com>
764
765         * c-parser.c (c_parser_struct_declaration): Handle declaration
766         specifiers followed by CPP_CLOSE_BRACE.
767
768 2010-11-09  Michael Meissner  <meissner@linux.vnet.ibm.com>
769
770         * config/rs6000/rs6000.md (floatsi<mode>2_lfiwax): Rewrite so
771         split occurs before reload, and we allocate memory at the time of
772         the split, not during expansion.  Add attributes.
773         (floatsi<mode>2_lfiwax_mem): Ditto.
774         (floatunssi<mode>2_lfiwzx): Ditto.
775         (floatunssi<mode>2_lfiwzx_mem): Ditto.
776         (floatsidf2): Ditto.
777         (floatunssisf2): Ditto.
778         (floatunssidf2): Ditto.
779         (fix_trunc<mode>si2): Ditto.
780         (fix_trunc<mode>si2_stfiwx): Ditto.
781         (fix_trunc<mode>si2_internal): Ditto.
782         (fix_trunc<mode>si2): Ditto.
783         (fix_trunc<mode>di2): Ditto.
784         (fixuns_trunc<mode>si2_stfiwx): Ditto.
785         (floatsisf2): Ditto.
786         (floatdidf2_mem): Ditto.
787         (floatunsdidf2_mem): Ditto.
788         (floatunsdidf2): Ditto.
789         (floatdisf2_internal1): Ditto.
790         (floatdisf2_mem): Ditto.
791         (floatunsdisf2_mem): Ditto.
792         (floatsi<mode>2_lfiwax_mem2): Delete.
793         (floatunssi<mode>2_lfiwzx_mem2): Ditto.
794         (fix_trunc<mode>si2_mem): Ditto.
795         (fixuns_trunc<mode>si2_mem): Ditto.
796         (round32<mode>2_fprs): New combiner insn to combine (double)(int)
797         type operations to reduce copying the values to multiple memory slots.
798         (roundu32<mode>2_fprs): Ditto.
799
800         * config/rs6000/rs6000.c (rs6000_address_for_fpconvert): Handle
801         PRE_INC, PRE_DEC, PRE_MODIFY.
802         (rs6000_expand_convert_si_to_sfdf): Delete, no longer used.
803
804         * config/rs6000/rs6000-protos.h (rs6000_expand_convert_si_to_sfdf):
805         Delete prototype.
806
807 2010-11-09  Jakub Jelinek  <jakub@redhat.com>
808
809         PR target/43808
810         * cfgexpand.c (partition_stack_vars): Call
811         update_alias_info_with_stack_vars unconditionally.
812         (update_alias_info_with_stack_vars): Allow unused
813         unreferenced vars when not optimizing.
814
815 2010-11-09  Sebastian Pop  <sebastian.pop@amd.com>
816
817         PR tree-optimization/46036
818         * tree-if-conv.c (predicate_bbs): Call unshare_expr before
819         add_to_dst_predicate_list.
820
821 2010-11-09  Jakub Jelinek  <jakub@redhat.com>
822
823         PR debug/46171
824         * df-problems.c (struct dead_debug_use, struct dead_debug): Move
825         earlier.
826         (df_set_unused_notes_for_mw, df_create_unused_note): Add DEBUG
827         argument, call dead_debug_reset when adding REG_UNUSED note.
828         (dead_debug_reset): New function.
829         (df_note_bb_compute): Adjust df_set_unused_notes_for_mw and
830         df_create_unused_note callers.
831
832 2010-11-09  Anatoly Sokolov  <aesok@post.ru>
833
834         * config/fr30/fr30.c: Include "df.h".
835
836 2010-11-09  Richard Guenther  <rguenther@suse.de>
837
838         PR tree-optimization/46355
839         * tree-loop-distribution.c (tree_loop_distribution): Do not
840         distribute loops without a single exit.
841
842 2010-11-09  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
843
844         PR rtl-optimization/46237
845         * ira-conflicts.c (ira_build_conflicts): Record conflicts for call
846         saved hard regs if they might get partially clobbered.
847
848 2010-11-09  Paul Koning  <ni1d@arrl.net>
849
850         * config/pdp11/pdp11.md (lshrsi3, lshrhi3): Use add for decrement.
851
852 2010-11-09  Richard Guenther  <rguenther@suse.de>
853
854         PR tree-optimization/46177
855         * tree-loop-distribution.c (prop_phis): Remove.
856         (generate_builtin): Re-use the old loop exit edge to avoid
857         needing to update PHI nodes.
858
859 2010-11-09  Joern Rennecke  <amylaar@spamcop.net>
860
861         * config/i386/i386.c (ix86_expand_split_stack_prologue): Change
862         type of args_size to unsigned HOST_WIDE_INT.
863
864         PR target/44755
865         * config.gcc (picochip-*): Add t-pnt16-warn to tmake_file.
866         * config/t-pnt16-warn: New file.
867         * config/picochip/picochip.c (picochip_emit_stack_allocate):
868         Use add_reg_note.
869         (picochip_emit_save_register): Likewise.
870         (picochip_emit_restore_register): Remove variable insn.
871         (picochip_legitimize_address): Don't use C++ style comments.
872         (picochip_legitimize_reload_address): Likewise.
873         (reorder_var_tracking_notes): Remove variable vliw_start.
874         (picochip_reorg): Cast first arguemnt to emit_note_after to
875         enum insn_note.
876         (picochip_expand_builtin_2op): Use EXPAND_NORMAL.
877         (picochip_expand_builtin_3op): Likewise.
878         (picochip_expand_builtin_2opvoid): Likewise.
879         (picochip_expand_array_get, picochip_expand_array_put): Likewise.
880         (picochip_expand_array_testport): Likewise.
881         (picochip_init_builtins): Remove unused variables.
882         * config/picochip/picochip.h (ASM_FORMAT_PRIVATE_NAME): Cast LABELNO
883         to unsigned long, and output it as such.
884         (ASM_OUTPUT_SKIP): Use HOST_WIDE_INT_PRINT_UNSIGNED.
885         * config/picochip/picochip.md (movhicc): Remove nonsense statement.
886         (schedType): Cast result of picochip_schedule_type to
887         enum attr_schedType.
888
889         PR target/44759
890         * config/mn10300/mn10300.c (SIZE_FMOV_LIMIT): Promote all arms of
891         conditional to type of S.
892         (mn10300_function_arg): Remove unused variable align.
893         (mn10300_arg_partial_bytes): Likewise.
894         * config/mn10300/mn10300.md (attribute cpu): Cast value to
895         enum attr_cpu.
896
897 2010-11-09  H.J. Lu  <hongjiu.lu@intel.com>
898
899         PR bootstrap/46392
900         * gengtype-parse.c (type): Call get_input_file_name to get file name.
901
902 2010-11-09  Eric Botcazou  <ebotcazou@adacore.com>
903
904         * tree.h (contains_placeholder_p): Fix comment.
905         (type_contains_placeholder_p): Adjust comment.
906         * tree.c (contains_placeholder_p): Fix comment.
907         (type_contains_placeholder_1): Do not recurse on pointed-to types and
908         adjust comment.
909         (type_contains_placeholder_p): Add comment.
910
911 2010-11-09  Paul Koning  <ni1d@arrl.net>
912
913         * config/pdp11/pdp11.c (pdp11_assemble_integer): Clean up fix for
914         output of byte values.
915
916 2010-11-09  Jakub Jelinek  <jakub@redhat.com>
917
918         PR middle-end/46360
919         * tree-ssa-propagate.c (update_call_from_tree): Fix for use
920         not in SSA mode.
921
922 2010-11-09  Richard Guenther  <rguenther@suse.de>
923
924         PR middle-end/46221
925         * varasm.c (compute_visible_aliases): New function.
926         (remove_unreachable_alias_pairs): Aliases make a target available
927         even though we reclaimed the cgraph node.
928         (finish_aliases_1): Likewise.
929         * Makefile.in (varasm.o): Add pointer-set.h dependency.
930
931 2010-11-09  Nick Clifton  <nickc@redhat.com>
932
933         * config/mn10300/mn10300-modes.def: New file.
934
935 2010-11-09  Basile Starynkevitch  <basile@starynkevitch.net>
936             Jeremie Salvucci  <jeremie.salvucci@free.fr>
937
938         * gengtype.c (get_output_file_name): Declaration moved to gengtype.h.
939         (plugin_files, get_file_basename, get_file_realbasename)
940         (get_file_langdir, error_at_line, gt_files, this_file)
941         (system_h_file, read_input_list, create_field_all)
942         (get_file_srcdir_relative_path, get_file_basename)
943         (get_file_langdir, get_file_gtfilename)
944         (get_output_file_with_visibility, get_output_file_name)
945         (struct flist, put_mangled_filename, walk_type)
946         (put_mangled_filename, finish_root_table, write_roots): Use
947         input_file-s.
948         (lang_dir_names, num_lang_dirs): Remove static.
949         (get_lang_bitmap, set_lang_bitmap): Moved to gengtype.h.
950         (main): Use input_file-s.
951
952         * gengtype.h: (struct input_file_st, input_file): New type.
953         (struct fileloc): Use it.
954         (gt_files, num_gt_files, this_file, system_h_file)
955         (input_file_by_name, get_file_srcdir_relative_path): Use input_file.
956         (get_input_file_name): New function.
957         (get_lang_bitmap, set_lang_bitmap): Moved from gengtype.c and
958         use input_file.
959         (lang_dir_names, num_lang_dirs, get_output_file_with_visibility)
960         (get_output_file_name): Ditto.
961
962         * gengtype-lex.l (yybegin): Use input_file.
963
964         * gengtype-parse.c (parse_error): Use input_file.
965
966 2010-11-08  Xinliang David Li  <davidxl@google.com>
967
968         PR tree-optimization/46316
969         * tree-vrp.c (adjust_range_with_scev): Check double_int overflow.
970         * double-int.h (double_int_mul_with_sign): New function.
971         * double-int.c (double_int_mul_with_sign): New function.
972
973 2010-11-08  Paul Koning  <ni1d@arrl.net>
974
975         * config/pdp11/pdp11.md (lshrsi3, lshrhi3): Fix wrong code.
976
977 2010-11-08  Paul Koning  <ni1d@arrl.net>
978
979         * config/pdp11/pdp11.md (negsi2): Fix wrong code.
980
981 2010-11-08  Paul Koning  <ni1d@arrl.net>
982
983         * config/pdp11/pdp11.c (pdp11_assemble_integer): Mask byte values
984         to 8 bits.
985
986 2010-11-08  Michael Meissner  <meissner@linux.vnet.ibm.com>
987
988         PR target/46378
989         * config/rs6000/rs6000.c (rs6000_option_override_internal): Don't
990         turn on ISA 2.04 rounding instructions for power5.
991
992         * config/rs6000/rs6000.md (friz): Friz is an ISA 2.04 instruciton,
993         not ISA 2.02.
994
995         PR target/45585
996         * config/rs6000/darwin.md (movdi_low): Allow DImode values to be
997         in FPR registers.
998         (movdi_low_st): Ditto.
999
1000 2010-11-08  Joern Rennecke  <amylaar@spamcop.net>
1001             Richard Henderson  <rth@redhat.com>
1002
1003         PR target/44758
1004         * config/frv/frv.md (attribute cpu): Cast value to enum attr_cpu.
1005         (attribute acc_group): Cast value to enum attr_acc_group.
1006         (*movdi_nodouble+6): Use gen_int_mode.
1007         * config/frv/frv-protos.h (frv_trampoline_size): Declare no matter
1008         if RTX_CODE is defined or not.
1009         * config/frv/frv.c (enum frv_io_type): New enum, broken out of
1010         struct frv_io.
1011         (frv_handle_option): Mark parameter value with ATTRIBUTE_UNUSED.
1012         (frv_frame_access, frv_expand_prologue): Remove unused variables.
1013         (frv_expand_block_clear): Likewise.
1014         (frv_trampoline_init): Use LCT_NORMAL.
1015         (struct frv_packet_group): New struct, broken out of type of
1016         frv_packet.
1017         (frv_start_packet, frv_reorder_packet): Initialize group to GROUP_I,
1018         use cast in loop counter increment.
1019         (frv_extract_membar): Cast HOST_WIDE_INT to enum frv_io_type before
1020         assigning to io->type.
1021         (bdesc_set): Use rtx_code UNKNOWN in initializer.
1022         (bdesc_1arg, bdesc_2arg, bdesc_int_void2arg): Likewise.
1023         (bdesc_prefetches, bdesc_cut, bdesc_2argimm, bdesc_void2arg): Likewise.
1024         (bdesc_void3arg, bdesc_voidacc, bdesc_loads, bdesc_stores): Likewise.
1025         (frv_read_argument): Use expand_normal.
1026
1027         PR target/44757
1028         * config/lm32/lm32.h (LEGITIMATE_CONSTANT_P): Call
1029         lm32_legitimate_constant_p.
1030         * config/lm32/lm32.md (ashlsi3): Remove unused variable.
1031         * config/lm32/lm32.c (gen_int_relational): Make new block for
1032         LE / LT / LEU / LTU case.  Declare variables at start of block.
1033         (lm32_block_move_inline): Use XALLOCAVEC.
1034
1035 2010-11-08  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
1036
1037         * config/i386/i386.c (ix86_function_arg_boundary): Fix warning message.
1038
1039 2010-11-08  Basile Starynkevitch  <basile@starynkevitch.net>
1040
1041         * gengtype (get_output_file_for_structure): Ensure type is union
1042         or struct.
1043         (write_splay_tree_allocator_def): Use
1044         get_output_file_with_visibility.
1045
1046 2010-11-08  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
1047
1048         * config/s390/s390.c (s390_handle_arch_option): Set type and flags
1049         to defined values in case of an error.
1050         (s390_option_override): Skip further processing if the -march
1051         parameter wasn't recognized.
1052
1053 2010-11-08  Joern Rennecke  <amylaar@spamcop.net>
1054
1055         * caller-save.c (reg_save_code): After HARD_REGNO_MODE_OK check fails,
1056         assert that REG is a hard register number before using it as an index.
1057
1058         PR bootstrap/46358
1059         * config/i386/i386.c (ix86_expand_split_stack_prologue):
1060         Avoid warnings when HOST_WIDE_INT is 32 bit.
1061
1062 2010-11-08  Eric Botcazou  <ebotcazou@adacore.com>
1063
1064         PR target/46208
1065         * config/sparc/sparc.c (TARGET_PROMOTE_PROTOTYPES): Delete.
1066         (sparc_promote_prototypes): Likewise.
1067         (sparc_promote_function_mode): Promote in 32-bit mode as well.
1068         (sparc_return_in_memory): Remove superfluous parentheses.
1069         (sparc_struct_value_rtx): Fix long lines.
1070         (sparc_function_value_1): Promote in 32-bit mode as well.
1071
1072 2010-11-08  Andrey Belevantsev  <abel@ispras.ru>
1073
1074         PR rtl-optimization/45352
1075         * sel-sched.c (find_best_expr): Do not set pneed_stall when
1076         the variable_issue hook is not implemented.
1077         (fill_insns): Remove dead variable stall_iterations.
1078         (init_seqno_1): Force EBB start for resetting sched cycles on any
1079         successor blocks of the rescheduled region.
1080         (sel_sched_region_1): Use bitmap_bit_p instead of bitmap_clear_bit.
1081         (reset_sched_cycles_in_current_ebb): Add debug printing.
1082         New variable issued_insns.  Advance state when we have issued
1083         issue_rate insns.
1084
1085 2010-11-08  Basile Starynkevitch  <basile@starynkevitch.net>
1086
1087         * gengtype (main): Get here's position using POS_HERE macro for
1088         do*typedef calls.
1089
1090 2010-11-07  Ian Lance Taylor  <iant@google.com>
1091
1092         PR target/46089
1093         * config/i386/i386.c (split_stack_fn_large): New static variable.
1094         (ix86_expand_split_stack_prologue): Handle large model.
1095
1096 2010-11-07  Andreas Schwab  <schwab@linux-m68k.org>
1097
1098         * config/m68k/m68k.c (m68k_delegitimize_address): Update to handle
1099         all possible addressing modes.
1100
1101 2010-11-07  Uros Bizjak  <ubizjak@gmail.com>
1102
1103         PR tree-optimization/46346
1104         * tree-ssa-forwprop.c (rhs_to_tree): Handle GIMPLE_TERNARY_RHS.
1105
1106 2010-11-07  Richard Sandiford  <rdsandiford@googlemail.com>
1107
1108         * config/mips/mips.c: Revert previous patch.
1109         * config/mips/mips.md: Likewise.
1110
1111 2010-11-07  Richard Sandiford  <rdsandiford@googlemail.com>
1112
1113         * config/mips/mips.c (mips_rtx_costs): Handle FMA.
1114         * config/mips/mips.md (*madd4<mode>, *madd3<mode>, *msub4<mode>)
1115         (*msub3<mode>, *nmadd4<mode>_fastmath, *nmadd3<mode>_fastmath)
1116         (*nmsub4<mode>_fastmath, *nmsub3<mode>_fastmath): Delete.
1117         (*nmadd4<mode>, *nmadd3<mode>. *nmsub4<mode>, *nmsub3<mode>): Redefine
1118         to use FMA.
1119         (fma<mode>4, *fma<mode>4_madd3, *fma<mode>4_madd4): New patterns.
1120         (fms<mode>4, *fms<mode>4_msub3, *fms<mode>4_msub4): Likewise.
1121         (fnms<mode>4, *fnms<mode>4_nmadd3, *fnms<mode>4_nmadd4): Likewise.
1122         (fnma<mode>4, *fnma<mode>4_nmsub3, *fnma<mode>4_nmsub4): Likewise.
1123
1124 2010-11-06  Simon Martin  <simartin@users.sourceforge.net>
1125
1126         PR c/43384
1127         * c-decl.c (lookup_label): Labels can only be referenced in a
1128         function's scope.
1129         (store_parm_decls_oldstyle): Skip erroneous parameters.
1130
1131 2010-11-06  Anatoly Sokolov  <aesok@post.ru>
1132
1133         * config/fr30/fr30.h (FUNCTION_VALUE_REGNO_P, FUNCTION_VALUE,
1134         LIBCALL_VALUE): Remove macros.
1135         * config/fr30/fr30.c (TARGET_FUNCTION_VALUE, TARGET_LIBCALL_VALUE,
1136         TARGET_FUNCTION_VALUE_REGNO_P): Define.
1137         (fr30_function_value_regno_p, fr30_function_value,
1138         fr30_libcall_value): New functions.
1139
1140 2010-11-06  Joern Rennecke  <amylaar@spamcop.net>
1141
1142         PR middle-end/46314
1143         * target.def (generate_internal_label): New asm_out hook.
1144         * output.h (default_generate_internal_label): Declare.
1145         * varasm.c (default_generate_internal_label): Define.
1146
1147 2010-11-06  Iain Sandoe  <iains@gcc.gnu.org>
1148
1149         PR target/44981
1150         * doc/extend.tex (format): Document NSString extension.
1151         (format_arg): Likewise.
1152         (Darwin Format Checks): New section.
1153         * doc/tm.texi: Document string object hooks (generated).
1154         * doc/tm.texi.in (TARGET_OBJC_CONSTRUCT_STRING_OBJECT) Rename.
1155         (TARGET_STRING_OBJECT_REF_TYPE_P): New.
1156         (TARGET_CHECK_STRING_OBJECT_FORMAT_ARG): New.
1157         * target.def (objc_construct_string_object): Rename, amend
1158         documentation.
1159         (string_object_ref_type_p): New hook.
1160         (check_string_object_format_arg): New hook.
1161         * c-parser.c (c_parser_attributes): Allow objective-c class names as
1162         attribute identifiers.
1163         * config/darwin-c.c (darwin_cfstring_ref_p): New.
1164         (darwin_check_cfstring_format_arg): New.
1165         (darwin_additional_format_types): New.
1166         * config/darwin-protos.h (darwin_cfstring_ref_p) New.
1167         (darwin_check_cfstring_format_arg): New.
1168         * config/darwin.h (TARGET_OBJC_CONSTRUCT_STRING_OBJECT) Renamed.
1169         (TARGET_STRING_OBJECT_REF_TYPE_P): New.
1170         (TARGET_N_FORMAT_TYPES): New.
1171         (TARGET_CHECK_STRING_OBJECT_FORMAT_ARG): New.
1172
1173 2010-11-06  Eric Botcazou  <ebotcazou@adacore.com>
1174             Pascal Obry  <obry@adacore.com>
1175
1176         * config/i386/cygming.h (DWARF_FRAME_REGISTERS): Redefine.  Use 33
1177         in 64-bit mode and 17 otherwise.
1178
1179 2010-11-06  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
1180
1181         PR debug/45939
1182         * var-tracking.c (emit_note_insn_var_location): Make sure that
1183         call related var location notes come before the normal ones.
1184
1185 2010-11-05  H.J. Lu  <hongjiu.lu@intel.com>
1186
1187         PR target/46326
1188         * config/i386/i386.c (ix86_delegitimize_address): Fix a typo
1189         in the last change.
1190
1191 2010-11-05  Ian Lance Taylor  <iant@google.com>
1192
1193         * explow.c (allocate_dynamic_stack_space): Check MALLOC_ABI_ALIGNMENT.
1194
1195 2010-11-05  Jakub Jelinek  <jakub@redhat.com>
1196
1197         PR c/44772
1198         * c-decl.c (warn_cxx_compat_finish_struct): Don't call
1199         pointer_set_contains if DECL_NAME is NULL.
1200
1201 2010-11-05  Ian Lance Taylor  <iant@google.com>
1202
1203         PR target/46084
1204         * explow.c (allocate_dynamic_stack_space): If flag_split_stack,
1205         request enough additional space for alignment, and force alignment.
1206
1207 2010-11-05  Kai Tietz  <kai.tietz@onevision.com>
1208
1209         * config/i386/i386.c (legitimate_pic_address_disp_p):
1210         Handle UNSPEC_PCREL.
1211         (ix86_legitimate_address_p): Likewise.
1212         (legitimize_pic_address): Likewise.
1213         (output_pic_addr_const): Likewise.
1214         (ix86_delegitimize_address): Likewise.
1215         (ix86_find_base_term): Likewise.
1216         (memory_address_length): Likewise.
1217         (x86_output_mi_thunk): Handle special case x64
1218         for non local binding.
1219         * config/i386/i386.md (UNSPEC_PCREL): New.
1220         * config/i386/winnt.c (i386_pe_binds_local_p):
1221         Allow weak symbol for x64 windows with non-local binding.
1222
1223 2010-11-05  Jakub Jelinek  <jakub@redhat.com>
1224
1225         PR target/45670
1226         * expr.c (expand_expr_real_1) <case MEM_REF>: Use EXPAND_SUM
1227         instead of EXPAND_NORMAL for base expansion.
1228
1229 2010-11-05  Uros Bizjak  <ubizjak@gmail.com>
1230
1231         * config.gcc: Support --with-fpmath=avx for x86.
1232         * config/i386/avxmath.h: New.
1233         * doc/install.texi (--with-fpmath=): Document --with-fpmath=avx.
1234
1235 2010-11-05  Ian Lance Taylor  <iant@google.com>
1236
1237         * tree.h (struct tree_type): Don't use descbits in GTY annotation.
1238         * gengtype.c (walk_type): Don't recognize descbits option.
1239
1240 2010-11-05  Joseph Myers  <joseph@codesourcery.com>
1241
1242         * defaults.h (DEFAULT_WORD_SWITCH_TAKES_ARG,
1243         WORD_SWITCH_TAKES_ARG): Remove.
1244         * doc/options.texi (Args): Document.
1245         * doc/tm.texi.in (WORD_SWITCH_TAKES_ARG): Remove.
1246         * doc/tm.texi: Regenerate.
1247         * opt-functions.awk (switch_flags): Handle Args.
1248         * opts-common.c: Update comment on tm.h include.
1249         (decode_cmdline_option): Handle options with multiple arguments.
1250         Don't check WORD_SWITCH_TAKES_ARG for unknown options.
1251         * opts.h (CL_SEPARATE_NARGS_SHIFT, CL_SEPARATE_NARGS_MASK): Define.
1252         (CL_PARAMS, CL_WARNING, CL_OPTIMIZATION, CL_DRIVER, CL_TARGET,
1253         CL_COMMON): Update values.
1254         * system.h (WORD_SWITCH_TAKES_ARG): Poison.
1255         * config/darwin.h (WORD_SWITCH_TAKES_ARG): Remove.
1256         * config/darwin.opt (Zsegaddr, sectalign, sectcreate,
1257         sectobjectsymbols, sectorder, segcreate, segprot): New.
1258
1259 2010-11-05  H.J. Lu  <hongjiu.lu@intel.com>
1260             Uros Bizjak  <ubizjak@gmail.com>
1261
1262         * config/i386/i386.c (ix86_expand_move): Set use_avx256_p if
1263         256bit AVX register is used.
1264         (ix86_expand_vector_move_misalign): Likewise.
1265         (ix86_expand_vector_move): Replace use_avx256_p with
1266         VALID_AVX256_REG_MODE.
1267
1268 2010-11-05  Joern Rennecke  <amylaar@spamcop.net>
1269
1270          PR target/44750
1271         * config/pdp11/t-pdp11 (dwarf2out.o, java/constants.o): Undo last
1272         change.  Set $@-warn.o to -Wno-error.
1273
1274         PR bootstrap/44756
1275         * expr.c (emit_push_insn): Cast value of PUSH_ROUNDING before
1276         comparing it to a signed value.
1277
1278         PR middle-end/44766
1279         * expr.c (can_store_by_pieces): Add ATTRIBUTE_UNUSED to cst.
1280         PR bootstrap/44770
1281         * haifa-sched.c (initiate_bb_reg_pressure_info): Add ATTRIBUTE_UNUSED
1282         to i.
1283
1284         PR target/44754
1285         * config/m32c/m32c.c (m32_function_arg): Rename declaration to...
1286         (m32c_function_arg).  Add comma between arguments two and three.
1287         (m32c_promote_prototypes): Remove declaration.
1288         (current_function_special_page_vector): Likewise.
1289         (m32c_regno_reg_class): Change return type to enum reg_class.
1290         (m32c_pushm_popm): Use add_reg_note.
1291         (m32c_push_rounding): Change return type to unsigned int.
1292         (m32c_legitimize_reload_address): Cast argument 11 to push_reload to
1293         enum reload_type.
1294         (m32c_insert_attributes): Constify variable name.
1295         (m32c_output_aligned_common): Add ATTRIBUTE_UNUSED to argument decl.
1296         (m32c_prepare_shift): Remove variable lref.
1297         (m32c_expand_movcc): Remove variable cmp.
1298         (m32c_expand_insv): Fix check of op0 rtx_code to use GET_CODE.
1299         (m32c_compare_redundant): Remove variable op2.
1300         * config/m32c/m32c-pragma.c ("c-family/c-common.h"): Include.
1301         (m32c_pragma_memregs): Assign the number to target_memregs.
1302         (m32c_pragma_address): Remove variable var_str.
1303         * config/m32c/m32c.h (REG_CLASS_FROM_CONSTRAINT): Case value to
1304         enum reg_class.
1305         (LIMIT_RELOAD_CLASS, SECONDARY_RELOAD_CLASS): Likewise.
1306         * config/m32c/bitops.md (andsi3): Add default case to switch.
1307         (iorsi3, xorsi3): Likewise.
1308         * config/m32c/addsub.md (addsi3_1, subsi3_1): Likewise.
1309         * config/m32c/jump.md (call, call_value): Likewise.
1310         * config/m32c/m32c-protos.h (m32c_push_rounding): Update prototype.
1311         (m32c_regno_reg_class): Likewise.
1312         (current_function_special_page_vector): Declare.
1313
1314 2010-11-05  Jakub Jelinek  <jakub@redhat.com>
1315
1316         * cfgexpand.c (expand_debug_expr): Handle MEM_REF with non-zero offset.
1317
1318         PR tree-optimization/46099
1319         * tree-parloops.c (take_address_of): Add GSI argument.  Return NULL
1320         if it is NULL and uid wasn't found in the hash table.  Just fold the
1321         result if it is NULL otherwise.  Insert other potentially needed
1322         stmts right before current stmt instead of on the entry edge.
1323         (struct elv_data): Add gsi and reset fields.
1324         (eliminate_local_variables_1): Adjust caller.  If take_address_of
1325         failed for debug stmt, set dta->reset and return.
1326         (eliminate_local_variables_stmt): Change STMT argument for GSI,
1327         pass GSI through to the callback, handle resetting of debug stmts.
1328         (eliminate_local_variables): Adjust caller.  Process debug stmts
1329         in second phase.
1330
1331         PR middle-end/43690
1332         * gimplify.c (gimplify_asm_expr): If a "m" input is a
1333         {pre,post}{in,de}crement, fail.
1334
1335         PR debug/46307
1336         * tree-ssa-operands.c (get_expr_operands): Handle FMA_EXPR.
1337         * tree-pretty-print.c (dump_generic_node): Likewise.
1338         (op_code_prio): Likewise.
1339         * cfgexpand.c (expand_debug_expr): Likewise.
1340
1341 2010-11-04  Paul Koning  <ni1d@arrl.net>
1342
1343         * doc/md.texi (Machine Constraints): Correct formatting in PDP-11
1344         constraints.
1345
1346 2010-11-04  Chao-ying Fu  <fu@mips.com>
1347
1348         * configure.ac: Test assembler support for DSP Rev1 mult.
1349         * configure: Regenerate.
1350         * config.in: Regenerate.
1351         * config/mips/mips.h (ISA_HAS_DSP_MULT): New define.
1352         * config/mips/mips.c (CODE_FOR_mips_mult): New define.
1353         (CODE_FOR_mips_multu): New define.
1354         (mips_builtins): Move madd, maddu, msub, msubu, mult, multu from
1355         dspr2_32 to dsp_32.
1356         (mips_mulsidi3_gen_fn): Test (TARGET_FIX_R4000 && !ISA_HAS_DSP).
1357         Delete returns when ISA_HAS_DSPR2 because the old patterns are deleted.
1358         * config/mips/mips-dsp.md (mips_madd<u>, mips_msub<u>):
1359         New define_expand patterns.
1360         * config/mips/constraints.md (ka): Update the constraint to test
1361         ISA_HAS_DSP_MULT instead of ISA_HAS_DSPR2.
1362         * config/mips/mips-dspr2.md (mips_madd<u>, mips_msub<u>, mips_mult,
1363         mips_multu): Delete.
1364         * config/mips/mips.md (<u>mulsidi3_32bit): Add comments.
1365         Change target constraint to "ka".
1366         Use (!TARGET_FIX_R4000 || ISA_HAS_DSP), instead of
1367         (!TARGET_FIX_R4000 && !ISA_HAS_DSPR2).
1368         Emit the accumulator destination when ISA_HAS_DSP_MULT.
1369         (<u>msubsidi4): Add comments.  Test ISA_HAS_DSP.
1370         Emit the accumulator destination when ISA_HAS_DSP_MULT.
1371         (<u>maddsidi4): Likewise.
1372         * doc/extend.texi (MIPS DSP Built-in Functions): Move madd, maddu,
1373         msub, msubu, mult, multu built-in functions from DSP r2 to DSP r1.
1374
1375 2010-11-04  Paul Koning  <ni1d@arrl.net>
1376
1377         * doc/md.texi (Machine Constraints): Add PDP-11 constraints.
1378
1379 2010-11-04  Paul Koning  <ni1d@arrl.net>
1380
1381         * doc/invoke.texi (PDP-11 Options): Delete -msplit, -mno-split.
1382
1383 2010-11-04  Nicola Pero  <nicola.pero@meta-innovation.com>
1384
1385         Fixed using the Objective-C 2.0 dot-syntax with class names.
1386         * c-parser.c (c_parser_next_token_starts_declspecs): In
1387         Objective-C, detect Objective-C 2.0 dot-syntax with a class name.
1388         (c_parser_next_token_starts_declaration): Same.
1389         (c_parser_postfix_expression): Parse the Objective-C 2.0
1390         dot-syntax with a class name.
1391
1392 2010-11-04  Pat Haugen  <pthaugen@us.ibm.com>
1393
1394         * final.c (compute_alignments): Compute/free loop info all the time.
1395         * config/rs6000/rs6000.h (LOOP_ALIGN): Define.
1396         * config/rs6000/rs6000-protos.h (rs6000_loop_align): Declare.
1397         * config/rs6000/t-rs6000 (rs6000.o): Add cfgloop.h.
1398         * config/rs6000/rs6000.c (cfgloop.h): Include.
1399         (can_override_loop_align): New.
1400         (rs6000_option_override_internal): Set it.
1401         (TARGET_ASM_LOOP_ALIGN_MAX_SKIP): Define target hook.
1402         (rs6000_loop_align): New function.
1403         (rs6000_loop_align_max_skip): Likewise.
1404
1405 2010-11-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1406
1407         PR driver/45703
1408         * collect2.c (main): Print --help output to stdout.  Do not
1409         exit right away, so ld --help is appended.  Add empty lines
1410         to separate output suitably.
1411
1412 2010-11-04  Jakub Jelinek  <jakub@redhat.com>
1413
1414         PR tree-optimization/46233
1415         * ipa-pure-const.c (local_pure_const): Do noreturn discovery
1416         after calling analyze_function, not before.
1417
1418         PR target/46234
1419         * config/rs6000/rs6000.c (rs6000_va_start): Use build_simple_mem_ref
1420         instead of build_va_arg_indirect_ref.
1421         * config/spu/spu.c (spu_va_start): Likewise.
1422         * config/s390/s390.c (s390_va_start): Likewise.
1423
1424 2010-11-03  Uros Bizjak  <ubizjak@gmail.com>
1425
1426         PR middle-end/46292
1427         * lower-subreg.c (simplify_subreg_concatn): For VOIDmode elements,
1428         if the innermode is not vector mode, determine the mode of a subreg
1429         by using mode_for_size of inner_size.
1430
1431 2010-11-04  Richard Guenther  <rguenther@suse.de>
1432
1433         PR rtl-optimization/46183
1434         * gcse.c (execute_rtl_cprop): Cleanup the CFG if something changed.
1435         (execute_rtl_pre): Likewise.
1436         (execute_rtl_hoist): Likewise.
1437
1438 2010-11-04  Richard Guenther  <rguenther@suse.de>
1439
1440         PR tree-optimization/46068
1441         * ipa-split.c (consider_split): Remove gcc_unreachable.
1442
1443 2010-11-04  Richard Guenther  <rguenther@suse.de>
1444
1445         * tree-nested.c (build_addr): Use build_fold_addr_expr.
1446
1447 2010-11-04  Richard Guenther  <rguenther@suse.de>
1448
1449         PR tree-optimization/45991
1450         * gimplify.c (force_gimple_operand_1): Use the provded test
1451         function in the initial test.
1452
1453 2010-11-04  Jeff Law  <law@redhat.com>
1454
1455         * ira.c (validate_equiv_mem): Remove code to avoid invalidation
1456         of readonly memory equivalances for const/pure calls.
1457
1458 2010-11-04  Richard Guenther  <rguenther@suse.de>
1459
1460         PR tree-optimization/45733
1461         * tree-vect-stmts.c (reverse_vec_elements): Honor the
1462         permute builtins function return type.
1463
1464 2010-11-04  Joern Rennecke  <amylaar@spamcop.net>
1465
1466         PR middle-end/44765
1467         * emit-rtl.c (gen_rtx_REG): Before using PIC_OFFSET_TABLE_REGNUM
1468         as an index, check it is not INVALID_REGNUM.
1469
1470         PR bootstrap/44756
1471         * ifcvt.c (noce_emit_cmove): Add ATTRIBUTE_UNUSED to target and
1472         unsignedp.
1473         * reload1.c (set_reload_reg): Add ATTRIBUTE_UNUSED to regno.
1474
1475         PR bootstrap/44756
1476         * function.c (thread_prologue_and_epilogue_insns): Add
1477         ATTRIBUTE_UNUSED to seq, epilogue_end and entry_edge.
1478
1479         PR bootstrap/44756
1480         * varasm.c (asm_output_bss): Add ATTRIBUTE_UNUSED to function.
1481
1482         PR target/44750
1483         * config/pdp11/pdp11.c: (pdp11_secondary_reload): Now static.
1484         (pdp11_preferred_reload_class): Rename class to rclass.
1485         (pdp11_preferred_output_reload_class): Likewise.
1486         * config/pdp11/t-pdp11 (dwarf2out.o): Add -Wno-error=type-limits to
1487         ALL_COMPILERFLAGS .
1488         (java/constants.o): Add -Wno-error to ALL_COMPILERFLAGS.
1489
1490         PR bootstrap/44756
1491         * genopinit.c (main) [FIXUNS_TRUNC_LIKE_FIX_TRUNC]: Cast
1492         iteration variables to enum machine_mode.
1493
1494         PR target/44751
1495         * config/h8300/h8300.c: Include df.h.
1496         (push, pop): Use add_reg_note.
1497         (compute_plussi_cc, compute_logical_op_cc): Return enum attr_c.
1498         (compute_a_shift_cc): Likewise.
1499         (expand_a_shift): Argument code has type enum rtx_code.
1500         (struct shift_insn): Member cc_valid has type enum attr_cc.
1501         (struct shift_info) <cc_inline, cc_special>: Likewise.
1502         enum attr_cc.
1503         * config/h8300/h8300-protos.h (compute_plussi_cc): Update prototype.
1504         (compute_a_shift_cc, compute_logical_op_cc, expand_a_shift): Likewise.
1505
1506 2010-11-04  Ira Rosen  <irar@il.ibm.com>
1507
1508         PR tree-optimization/46213
1509         * tree-vect-loop.c (vect_is_simple_reduction_1): Handle
1510         MINUS_EXPR only if the first operand is reduction operand.
1511
1512 2010-11-04  Richard Guenther  <rguenther@suse.de>
1513             Richard Henderson  <rth@redhat.com>
1514
1515         * tree.def (FMA_EXPR): New tree code.
1516         * expr.c (expand_expr_real_2): Add FMA_EXPR expansion code.
1517         * gimple.c (gimple_rhs_class_table): FMA_EXPR is a GIMPLE_TERNARY_RHS.
1518         * tree-cfg.c (verify_gimple_assign_ternary): Verify FMA_EXPR types.
1519         * tree-inline.c (estimate_operator_cost): Handle FMA_EXPR.
1520         * gimple-pretty-print.c (dump_ternary_rhs): Likewise.
1521         * tree-ssa-math-opts.c (convert_mult_to_fma): New function.
1522         (execute_optimize_widening_mul): Call it.  Reorganize to allow
1523         dead stmt removal.  Move TODO flags ...
1524         (pass_optimize_widening_mul): ... here.
1525         * flag-types.h (enum fp_contract_mode): New enum.
1526         * common.opt (flag_fp_contract_mode): New variable.
1527         (-ffp-contract): New option.
1528         * opts.c (common_handle_option): Handle it.
1529         * doc/invoke.texi (-ffp-contract): Document.
1530         * tree.h (fold_fma): Declare.
1531         * builtins.c (fold_fma): New function.
1532         (fold_builtin_fma): Likewise.
1533         (fold_builtin_3): Call it for fma.
1534         * fold-const.c (fold_ternary_loc): Fold FMA_EXPR.
1535         * optabs.c (optab_for_tree_code): Handle FMA_EXPR.
1536         * config/i386/sse.md (fms<mode>4, fnma<mode>, fnms<mode>4):
1537         New expanders.
1538         * doc/md.texi (fms<mode>4, fnma<mode>, fnms<mode>4): Document new
1539         named patterns.
1540         * genopinit.c (optabs): Initialize fms_optab, fnma_optab and fnms_optab.
1541         * optabs.h (enum optab_index): Add OTI_fms, OTI_fnma and OTI_fnms.
1542         (fms_optab, fnma_optab, fnms_optab): New defines.
1543         * gimplify.c (gimplify_expr): Handle binary truth expressions
1544         explicitly.  Handle FMA_EXPR.
1545         * tree-vect-stmts.c (vectorizable_operation): Handle ternary
1546         operations.
1547
1548 2010-11-04  Artjoms Sinkarovs  <artyom.shinakroff@gmail.com>
1549             Richard Guenther  <rguenther@suse.de>
1550
1551         * passes.c (init_optimization_passes): Move veclower after SSA.
1552         * tree-vect-generic.c (uniform_vector_p): New function.
1553         (expand_vector_operations_1): Handle conversion.
1554         (pass_lower_vector): Update SSA form.
1555
1556 2010-11-04  Iain Sandoe  <iains@gcc.gnu.org>
1557
1558         * configure.ac: Filter -mdynamic-no-pic from CFLAGS when testing for
1559         plugin capabilities.
1560         * configure: Regenerate.
1561
1562 2010-11-03  Xinliang David Li  <davidxl@google.com>
1563
1564         PR target/46200
1565         * tree-ssa-loop-ivopts.c (get_computation_cost_at):
1566         Adjust cbase if the use stmt is after iv update.
1567
1568 2010-11-03  Kaz Kojima  <kkojima@gcc.gnu.org>
1569
1570         * config.gcc (sh64*) <tm_file>: Add newlib-stdint.h for newlib targets.
1571
1572 2010-11-03  Kaz Kojima  <kkojima@gcc.gnu.org>
1573
1574         * config/sh/sh.c (sh_expand_prologue): Remove unnecessary
1575         comment.  Pass true to the last argument of output_stack_adjust.
1576
1577 2010-11-03  H.J. Lu  <hongjiu.lu@intel.com>
1578
1579         PR target/46295
1580         * config/i386/i386.c (ix86_expand_vector_move): Set use_avx256_p
1581         if 256bit AVX register is used.
1582
1583 2010-11-03  Michael Meissner  <meissner@linux.vnet.ibm.com>
1584
1585         * config/rs6000/rs6000.c (rs6000_emit_minmax): Add support to use
1586         xsmindp/xsmaxdp on VSX for single precision min/max.
1587         * config/rs6000/vsx.md (vsx_smaxsf3): Ditto.
1588         (vsx_sminsf3): Ditto.
1589
1590 2010-11-03  Eric Botcazou  <ebotcazou@adacore.com>
1591
1592         * combine.c (try_combine): Fix formatting issues, improve comments and
1593         fix a pasto.
1594
1595 2010-11-03  Eric Botcazou  <ebotcazou@adacore.com>
1596
1597         * tree-tailcall.c (find_tail_calls): Convert the operands to the type
1598         of the result before building binary expressions.
1599
1600 2010-11-03  H.J. Lu  <hongjiu.lu@intel.com>
1601
1602         PR rtl-optimization/45865
1603         * Makefile.in (df-problems.o): Revert revision 164552.
1604         * basic-block.h (enum bb_flags): Likewise.
1605         * cfgcleanup.c (block_was_dirty): Likewise.
1606         (try_forward_edges): Likewise.
1607         (try_crossjump_bb): Likewise.
1608         (try_head_merge_bb): Likewise.
1609         (try_optimize_cfg): Likewise.
1610         (cleanup_cfg): Likewise.
1611         * df-core.c (df_set_bb_dirty): Likewise.
1612         * df-problems.c: Likewise.
1613         (df_simulate_find_uses): Likewise.
1614         (MEMREF_NORMAL, MEMREF_VOLATILE): Likewise.
1615         (find_memory, find_memory_store): Likewise.
1616         (can_move_insns_across): Likewise.
1617         * df.h (can_move_insns_across): Likewise.
1618         * ifcvt.c (find_memory): Likewise.
1619         (dead_or_predicable): Likewise.
1620
1621 2010-11-03  Richard Guenther  <rguenther@suse.de>
1622
1623         PR middle-end/46288
1624         * predict.c (strip_predict_hints): Simply DCE builtin expect if
1625         the result is unused.
1626
1627 2010-11-03  Jakub Jelinek  <jakub@redhat.com>
1628
1629         PR tree-optimization/46009
1630         * tree-ssa-phiopt.c (tree_ssa_phiopt_worker): Call
1631         cond_if_else_store_replacement if bb1 and bb2 have the same
1632         single successor.
1633         (cond_store_replacement): Use gimple_assign_single_p, don't
1634         check if rhs is SSA_NAME or invariant.  Call release_defs for
1635         assign.
1636         (cond_if_else_store_replacement): New function.
1637
1638 2010-11-03  Richard Guenther  <rguenther@suse.de>
1639
1640         * opts.c (finish_options): Properly check for all WHOPR
1641         flags before complaining about -flto-partition.
1642
1643 2010-11-04  Alan Modra  <amodra@gmail.com>
1644
1645         * config/rs6000/rs6000.c (rs6000_pic_labelno): Make static.
1646         (rs6000_emit_load_toc_table): Don't use rs6000_pic_labelno when
1647         TARGET_SECURE_PLT.
1648         * config/rs6000/sysv4.h (rs6000_pic_labelno): Don't declare.
1649         * config/rs6000/rs6000.md (load_toc_v4_PIC_3b): Use "b" constraint
1650         on input, "r" on output.
1651
1652 2010-11-03  Nicola Pero  <nicola.pero@meta-innovation.com>
1653
1654         Implemented -fobjc-std=objc1 flag.
1655         * doc/invoke.texi (Option Summary): Document -fobjc-std=objc1
1656         option.
1657         * doc/standards.texi (Standards): Updated the section on
1658         Objective-C; mention support for Objective-C 2.0 features and the
1659         new -fstd-objc=objc1 flag to disable them.
1660
1661 2010-11-03  Richard Guenther  <rguenther@suse.de>
1662
1663         PR middle-end/46241
1664         * dwarf2out.c (scope_die_for): Properly detect global scope.
1665
1666 2010-11-03  Richard Guenther  <rguenther@suse.de>
1667
1668         PR tree-optimization/46190
1669         * tree-vect-data-refs.c (vect_enhance_data_refs_alignment):
1670         Properly compute peel iterations.
1671
1672 2010-11-03  Richard Guenther  <rguenther@suse.de>
1673
1674         PR tree-optimization/46286
1675         * tree-ssa-structalias.c (get_constraint_for_1): Avoid referencing
1676         re-allocated vector data.
1677
1678 2010-11-03  H.J. Lu  <hongjiu.lu@intel.com>
1679
1680         PR target/46285
1681         * config/i386/i386.c (ix86_expand_call): Conditionally decorate
1682         calls with UNSPEC_CALL_NEEDS_VZEROUPPER unspec before reload
1683         is completed.
1684
1685 2010-11-03  Richard Guenther  <rguenther@suse.de>
1686
1687         PR tree-optimization/46217
1688         * tree-ssa.c (non_rewritable_mem_ref_base): Check if volatile
1689         flag matches.
1690         (execute_update_addresses_taken): Likewise.
1691
1692 2010-11-03  Joern Rennecke  <joern.rennecke@embecosm.com>
1693
1694         PR bootstrap/44335
1695         * targhooks.c (targhook_words_big_endian): New function.
1696         (targhook_float_words_big_endian): Likewise.
1697         * targhooks.h (targhook_words_big_endian): Declare.
1698         (targhook_float_words_big_endian): Likewise.
1699         * target.def (words_big_endian, float_words_big_endian): New hooks.
1700
1701 2010-11-03  Jakub Jelinek  <jakub@redhat.com>
1702
1703         PR tree-optimization/46165
1704         * tree-ssa-pre.c (eliminate): Return TODO_cleanup_cfg if changing
1705         a normal call into noreturn call.
1706
1707 2010-11-03  Richard Guenther  <rguenther@suse.de>
1708
1709         PR middle-end/46251
1710         * builtins.c (expand_builtin_sincos): Properly build MEM_REFs,
1711         not INDIRECT_REFs.
1712
1713 2010-11-03  Jakub Jelinek  <jakub@redhat.com>
1714
1715         PR tree-optimization/46107
1716         * cfgloopmanip.c (loop_version): Set irred_flag back into entry->flags
1717         if cfg_hook_duplicate_loop_to_header_edge failed.
1718
1719 2010-11-03  Ian Lance Taylor  <iant@google.com>
1720
1721         PR lto/46273
1722         * config.gcc: Don't set lto_binary_reader.
1723         * doc/install.texi (Prerequisites): Remove libelf paragraphs.
1724         (Configuration): Mention --disable-lto.  Remove --with-libelf
1725         paragraph.
1726
1727 2010-11-03  Jakub Jelinek  <jakub@redhat.com>
1728
1729         PR debug/46252
1730         * reload1.c (delete_dead_insn): Use prev_active_insn instead of
1731         prev_real_insn.
1732         * gcse.c (insert_insn_end_basic_block): Likewise.
1733
1734         PR rtl-optimization/46034
1735         PR rtl-optimization/46212
1736         PR rtl-optimization/46248
1737         * combine.c (try_combine): If added_sets_2 where i0dest_in_i0src
1738         and i0 feeds i1 and i1 feeds i2 or i0 feeds i2, make a copy of i1src
1739         before i0dest -> i0src substitution and pass 1 instead of 0 as last
1740         argument to subst on i2pat.
1741
1742 2010-11-02  Ian Lance Taylor  <iant@google.com>
1743
1744         * configure.ac: Use AC_SYS_LARGEFILE.
1745         * configure: Rebuild.
1746         * config.in: Rebuild.
1747
1748 2010-11-02  Nathan Froyd  <froydnj@codesourcery.com>
1749
1750         * builtins.c (fold_builtin_signbit): Use build_zero_cst instead of
1751         fold_convert.
1752         * c-typeck.c (build_function_call_vec): Likewise.
1753         * cfgexpand.c (expand_debug_expr): Likewise.
1754         * cgraphunit.c (assemble_thunk): Likewise.
1755         * config/sparc/sparc.c (sparc_fold_builtin): Likewise.
1756         * fold-const.c (fold_unary_loc, fold_mult_zconjz): Likewise.
1757         (fold_binary_loc, fold_ternary_loc): Likewise.
1758         * gimple-fold.c (get_symbol_constant_value): Likewise.
1759         * gimple-low.c (lower_builtin_setjmp): Likewise.
1760         * gimple.c (gimple_cond_get_ops_from_tree): Likewise.
1761         * gimplify.c (gimplify_init_constructor): Likewise.
1762         * lambda.h (build_linear_expr): Likewise.
1763         * omp-low.c (omp_reduction_init): Likewise.
1764         * tree-inline.c (remap_ssa_name): Likewise.
1765         * tree-object-size.c (compute_object_sizes): Likewise.
1766         * tree-sra.c (init_subtree_with_zero): Likewise.
1767         (sra_ipa_modify_assign): Likewise.
1768         * tree-ssa-copy.c (propagate_tree_value_into_stmt): Likewise.
1769         * tree-ssa-reassoc.c (eliminate_duplicate_pair): Likewise.
1770         (eliminate_plus_minus_pair, eliminate_not_pairs): Likewise.
1771         (undistribute_ops_list): Likewise.
1772         * tree-ssa-sccvn.c (vn_reference_lookup_3): Likewise.
1773         * tree-vect-stmts.c (vectorizable_call): Likewise.
1774         * tree.c (build_vector_from_ctor, build_one_cst): Likewise.
1775         (build_zero_cst): Handle more cases directly.  Update comment.
1776
1777 2010-11-02  H.J. Lu  <hongjiu.lu@intel.com>
1778
1779         * config/i386/i386-protos.h (ix86_split_call_pop_vzeroupper): Removed.
1780         * config/i386/i386.c (ix86_split_call_pop_vzeroupper): Likewise.
1781
1782         * config/i386/i386.md (*call_pop_0_vzeroupper): Use parallel
1783         and call ix86_split_call_vzeroupper instead of
1784         ix86_split_call_pop_vzeroupper.
1785         (*call_pop_1_vzeroupper): Likewise.
1786         (*sibcall_pop_1_vzeroupper): Likewise.
1787         (*call_value_pop_0_vzeroupper): Likewise.
1788         (*call_value_pop_1_vzeroupper): Likewise.
1789         (*sibcall_value_pop_1_vzeroupper): Likewise.
1790
1791 2010-11-02  H.J. Lu  <hongjiu.lu@intel.com>
1792
1793         * config/i386/i386.md (*sibcall_1_rex64_vzeroupper): Fix a typo.
1794
1795 2010-11-02  Eric Botcazou  <ebotcazou@adacore.com>
1796
1797         * basic-block.h (insert_insn_end_bb_new): Delete.
1798         * cfgrtl.c (insert_insn_end_bb_new): Likewise.
1799
1800 2010-11-02  Uros Bizjak  <ubizjak@gmail.com>
1801             H.J. Lu  <hongjiu.lu@intel.com>
1802
1803         * config/i386/i386-protos.h (ix86_split_call_vzeroupper): New.
1804         (ix86_split_call_pop_vzeroupper): Likewise.
1805
1806         * config/i386/i386.c (move_or_delete_vzeroupper_2): Rewrite the loop.
1807         (ix86_expand_call): Conditionally decorate calls with
1808         UNSPEC_CALL_NEEDS_VZEROUPPER unspec.
1809         (ix86_split_call_vzeroupper): New.
1810         (ix86_split_call_pop_vzeroupper): Likewise.
1811
1812         * config/i386/i386.md (UNSPEC_CALL_NEEDS_VZEROUPPER): New.
1813         (*call_pop_0_vzeroupper): New insn_and_split pattern.
1814         (*call_pop_1_vzeroupper): Likewise.
1815         (*sibcall_pop_1_vzeroupper): Likewise.
1816         (*call_0_vzeroupper): Likewise.
1817         (*call_1_vzeroupper): Likewise.
1818         (*sibcall_1_vzeroupper): Likewise.
1819         (*call_1_rex64_vzeroupper): Likewise.
1820         (*call_1_rex64_ms_sysv_vzeroupper): Likewise.
1821         (*call_1_rex64_large_vzeroupper): Likewise.
1822         (*sibcall_1_rex64_vzeroupper): Likewise.
1823         (*call_value_pop_0_vzeroupper): Likewise.
1824         (*call_value_pop_1_vzeroupper): Likewise.
1825         (*sibcall_value_pop_1_vzeroupper): Likewise.
1826         (*call_value_0_vzeroupper): Likewise.
1827         (*call_value_0_rex64_vzeroupper): Likewise.
1828         (*call_value_0_rex64_ms_sysv_vzeroupper): Likewise.
1829         (*call_value_1_vzeroupper): Likewise.
1830         (*sibcall_value_1_vzeroupper): Likewise.
1831         (*call_value_1_rex64_vzeroupper): Likewise.
1832         (*call_value_1_rex64_ms_sysv_vzeroupper): Likewise.
1833         (*call_value_1_rex64_large_vzeroupper): Likewise.
1834         (*sibcall_value_1_rex64_vzeroupper): Likewise.
1835
1836 2010-11-02  Ian Lance Taylor  <iant@google.com>
1837
1838         PR lto/46273
1839         * config.gcc: Revert last patch: set lto_binary_reader.
1840
1841 2010-11-02  Richard Guenther  <rguenther@suse.de>
1842
1843         PR tree-optimization/46149
1844         * tree-ssa-structalias.c (get_constraint_for_1): Properly handle
1845         non-indirect MEM_REF variants.
1846
1847 2010-11-02  Richard Guenther  <rguenther@suse.de>
1848
1849         PR tree-optimization/46216
1850         * tree-ssa-forwprop.c (tree_ssa_forward_propagate_single_use_vars):
1851         Check if we can propagate from a POINTER_PLUS_EXPR before doing so.
1852
1853 2010-11-02  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
1854
1855         * configure.ac (*-*-irix6*): Disable set_have_as_tls.
1856         (*-*-osf*): Likewise.
1857         * configure: Regenerate.
1858
1859 2010-11-02  H.J. Lu  <hongjiu.lu@intel.com>
1860
1861         * config/i386/driver-i386.c (host_detect_local_cpu): Updated
1862         for Intel Core 2 and Core i7.
1863
1864 2010-11-02  Maxim Kuvyrkov  <maxim@codesourcery.com>
1865
1866         Model decoder of Core 2/i7 for multipass scheduling.
1867
1868         * config/i386/i386-protos.h (struct ix86_first_cycle_multipass_data_):
1869         New type to hold target-specific data for multipass scheduling.
1870         (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DATA_T): Define.
1871         * config/i386/i386.c (ia32_multipass_dfa_lookahead): Update for
1872         Core 2/i7.
1873         (core2i7_secondary_decoder_max_insn_size,)
1874         (core2i7_secondary_ifetch_block_size, core2i7_ifetch_block_max_insns):
1875         New static variables.
1876         ([const_]ix86_first_cycle_multipass_data_t): New typedefs.
1877         ([_]ix86_first_cycle_multipass_data): New static variable.
1878         (core2i7_first_cycle_multipass_init, core2i7_dfa_poast_advance_cycle):
1879         Implement targetm.sched hooks.
1880         (core2i7_first_cycle_multipass_filter_ready_try): New static subroutine
1881         of ...
1882         (core2i7_first_cycle_multipass_{begin, issue, backtrack, end, fini}):
1883         Implement new targetm.sched hooks.
1884         (ix86_sched_init_global, TARGET_SCHED_INIT_GLOBAL): Define
1885         targetm.sched hook to install multipass scheduling hooks on demand.
1886
1887         * doc/tm.texi.in: Document new targetm.sched hooks.
1888         * doc/tm.texi: Regenerate.
1889
1890         * haifa-sched.c (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DATA_T): Define.
1891         (first_cycle_multipass_data_t): New typedef.
1892         (struct choice_entry: target_data): New field.
1893         (max_issue): Add first_cycle_insn_p parameter.  Call new target hooks
1894         to allow target model restrictions not represented in DFA.
1895         (choose_ready, schedule_block): Update.
1896         (sched_extend_ready_list, sched_finish_ready_list): Call new target
1897         hooks to initialize target-specific data for multipass scheduling.
1898         * sched-int.h (max_issue): Update declaration.
1899         * sel-sched.c (choose_best_insn): Update.
1900         * target.def (first_cycle_multipass_{begin, issue, backtrack},)
1901         (first_cycle_multipass_{init, fini}): Define and document new
1902         targetm.sched hooks.
1903
1904 2010-11-02  Richard Guenther  <rguenther@suse.de>
1905
1906         PR tree-optimization/46184
1907         * tree-vect-loop.c (vectorizable_reduction): Try to obtain the
1908         input vector type from the reduction operand as well.
1909
1910 2010-11-02  Richard Guenther  <rguenther@suse.de>
1911
1912         PR tree-optimization/46177
1913         * tree-loop-distribution.c (prop_phis): Use
1914         mark_virtual_phi_result_for_renaming.
1915
1916 2010-11-02  Martin Jambor  <mjambor@suse.cz>
1917
1918         PR middle-end/46120
1919         * tree.c (get_binfo_at_offset): Bail out on artificial
1920         fields.  Identify primary bases according to their offsets.
1921
1922 2010-11-02  Martin Jambor  <mjambor@suse.cz>
1923
1924         PR tree-optimization/45875
1925         * gimple-fold.c (get_first_base_binfo_with_virtuals): Removed.
1926         (gimple_get_relevant_ref_binfo): Detect primary bases according to
1927         their field offset.
1928
1929 2010-11-02  Ian Lance Taylor  <iant@google.com>
1930
1931         * doc/install.texi (Configuration): Note in two places that Java
1932         is not enabled by default.
1933
1934 2010-11-02  Ian Lance Taylor  <iant@google.com>
1935
1936         * doc/install.texi (Prerequisites): Remove libelf paragraphs.
1937         (Configuration): Mention --disable-lto.  Remove --with-libelf
1938         paragraph.
1939
1940 2010-11-02  Ian Lance Taylor  <iant@google.com>
1941
1942         * configure.ac: Remove elf_getshdrstrndx test.  Don't substitute
1943         LTO_BINARY_READER or LTO_USE_LIBELF.  Remove LIBELFLIBS and
1944         LIBELFINC.  Remove HAVE_libelf.
1945         * config.gcc: Don't set lto_binary_reader.
1946         * Makefile.in (LIBELFLIBS, LIBELFINC): Remove variables.
1947         (LTO_BINARY_READER, LTO_USE_LIBELF): Remove variables.
1948         (LIBS): Remove $(LIBELFLIBS).
1949         (INCLUDES): Remove $(LIBELFINC).
1950         * configure: Rebuild.
1951         * config.in: Rebuild.
1952
1953 2010-11-02  Nathan Froyd  <froydnj@codesourcery.com>
1954
1955         * config/microblaze/microblaze-protos.h (function_arg): Delete.
1956         (function_arg_advance): Delete.
1957         * config/microblaze/microblaze.h (FUNCTION_ARG_ADVANCE): Delete.
1958         (FUNCTION_ARG): Delete.
1959         * config/microblaze/microblaze.c (function_arg_advance): Rename to...
1960         (microblaze_function_arg_advance): ...this.  Make static.  Take a
1961         const_tree and a bool.
1962         (function-arg): Rename to...
1963         (microblaze_function_arg): ...this.  Make static.  Take a const_tree
1964         and a bool.
1965         (microblaze_expand_prologue): Call targetm.calls.function_arg and
1966         targetm.calls.function_arg_advance.
1967         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
1968
1969 2010-11-02  Iain Sandoe  <iains@gcc.gnu.org>
1970
1971         Merge from FSF "apple/trunk" branch.
1972
1973         * config/rs6000/darwin.opt (mdynamic-no-pic): move from here ...
1974         * config/darwin.opt: .. to here.
1975         (matt-stubs): New option.
1976         * config/i386/darwin.opt: Delete.
1977         * config/i386/i386.h (MACHOPIC_ATT_STUB): New.
1978         (MACHO_DYNAMIC_NO_PIC_P): New.
1979         (MACHOPIC_INDIRECT): New.
1980         (MACHOPIC_PURE): New.
1981         * config/i386/darwin.h (DARWIN_X86) Define to 1.
1982         (MACHOPIC_ATT_STUB): New.
1983         (CC1_SPEC): Do not remove mdynamic-no-pic.
1984         Move HOT_TEXT_SECTION_NAME: move to config/darwin.h
1985         UNLIKELY_EXECUTED_TEXT_SECTION_NAME: Likewise.
1986         (FUNCTION_PROFILER): Correct over-length line.
1987         (SUBTARGET_OVERRIDE_OPTIONS): New.
1988         (MACHOPIC_NL_SYMBOL_PTR_SECTION): New.
1989         * config/i386/i386.c (config/i386/i386.c): Darwin has no PLT.
1990         (legitimate_constant_p): Handle mdynamic-no-pic.
1991         (ix86_legitimate_address_p): Likewise.
1992         (ix86_legitimize_address): Likewise.
1993         (ix86_expand_move): Likewise.
1994         (machopic_output_stub): Update for ATT-style stubs and
1995         mdynamic-no-pic.
1996         * config/darwin-protos.h (machopic_symbol_defined_p): New.
1997         * config/rs6000/darwin.h (DARWIN_PPC): Define to 1.
1998         TARGET_DYNAMIC_NO_PIC: Remove.
1999         Move HOT_TEXT_SECTION_NAME: move to config/darwin.h
2000         UNLIKELY_EXECUTED_TEXT_SECTION_NAME: Likewise.
2001         * config/rs6000/rs6000.c (darwin_rs6000_override_options):
2002         Remove handling of mdynamic-no-pic.
2003         * config/darwin.c (HAVE_lo_sum, gen_macho_high, gen_macho_low):
2004         Define if required.
2005         (machopic_symbol_defined_p): Do not try to use current_function_decl
2006         when generating _get_pc thunks within stubs.
2007         (machopic_indirect_data_reference): Rework for direct conditionals
2008         rather than #ifdefs, add x86 mdynamic-no-pic
2009         (machopic_legitimize_pic_address): Update to use HAVE_lo_sum with a
2010         defined value.
2011         (darwin_override_options): Handle mdynamic-no-pic here.
2012         * config/darwin-sections.def (machopic_lazy_symbol_ptr2_section): New.
2013         (machopic_lazy_symbol_ptr3_section): New.
2014         (machopic_picsymbol_stub2_section): New.
2015         (machopic_picsymbol_stub3_section): New.
2016         * config/darwin.h (DARWIN_X86, DARWIN_PPC): Define to 0.
2017         (MACHOPIC_NL_SYMBOL_PTR_SECTION): New.
2018         (HOT_TEXT_SECTION_NAME, UNLIKELY_EXECUTED_TEXT_SECTION_NAME):
2019         Moved common definition from x86 and rs6000.
2020         (MACHO_DYNAMIC_NO_PIC_P): Override value.
2021         (MACHOPIC_INDIRECT): Likewise.
2022         (MACHOPIC_PURE): Likewise.
2023         * config.gcc (x86-darwin-*): Remove darwin.opt.
2024
2025 2010-11-02  Jakub Jelinek  <jakub@redhat.com>
2026
2027         PR debug/46255
2028         * tree-cfg.c (gimple_flow_call_edges_add): Use gsi_last_nondebug_bb
2029         instead of gsi_last_bb.
2030
2031 2010-11-02  Bernd Schmidt  <bernds@codesourcery.com>
2032             Maxim Kuvyrkov  <maxim@codesourcery.com>
2033
2034         * config/i386/i386.c (cpu_names): Add "corei7".
2035         * config/i386/i386.h (enum target_cpu_default): Add entry for Core i7.
2036
2037 2010-11-02  Bernd Schmidt  <bernds@codesourcery.com>
2038             Maxim Kuvyrkov  <maxim@codesourcery.com>
2039
2040         Tune alignment for Intel Core i7
2041
2042         * config/i386.h (TARGET_COREI7{_32,_64,}): New macros.
2043         (enum processor_type): Update comment.  Add entries for Core i7.
2044         * config/i386-c.c (ix86_target_macros_internal): Update.
2045         * config/i386.c (m_COREI7{_32,_64}): New macros.
2046         (m_GENERIC32, m_GENERIC64): Use generic tuning for Core i7.
2047         (processor_target_table): Tune alignment for Core i7.
2048         (ix86_option_override_internal): Use PROCESSOR_COREI7_*.
2049
2050         * doc/invoke.texi: Document "corei7" option value.
2051
2052 2010-11-02  Bernd Schmidt  <bernds@codesourcery.com>
2053             Maxim Kuvyrkov  <maxim@codesourcery.com>
2054             H.J. Lu  <hjl.tools@gmail.com>
2055
2056         Basic support for Intel Core i7
2057
2058         * i386.c (ix86_option_override_internal): Add entry for corei7, use
2059         generic tuning.  Use generic32 when compiling for 32-bit ABI.
2060
2061 2010-11-02  Iain Sandoe  <iains@gcc.gnu.org>
2062
2063         * config/darwin.c (darwin_asm_named_section): Check for __DWARF
2064         sections and call darwin_asm_dwarf_section() to handle them.
2065         (darwin_asm_dwarf_section): New.
2066         (darwin_file_start): Remove code emitting dwarf section symbols.
2067
2068 2010-11-02  Chung-Lin Tang  <cltang@codesourcery.com>
2069
2070         * Makefile.in (LIBGCC2_CFLAGS): Add -fno-stack-protector, to
2071         explicitly disable stack protection when building libgcc.
2072         (CRTSTUFF_CFLAGS): Same, for crtbegin/end.
2073
2074 2010-11-01  Jason Merrill  <jason@redhat.com>
2075
2076         * fold-const.c (fold_indirect_ref_1): Handle folding
2077         POINTER_PLUS_EXPR to ARRAY_REF.
2078
2079 2010-11-01  Kaz Kojima  <kkojima@gcc.gnu.org>
2080
2081         * config/sh/sh.c (TARGET_DELEGITIMIZE_ADDRESS): Redefine.
2082         (sh_delegitimize_address): New function.
2083
2084 2010-11-01  Joseph Myers  <joseph@codesourcery.com>
2085
2086         * config/alpha/alpha.h (WORD_SWITCH_TAKES_ARG): Remove.
2087         * config/cris/cris.h (WORD_SWITCH_TAKES_ARG): Remove.
2088         (CC1_SPEC): Don't handle -target.
2089         * config/darwin.h (WORD_SWITCH_TAKES_ARG): Remove single-argument
2090         options.
2091         * config/darwin.opt (Zallowable_client, Zbundle_loader,
2092         Zdylib_file, Zexported_symbols_list, Zfn_seg_addr_table_filename,
2093         Zimage_base, Zinit, Zinstall_name, Zmultiply_defined,
2094         Zmultiplydefinedunused, Zseg_addr_table, Zsegs_read_only_addr,
2095         Zsegs_read_write_addr, Zumbrella, Zunexported_symbols_list,
2096         Zweak_reference_mismatches, client_name, compatibility_version,
2097         current_version, dylinker_install_name, pagezero_size,
2098         read_only_relocs, seg1addr, segs_read_only_addr,
2099         segs_read_write_addr, sub_library, sub_umbrella): New.
2100         * config/freebsd-spec.h (BSD_WORD_SWITCH_TAKES_ARG): Remove.
2101         * config/freebsd.h (WORD_SWITCH_TAKES_ARG): Remove.
2102         * config/freebsd.opt: New.
2103         * config/interix.h (WORD_SWITCH_TAKES_ARG): Remove.
2104         * config/mips/iris6.h (WORD_SWITCH_TAKES_ARG): Remove.
2105         * config/rpath.opt: New.
2106         * config.gcc (*-*-freebsd*): Use rpath.opt and freebsd.opt.
2107         (alpha*-dec-osf5.1*, i[34567]86-*-interix3*, mips-sgi-irix6.5*):
2108         Use rpath.opt.
2109
2110 2010-11-01  Joseph Myers  <joseph@codesourcery.com>
2111
2112         * common.opt (R, T, Tbss, Tdata, Ttext, h, z): New.
2113         * defaults.h (DEFAULT_SWITCH_TAKES_ARG, SWITCH_TAKES_ARG): Remove.
2114         (DEFAULT_WORD_SWITCH_TAKES_ARG): Define to 0.
2115         * doc/tm.texi.in (SWITCH_TAKES_ARG): Remove.
2116         (WORD_SWITCH_TAKES_ARG): Don't refer to SWITCH_TAKES_ARG.
2117         Document that options in .opt files do not need to be included.
2118         * doc/tm.texi: Regenerate.
2119         * gcc.c (LINK_COMMAND_SPEC): Don't include %{x}.
2120         * opts-common.c: Update comment on tm.h include.
2121         (decode_cmdline_option): Don't use SWITCH_TAKES_ARG.
2122         * system.h (SWITCH_TAKES_ARG): Poison.
2123         * config/alpha/alpha.h (SWITCH_TAKES_ARG): Remove.
2124         * config/darwin.h (WORD_SWITCH_TAKES_ARG): Remove options included
2125         in darwin.opt.
2126         (LINK_COMMAND_SPEC_A): Don't include %{x}.
2127         * config/fr30/fr30.h (SWITCH_TAKES_ARG, WORD_SWITCH_TAKES_ARG): Remove.
2128         * config/freebsd-spec.h (FBSD_SWITCH_TAKES_ARG): Remove.
2129         * config/freebsd.h (SWITCH_TAKES_ARG): Remove.
2130         * config/frv/frv.h (SWITCH_TAKES_ARG, WORD_SWITCH_TAKES_ARG): Remove.
2131         * config/i386/djgpp.h (LINK_COMMAND_SPEC): Don't include %{x}.
2132         * config/ia64/ia64.h (SWITCH_TAKES_ARG): Remove.
2133         * config/interix.h (WORD_SWITCH_TAKES_ARG): Don't handle -T options.
2134         * config/lm32/lm32.h (SWITCH_TAKES_ARG): Remove.
2135         * config/m32r/m32r.h (SWITCH_TAKES_ARG, WORD_SWITCH_TAKES_ARG): Remove.
2136         * config/microblaze/microblaze.h (SWITCH_TAKES_ARG): Remove.
2137         * config/mips/mips.h (SWITCH_TAKES_ARG): Remove.
2138         * config/mips/netbsd.h (SWITCH_TAKES_ARG): Remove.
2139         * config/mips/vxworks.h (SWITCH_TAKES_ARG): Remove.
2140         * config/netbsd-aout.h (SWITCH_TAKES_ARG): Remove.
2141         * config/netbsd-elf.h (SWITCH_TAKES_ARG): Remove.
2142         * config/openbsd.h (SWITCH_TAKES_ARG): Remove.
2143         * config/rs6000/sysv4.h (SWITCH_TAKES_ARG): Remove.
2144         * config/score/score.h (SWITCH_TAKES_ARG): Remove.
2145         * config/sol2.h (SWITCH_TAKES_ARG): Remove.
2146         * config/sparc/sp-elf.h (SWITCH_TAKES_ARG): Remove.
2147         * config/sparc/sp64-elf.h (SWITCH_TAKES_ARG): Remove.
2148         * config/sparc/sparc.h (ASM_SPEC): Don't include %{R}.
2149         * config/svr4.h (SWITCH_TAKES_ARG, WORD_SWITCH_TAKES_ARG): Remove.
2150
2151 2010-11-01  Paul Koning  <ni1d@arrl.net>
2152
2153         * config/pdp11/pdp11.md: Use iterators.
2154         (addqi3, subqi3, iorsi3, xorsi3): Delete.
2155
2156 2010-11-01  Steve Ellcey  <sje@cup.hp.com>
2157
2158         * defaults.h (TARGET_VTABLE_USES_DESCRIPTORS): Move under ifdef
2159         GCC_INSN_FLAGS_H.
2160         * libgcov.c (__gcov_indirect_call_profiler): Set
2161         VTABLE_USES_DESCRIPTORS if TARGET_VTABLE_USES_DESCRIPTORS is
2162         defined and use in place of TARGET_VTABLE_USES_DESCRIPTORS.
2163
2164 2010-11-01  Nathan Froyd  <froydnj@codesourcery.com>
2165
2166         PR tree-optimization/46259
2167
2168         Revert:
2169         2010-10-30  Nathan Froyd  <froydnj@codesourcery.com>
2170         * tree-vect-stmts.c (vect_get_vec_def_for_operand): Use
2171         build_vector_from_val.
2172
2173 2010-11-01  DJ Delorie  <dj@redhat.com>
2174
2175         * config/rx/rx.h (TARGET_CPU_CPP_BUILTINS): Add define for RX610
2176         as well as an assertion.
2177
2178 2010-11-01  Paul Koning  <ni1d@arrl.net>
2179
2180         * config/pdp11/pdp11.c (pdp11_return_in_memory): Return vector and
2181         complex modes in memory.
2182
2183 2010-11-01  Nathan Froyd  <froydnj@codesourcery.com>
2184
2185         * tree.c (build_vector_from_val): Use useless_type_conversion_p.
2186
2187 2010-11-01  Jakub Jelinek  <jakub@redhat.com>
2188
2189         PR target/45250
2190         * var-tracking.c (cfa_base_rtx): Move definition earlier in the file.
2191         (cfa_base_offset): New variable.
2192         (compute_cfa_pointer): Use cfa_base_rtx and cfa_base_offset.
2193         (adjust_mems): Don't do any sp or hfp replacements if cfa_base_rtx
2194         is NULL.
2195         (vt_init_cfa_base): Initialize cfa_base_offset.
2196
2197 2010-11-01  Alan Modra  <amodra@gmail.com>
2198
2199         PR target/46030
2200         * config/rs6000/rs6000.c (struct rs6000_stack): Add reload_completed
2201         and savres_strategy.
2202         (stack_info): New file scope var.
2203         (rs6000_init_machine_status): Init stack_info.
2204         (SAVRES_INLINE_FPRS, SAVRES_INLINE_GPRS,
2205         SAVRES_NOINLINE_GPRS_SAVES_LR, SAVRES_NOINLINE_FPRS_SAVES_LR,
2206         SAVRES_NOINLINE_FPRS_DOESNT_RESTORE_LR): Replace with..
2207         (SAVE_INLINE_FPRS, SAVE_INLINE_GPRS, REST_INLINE_FPRS, REST_INLINE_GPRS,
2208         SAVE_NOINLINE_GPRS_SAVES_LR, SAVE_NOINLINE_FPRS_SAVES_LR
2209         REST_NOINLINE_FPRS_DOESNT_RESTORE_LR): ..this.  Update all refs.
2210         (rs6000_savres_strategy): Rewrite.
2211         (rs6000_stack_info): Use "stack_info" in place of local "info".
2212         Return cached stack info when reload_completed unless ENABLE_CHECKING
2213         in which case confirm newly calculated stack info matches old info.
2214         Delay calculation of lr_save_p, set it for out of line gp save/restore
2215         as well as fp.  Call rs6000_savres_strategy from here..
2216         (rs6000_emit_prologue, rs6000_emit_epilogue): ..rather than here.
2217         (rs6000_output_function_prologue): Use info->savres_strategy to
2218         determine whether fp save/restore externs need to be emitted.
2219
2220 2010-10-31  Jason Merrill  <jason@redhat.com>
2221
2222         * tree.h (EXPR_LOC_OR_HERE): New macro.
2223         * builtins.c (c_strlen): Use it.
2224         * c-decl.c (build_enumerator): Likewise.
2225         * gimplify.c (internal_get_tmp_var): Likewise.
2226         (shortcut_cond_expr): Likewise.
2227         (gimplify_one_sizepos): Likewise.
2228
2229 2010-10-31  Richard Henderson  <rth@redhat.com>
2230
2231         * config/i386/cygming.h (TARGET_SEH): New.
2232         (MAX_STACK_ALIGNMENT): New.  Disable alignment for SEH.
2233         (TARGET_ASM_UNWIND_EMIT, TARGET_ASM_UNWIND_EMIT_BEFORE_INSN,
2234         TARGET_ASM_FUNCTION_END_PROLOGUE, SUBTARGET_ASM_UNWIND_INIT): New.
2235         (TARGET_OS_CPP_BUILTINS): Define __SEH__ as needed.
2236         (ASM_DECLARE_FUNCTION_NAME): Use i386_pe_start_function.
2237         (ASM_DECLARE_FUNCTION_SIZE): New.
2238         * config/i386/i386-protos.h: Update.
2239         * config/i386/i386.c (ix86_option_override_internal): Enable
2240         flag_unwind_tables with flag_asynchronous_unwind_tables immediately;
2241         restrict -mpreferred-stack-boundary for SEH; enable flag_fentry.
2242         (ix86_asm_output_function_label): Use SUBTARGET_ASM_UNWIND_INIT.
2243         (ix86_compute_frame_layout): For SEH, disable
2244         use_fast_prologue_epilogue, move frame pointer to the end of
2245         the frame.  Initialize hfp_save_offset.
2246         (ix86_expand_prologue): Honor hfp_save_offset.  Emit blockage
2247         at end of prologue for SEH.
2248         (ix86_expand_epilogue): For SEH, use pops, emit a nop if needed,
2249         emit blockage at beginning of epilogue.
2250         (ix86_expand_binary_operator): After reload, emit LEA if needed.
2251         (ix86_output_call_insn): New.
2252         * config/i386/i386.h (TARGET_SEH): New.
2253         (struct machine_function): Add member seh.
2254         * config/i386/i386.md (all call patterns): Use ix86_output_call_insn.
2255         * config/i386/winnt.c (struct seh_frame_state): New.
2256         (i386_pe_seh_init, i386_pe_seh_end_prologue, i386_pe_seh_fini,
2257         seh_emit_push, seh_emit_save, seh_emit_stackalloc, seh_cfa_adjust_cfa,
2258         seh_cfa_offset, seh_frame_related_expr, i386_pe_seh_unwind_emit,
2259         i386_pe_start_function, i386_pe_end_function): New.
2260
2261         * dwarf2out.c (dwarf2out_frame_debug_expr): Accept CFA as well
2262         as CFA_STORE in rules 12 and 13.
2263
2264 2010-10-31  Uros Bizjak  <ubizjak@gmail.com>
2265
2266         PR tree-optimization/46142
2267         * tree-vect-stmts.c (vectorizable_call): Enlarge dt array to
2268         accommodate third function argument.
2269
2270 2010-10-30  Nathan Froyd  <froydnj@codesourcery.com>
2271
2272         * tree-ssa-loop-im.c (rewrite_reciprocal): Use build_one_cst.
2273
2274 2010-10-30  Nathan Froyd  <froydnj@codesourcery.com>
2275
2276         * fold-const.c (build_zero_vector): Use build_vector_from_val.
2277         * tree-vect-loop.c (get_initial_def_for_induction): Likewise.
2278         (get_initial_def_for_reduction): Likewise.
2279         * tree-vect-slp.c (vect_get_constant_vectors): Likewise.
2280         * tree-vect-stmts.c (vect_get_vec_def_for_operand): Likewise.
2281         * tree.c (build_one_cst): Likewise.
2282         (build_vector_from_val): Use types_compatible_p for assert.
2283
2284 2010-10-30  Nathan Froyd  <froydnj@codesourcery.com>
2285
2286         * emit-rtl.c (mark_used_flags): New function.
2287         (set_used_flags, reset_used_flags): Call it.
2288
2289 2010-10-30  Uros Bizjak  <ubizjak@gmail.com>
2290
2291         PR middle-end/44569
2292         * lower-suberg.c (simplify_subreg_concatn): For VOIDmode elements,
2293         determine the mode of a subreg by GET_MODE_INNER of CONCATN RTX.
2294
2295 2010-10-30  H.J. Lu  <hongjiu.lu@intel.com>
2296
2297         PR target/46195
2298         * config/i386/i386.c (contains_aligned_value_p): Renamed to ...
2299         (ix86_compat_aligned_value_p): This.
2300         (ix86_old_function_arg_boundary): Renamed to ...
2301         (ix86_compat_function_arg_boundary): This.  Updated.
2302         (ix86_contains_aligned_value_p): New.
2303         (ix86_function_arg_boundary): Align long double parameters on
2304         stack to 4byte in 32bit.
2305
2306 2010-10-30  Nicola Pero  <nicola.pero@meta-innovation.com>
2307
2308         Implemented Objective-C 2.0 @property, @synthesize and @dynamic.
2309         * c-parser.c (c_parser_objc_at_property_declaration): Removed
2310         parsing of RID_COPIES and RID_IVAR.  Updated call to
2311         objc_add_property_declaration.
2312         * c-typecheck.c (build_component_ref): Call
2313         objc_maybe_build_component_ref instead of objc_build_setter_call.
2314         Use objc_is_property_ref to improve Objective-C checks.
2315         (cp_build_modify_expr): Call objc_maybe_build_modify_expr instead
2316         of objc_build_getter_call.
2317
2318 2010-10-29  Paul Koning  <ni1d@arrl.net>
2319
2320         * doc/tm.texi.in (REGNO_OK_FOR_BASE_P, REGNO_MODE_OK_FOR_BASE_P,
2321         REGNO_MODE_OK_FOR_REG_BASE, REGNO_MODE_CODE_OK_FOR_BASE_P,
2322         REGNO_OK_FOR_INDEX_P): Delete non-strict variant.
2323         (REG_OK_STRICT): Move description.
2324
2325 2010-10-29  Paul Koning  <ni1d@arrl.net>
2326
2327         * config/pdp11/pdp11.md (*and<mode>): Rename to *bic<mode>.
2328
2329 2010-10-29  Paul Koning  <ni1d@arrl.net>
2330
2331         * config/pdp11/pdp11.md (divhi3, modhi3, divmodhi3): Fix ICE.
2332
2333 2010-10-29  Paul Koning  <ni1d@arrl.net>
2334
2335         PR/41822
2336         * config/pdp11/pdp11.md (andhi3, andqi3): Fix wrong code error.
2337
2338 2010-10-29  Richard Henderson  <rth@redhat.com>
2339
2340         PR rtl-opt/46226
2341         * stmt.c (expand_asm_operands): Call do_pending_stack_adjust
2342         for asm goto.
2343
2344 2010-10-29  Paul Koning  <ni1d@arrl.net>
2345
2346         * config/pdp11/pdp11.c (output_move_quad): Fix ICE for CPU
2347         register to register move.
2348
2349 2010-10-29  Paul Koning  <ni1d@arrl.net>
2350
2351         * config/pdp11/pdp11.c (print_operand_address): Correct handling
2352         of integer constant addresses, delete vax-only logic.
2353
2354 2010-10-11  Hariharan Sandanagobalane  <hariharan@picochip.com>
2355
2356         * config/picochip/picochip.c (picochip_is_short_branch): Simplify
2357         a conditional expression.
2358
2359 2010-10-29  Paul Koning  <ni1d@arrl.net>
2360
2361         * config/pdp11/pdp11.c (pdp11_trampoline_init): Correct
2362         instruction encoding.
2363
2364 2010-10-29  Artjoms Sinkarovs  <artyom.shinakroff@gmail.com>
2365             Andrew Pinski  <pinskia@gmail.com>
2366
2367         * tree.h (build_vector_from_val): Declare.
2368         * tree.c (build_vector_from_val): New function.
2369         * c-typeck.c (build_binary_op): Handle vector shifting.
2370         * doc/extend.texi: Description of the vector shifting operation.
2371
2372 2010-10-29  Paul Koning  <pkoning@equallogic.com>
2373
2374         * config/pdp11/pdp11-protos.h (pdp11_cannot_change_mode_class,
2375         pdp11_secondary_memory_needed): Declare.
2376         * config/pdp11/predicates.md (float_operand): New predicate.
2377         * config/pdp11/pdp11.md (RETVAL_REGNUM): New constant.
2378         (cbranchdf4, movdf): Change predicate.
2379         (movsf): Handle FPU register case.
2380         (truncdfsf2, extendsfdf2): Add FPU register case.
2381         * config/pdp11/pdp11.c (TARGET_SECONDARY_RELOAD,
2382         TARGET_REGISTER_MOVE_COST, TARGET_PREFERRED_RELOAD_CLASS,
2383         TARGET_PREFERRED_OUTPUT_RELOAD_CLASS): Define.
2384         (pdp11_register_move_cost): Update cost matrix.
2385         (pdp11_cannot_change_mode_class, pdp11_preferred_reload_class,
2386         pdp11_preferred_output_reload_class, pdp11_secondary_reload,
2387         pdp11_secondary_memory_needed): New function.
2388         (pdp11_return_in_memory): Add other float types.
2389         * config/pdp11/pdp11.h (HARD_REGNO_MODE_OK): Add other float types.
2390         (SECONDARY_MEMORY_NEEDED, CANNOT_CHANGE_MODE_CLASS): Define.
2391         (PREFERRED_RELOAD_CLASS, SECONDARY_RELOAD_CLASS,
2392         REGISTER_MOVE_COST): Delete.
2393         (BASE_RETURN_VALUE_REG): Add other float types.
2394
2395 2010-10-29  Nick Clifton  <nickc@redhat.com>
2396
2397         * doc/invoke.texi: Document -mam34 and -mtune options.
2398         * config/mn10300/mn10300.c (mn10300_tune_string): New variable.
2399         (mn10300_tune_cpu): New variable.
2400         (mn10300_handle_option): Handle -mam34 and -mtune options.
2401         (mn10300_option_override): Convert tune string into tune cpu variable.
2402         (mn10300_legitimate_constant_p): Delete unused local variable.
2403         (is_load_insn): New function.
2404         (is_store_insn): New function.
2405         (mn10300_adjust_schedule_cost): New function.
2406         (TARGET_SCHED_ADJUST_COST): Define.
2407         * config/mn10300/mn10300.opt (mam34): New option.
2408         (mtune): New option.
2409         * config/mn10300/mn10300.h (TARGET_CPU_CPP_BUILTINS): Add AM34 support.
2410         (enum processor_type): Add AM34.
2411         (TARGET_AM34): Define.
2412         * config/mn10300/mn10300.md (attr cpu): Add am34.
2413         Add pipeline description.
2414         (movqi, movhi, movsi, movsf, movdf, movdi): Fix predicates.
2415         Remove unneeded alternatives.  Add timing attribute.
2416         (pop_pic_reg, am33_addsi3, mn10300_addsi3, am33_subsi3,
2417         mn10300_subsi3, mulsidi3, umulsidi3, am33_mulsi3,
2418         mn10300_mulsi3, udivmodsi4_am33, divmodsi4, am33_andsi3,
2419         mn10300_andsi3, am33_iorsi3, mn10300_iorsi3, am33_xorsi3,
2420         mn10300_xorsi3, byte_clear, byte_set, bit_clear1, bit_clear2,
2421         bit_set, am33_iorqi3, mn10300_iorqi3, test_byte_bitfield,
2422         bit_test, subreg_bit_test, cmpsi, am33_cmpsf, am33_subsi3,
2423         float_conditional_branch, jump, indirect_jump, tablejump,
2424         call_internal, call_value_internal, zero_extendqisi2_am33,
2425         zero_extendqisi2_mn10300, zero_extendhisi2_am33,
2426         zero_extendhisi2_mn10300, extendqisi2_am33, extendqisi2_mn10300,
2427         extendhisi2_am33, extendhisi2_mn10300, am33_ashlsi3,
2428         mn10300_ashlsi3, am33_lshrsi3, mn10300_lshrsi3, am33_ashrisi3,
2429         mn10300_ashrsi3, abssf2_am33_2, negsf2_am33_2, rsqrtsf2,
2430         addsf3_internal, subsf3_internal, mulsf3_internal, divsf3,
2431         fmaddsf4, fmsubsf4, fnmaddsf4, fnmsubsf4, return_internal,
2432         return_internal_regs, store_movm, return, call_next_insn):
2433         Add timing attribute.
2434         (am33_subsi3): Add missing clobber of CC_REG.
2435         (am33_andsi3, mn10300_andsi3): Fix compile time warnings.
2436         (udivmodsi4, udivmodsi4_insn, divmodsi4, test_byte_bitfield,
2437         subreg_bit_test, zero_extendqisi2, zero_extendhisi2,
2438         extendqisi2): Fix predicates.
2439         (call_internal, call_internal_value): Separate alternatives.
2440         * config/mn10300/t-mn10300: Add AM34 multilib.
2441
2442 2010-10-29  Paolo Bonzini  <bonzini@gnu.org>
2443
2444         * config/sh/sh.c (sh_promote_function_mode): Use
2445         default_promote_function_mode if !sh_promote_prototypes.
2446
2447 2010-10-28  Paolo Bonzini  <bonzini@gnu.org>
2448
2449         * recog.c (split_all_insns): Remove dead code.
2450
2451 2010-10-28  Nathan Froyd  <froydnj@codesourcery.com>
2452
2453         * score.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
2454
2455 2010-10-28  Nathan Froyd  <froydnj@codesourcery.com>
2456
2457         * config/cris/cris.h (FUNCTION_ARG, FUNCTION_INCOMING_ARG): Delete.
2458         (FUNCTION_ARG_ADVANCE): Delete.
2459         * config/cris/cris.c (cris_function_arg_1, cris_function_arg): New
2460         functions.
2461         (cris_function_incoming_arg, cris_function_arg_advance): New functions.
2462         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_INCOMING_ARG): Define.
2463         (TARGET_FUNCTION_ARG_ADVANCE): Define.
2464
2465 2010-10-28  Nathan Froyd  <froydnj@codesourcery.com>
2466
2467         * config/lm32/lm32-protos.h (lm32_function_arg): Delete.
2468         * config/lm32/lm32.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
2469         * config/mcore/mcore.c (mcore_function_arg): Declare.  Make static.
2470         Take a const_tree and a bool.
2471         (mcore_function_arg_advance): New function.
2472         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
2473
2474 2010-10-28  Nathan Froyd  <froydnj@codesourcery.com>
2475
2476         * config/mcore/mcore-protos.h (mcore_function_arg): Delete.
2477         * config/mcore/mcore.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
2478         * config/mcore/mcore.c (mcore_function_arg): Declare.  Make static.
2479         Take a const_tree and a bool.
2480         (mcore_function_arg_advance): New function.
2481         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
2482
2483 2010-10-28  Nathan Froyd  <froydnj@codesourcery.com>
2484
2485         * config/h8300/h8300-protos.h (function_arg): Delete.
2486         * config/h8300/h8300.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
2487         * config/h8300/h8300.c (function_arg): Rename to...
2488         (h8300_function_arg): ...this.  Make static.  Take a const_tree and
2489         a bool.
2490         (h8300_function_arg_advance): New function.
2491         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
2492
2493 2010-10-28  Nathan Froyd  <froydnj@codesourcery.com>
2494
2495         * config/arc/arc.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Move code
2496         to...
2497         * config/arc/arc.c (arc_function_arg): ...here and...
2498         (arc_function_arg_advance): ...here.  New functions.
2499         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
2500
2501 2010-10-28  Nathan Froyd  <froydnj@codesourcery.com>
2502
2503         * config/crx/crx-protos.h (crx_function_arg): Delete.
2504         (crx_function_arg_advance): Delete.
2505         * config/crx/crx.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
2506         * config/crx/crx.c (crx_function_arg): Make static.  Take a
2507         const_tree and a bool.
2508         (crx_function_arg_advance): Make static.  Take a const_tree and a bool.
2509         (enough_regs_for_param): Take a const_tree.
2510         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
2511
2512 2010-10-28  Nathan Froyd  <froydnj@codesourcery.com>
2513
2514         * config/m68hc11/m68hc11-protos.h (m68hc11_function_arg): Delete.
2515         (m68hc11_function_arg_advance): Delete.
2516         * config/m68hc11/m68hc11.h (FUNCTION_ARG): Delete.
2517         (FUNCTION_ARG_ADVANCE): Delete.
2518         * config/m68hc11/m68hc11.c (m68hc11_function_arg): Make static.
2519         Take a const_tree and a bool.
2520         (m68hc11_function_arg_advance): Likewise.
2521         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
2522
2523 2010-10-28  Nathan Froyd  <froydnj@codesourcery.com>
2524
2525         * config/stormy16/stormy16-protos.h (xstormy16_function_arg): Delete.
2526         (xstormy16_function_arg_advance): Delete.
2527         * config/stormy16/stormy16.h (FUNCTION_ARG): Delete.
2528         (FUNCTION_ARG_ADVANCE): Delete.
2529         * config/stormy16/stormy16.c (xstormy16_function_arg): Make static.
2530         Take a const_tree and a bool.
2531         (xstormy16_function_arg_advance): Likewise.  Return void, updating
2532         the CUM parameter instead.
2533         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
2534
2535 2010-10-28  Nathan Froyd  <froydnj@codesourcery.com>
2536
2537         * config/moxie/moxie-protos.h (moxie_function_arg): Delete.
2538         * config/moxie/moxie.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
2539         (MOXIE_FUNCTION_ARG_SIZE): Move to...
2540         * config/moxie/moxie.c (MOXIE_FUNCTION_ARG_SIZE): ...here.
2541         (moxie_function_arg): Make static.  Take a const_tree and a bool.
2542         (moxie_function_arg_advance): New function.
2543         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
2544
2545 2010-10-28  Nathan Froyd  <froydnj@codesourcery.com>
2546
2547         * config/mn10300/mn10300-protos.h (function_arg): Delete.
2548         * config/mn10300/mn10300.h (FUNCTION_ARG): Delete.
2549         (FUNCTION_ARG_ADVANCE): Delete.
2550         * config/mn10300/mn10300.c (function_arg): Rename to...
2551         (mn10300_function_arg): ...this.  Make static.  Take a const_tree
2552         and a bool.
2553         (mn10300_function_arg_advance): New function.
2554         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
2555
2556 2010-10-28  Nathan Froyd  <froydnj@codesourcery.com>
2557
2558         * config/iq2000/iq2000-protos.h (function_arg): Delete.
2559         (function_arg_advance): Delete.
2560         * config/iq2000/iq2000.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
2561         * config/iq2000/iq2000.c (function_arg): Rename to...
2562         (iq2000_function_arg): ...this.  Make static.  Take a const_tree and
2563         a bool.
2564         (function_arg_advance): Rename to...
2565         (iq2000_function_arg_advance): ...this.  Make static.  Take a
2566         const_tree and a bool.
2567         (iq2000_expand_prologue): Call iq2000_function_arg_advance and
2568         iq2000_function_arg.
2569         (iq2000_pass_by_reference): Call iq2000_function_arg).
2570         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
2571
2572 2010-10-28  Nathan Froyd  <froydnj@codesourcery.com>
2573
2574         * config/fr30/fr30-protos.h (fr30_num_arg_regs): Delete.
2575         * config/fr30/fr30.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
2576         * config/fr30/fr30.c (fr30_num_arg_regs): Make static.  Take a
2577         const_tree.
2578         (fr30_function_arg): New function.
2579         (fr30_function_arg_advance): New function.
2580         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
2581
2582 2010-10-28  Nathan Froyd  <froydnj@codesourcery.com>
2583
2584         * config/frv/frv-protos.h (frv_function_arg): Delete.
2585         (frv_function_arg_advance): Delete.
2586         * config/frv/frv.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
2587         * config/frv/frv.c (frv_function_arg): Rename to...
2588         (frv_function_arg_1): Make static.  Take const_tree and bool arguments.
2589         (frv_function_arg, frv_function_incoming_arg): New functions.
2590         (frv_function_arg_advance): Make static.  Take a const_tree and a bool.
2591         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_INCOMING_ARG): Define.
2592         (TARGET_FUNCTION_ARG_ADVANCE): Define.
2593
2594 2010-10-28  Uros Bizjak  <ubizjak@gmail.com>
2595
2596         PR target/46153
2597         * config/i386/sse.md (sse_movhlps_exp): Use destination
2598         returned from ix86_fixup_binary_operands to expand insn.
2599         (sse_movlhps_exp): Ditto.
2600         (sse_loadhps_exp): Ditto.
2601         (sse_loadlps_exp): Ditto.
2602         (sse2_loadhpd_exp): Ditto.
2603         (sse2_loadlpd_exp): Ditto.
2604
2605 2010-10-28  Andrew Stubbs  <ams@codesourcery.com>
2606
2607         * config/arm/arm.c (const_ok_for_arm): Support 0xXY00XY00 pattern
2608         constants in thumb2.
2609
2610 2010-10-28  Eric Botcazou  <ebotcazou@adacore.com>
2611
2612         * combine.c (set_nonzero_bits_and_sign_copies): Use unsigned
2613         arithmetics in masking operations.
2614         (contains_muldiv): Likewise.
2615         (try_combine): Likewise.
2616         (find_split_point): Likewise.
2617         (combine_simplify_rtx): Likewise.
2618         (simplify_if_then_else): Likewise.
2619         (simplify_set): Likewise.
2620         (expand_compound_operation): Likewise.
2621         (expand_field_assignment): Likewise.
2622         (make_extraction): Likewise.
2623         (extract_left_shift): Likewise.
2624         (make_compound_operation): Likewise.
2625         (force_to_mode): Likewise.
2626         (make_field_assignment): Likewise.
2627         (reg_nonzero_bits_for_combine): Likewise.
2628         (simplify_shift_const_1): Likewise.
2629         (simplify_comparison): Likewise.
2630
2631 2010-10-27  Nathan Froyd  <froydnj@codesourcery.com>
2632
2633         * config/ia64/ia64-protos.h (ia64_function_arg): Delete.
2634         (ia64_function_arg_advance): Delete.
2635         * config/ia64/ia64.h (FUNCTION_ARG, FUNCTION_INCOMING_ARG): Delete.
2636         (FUNCTION_ARG_ADVANCE): Delete.
2637         * config/ia64/ia64.c (ia64_function_arg): Rename to...
2638         (ia64_function_arg_1): ...this.  Make static.  Take const_tree and
2639         bool arguments.
2640         (ia64_function_arg, ia64_function_incoming_arg): New functions.
2641         (ia64_function_arg_advance): Make static.  Take a const_tree and
2642         a bool.
2643         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_INCOMING_ARG): Define.
2644         (TARGET_FUNCTION_ARG_ADVANCE): Define.
2645
2646 2010-10-27  Steve Ellcey  <sje@cup.hp.com>
2647
2648         * doc/tm.texi.in (TARGET_GET_RAW_RESULT_MODE): New.
2649         (TARGET_GET_RAW_ARG_MODE): New.
2650         * doc/tm.texi: Regenerate.
2651         * target.def (get_raw_result_mode): New.
2652         (get_raw_arg_mode): New.
2653         * targhooks.c (default_get_reg_raw_mode): New.
2654         * targhooks.h (default_get_reg_raw_mode): New.
2655         * builtins.c (apply_args_size): Use targetm.calls.get_raw_arg_mode.
2656         (apply_result_size): Ditto.
2657         * config/ia64/ia64.c (ia64_get_reg_raw_mode): New.
2658         (TARGET_GET_RAW_RESULT_MODE): Define.
2659         (TARGET_GET_RAW_ARG_MODE): Ditto.
2660
2661 2010-10-27  Eric Botcazou  <ebotcazou@adacore.com>
2662
2663         * config/sparc/sol2-unwind.h (sparc64_fallback_frame_state): Adjust
2664         for newer Solaris 10 release.
2665         (sparc_fallback_frame_state): Likewise.
2666
2667 2010-10-27  Jason Merrill  <jason@redhat.com>
2668
2669         * gimplify.c (gimplify_decl_expr): Handle anonymous artificial
2670         variables sooner.
2671
2672 2010-10-27  Jie Zhang  <jie@codesourcery.com>
2673             Maxim Kuvyrkov  <maxim@codesourcery.com>
2674
2675         * haifa-sched.c (ISSUE_POINTS): Remove.
2676         (max_issue): Don't issue more than issue_rate instructions.
2677
2678 2010-10-27  Ian Lance Taylor  <iant@google.com>
2679
2680         PR target/46197
2681         * config/i386/i386.md (UNSPECV_SPLIT_STACK_RETURN): New.
2682         (split_stack_return): Replace UNSPEC_STACK_CHECK with
2683         UNSPECV_SPLIT_STACK_RETURN.
2684
2685 2010-10-27  H.J. Lu  <hongjiu.lu@intel.com>
2686
2687         * config/i386/i386-protos.h (init_cumulative_args): Add an int.
2688
2689         * config/i386/i386.c (block_info): New.
2690         (BLOCK_INFO): Likewise.
2691         (call_avx256_state): Likewise.
2692         (check_avx256_stores): Likewise.
2693         (move_or_delete_vzeroupper_2): Likewise.
2694         (move_or_delete_vzeroupper_1): Likewise.
2695         (move_or_delete_vzeroupper): Likewise.
2696         (use_avx256_p): Likewise.
2697         (function_pass_avx256_p): Likewise.
2698         (flag_opts): Add -mvzeroupper.
2699         (ix86_option_override_internal): Turn on MASK_VZEROUPPER by
2700         default for TARGET_AVX.  Turn off MASK_VZEROUPPER if TARGET_AVX
2701         is disabled.
2702         (ix86_function_ok_for_sibcall): Disable sibcall if we need to
2703         generate vzeroupper.
2704         (init_cumulative_args): Add an int to indicate caller.  Set
2705         use_avx256_p, callee_return_avx256_p and caller_use_avx256_p
2706         based on return type.
2707         (ix86_function_arg): Set use_avx256_p, callee_pass_avx256_p and
2708         caller_pass_avx256_p based on argument type.
2709         (ix86_expand_epilogue): Emit vzeroupper if 256bit AVX register
2710         is used, but not returned by caller.
2711         (ix86_expand_call): Emit vzeroupper if 256bit AVX register is used.
2712         (ix86_local_alignment): Set use_avx256_p if 256bit AVX register
2713         is used.
2714         (ix86_minimum_alignment): Likewise.
2715         (ix86_expand_special_args_builtin): Set target to
2716         GEN_INT (vzeroupper_intrinsic) for CODE_FOR_avx_vzeroupper.
2717         (ix86_reorg): Run the vzeroupper optimization if needed.
2718
2719         * config/i386/i386.h (ix86_args): Add caller.
2720         (INIT_CUMULATIVE_ARGS): Updated.
2721         (machine_function): Add use_vzeroupper_p, use_avx256_p,
2722         caller_pass_avx256_p, caller_return_avx256_p,
2723         callee_pass_avx256_p and callee_return_avx256_p.
2724
2725         * config/i386/i386.opt (-mvzeroupper): New.
2726
2727         * config/i386/predicates.md (vzeroupper_operation): Removed.
2728
2729         * config/i386/sse.md (avx_vzeroupper): Removed.
2730         (*avx_vzeroupper): Removed.
2731         (avx_vzeroupper): New.
2732
2733         * doc/invoke.texi: Document -mvzeroupper.
2734
2735 2010-10-27  Eric Botcazou  <ebotcazou@adacore.com>
2736
2737         * config/i386/t-mingw32 (SHLIB_LC): Add -lmingwthrd.
2738         * config/i386/t-mingw-w32 (SHLIB_LC): Likewise.
2739         * config/i386/t-mingw-w64 (SHLIB_LC): Likewise.
2740
2741 2010-10-27  Eric Botcazou  <ebotcazou@adacore.com>
2742             Olivier Hainque  <hainque@adacore.com>
2743
2744         * config/i386/w32-unwind.h (i386_w32_fallback_frame_state): Fix regnum
2745         of EBP.  Do not restore reg #9.  Remove +1 adjustment to EIP and set
2746         fs->signal_frame instead.
2747
2748 2010-10-27  Nicola Pero  <nicola.pero@meta-innovation.com>
2749
2750         * c-parser.c (cp_parser_objc_at_property_declaration): Removed
2751         parsing of RID_COPIES and RID_IVAR.
2752
2753 2010-10-27  Nicola Pero  <nicola.pero@meta-innovation.com>
2754
2755         * c-parser.c (c_parser_objc_at_property_declaration): Recognize
2756         RID_ASSIGN, RID_COPY, RID_RETAIN, RID_READWRITE and RID_NONATOMIC.
2757         Do not use objc_set_property_attr, but use local variables
2758         instead.  Detect repeated usage of setter, getter and ivar
2759         attributes.  Improved error processing when a setter name does not
2760         end in ':'.  Do not check for CPP_CLOSE_PAREN after we determined
2761         that the token is a keyword.  Updated call to
2762         objc_add_property_declaration.
2763
2764 2010-10-27  Nicola Pero  <nicola.pero@meta-innovation.com>
2765
2766         * c-parser.c (c_parser_objc_at_property): Renamed to
2767         c_parser_objc_at_property_declaration.  Updated calls to
2768         objc_add_property_variable, now objc_add_property_declaration.
2769         Code rewritten to be much more robust in recovering from syntax
2770         errors.  Added comments.
2771         (c_parser_objc_property_attrlist): Removed.
2772         (c_parser_external_declaration): Updated calls to
2773         c_parser_objc_at_property, now
2774         c_parser_objc_at_property_declaration.
2775         (c_parser_objc_methodprotolist): Same change.
2776
2777 2010-10-26  H.J. Lu  <hongjiu.lu@intel.com>
2778
2779         * config/i386/i386.md (split_stack_return): Put back unspec_volatile.
2780
2781 2010-10-26  Jan Hubicka  <jh@suse.cz>
2782
2783         * ipa.c (process_references): Enqueue all referenced nodes;
2784         mark as reachable only non-external nodes.
2785         (cgraph_remove_unreachable_nodes): All referenced nodes should
2786         be enqueued; remove bogues node->needed check.
2787
2788 2010-10-26  Jan Hubicka  <jh@suse.cz>
2789
2790         * cgraphbuild.c (build_cgraph_edges): Use ipa-reference
2791         to represent OMP.
2792
2793 2010-10-26  H.J. Lu  <hongjiu.lu@intel.com>
2794
2795         * config/i386/i386.md (split_stack_return): Replace
2796         unspec_volatile with unspec.
2797
2798 2010-10-26  Jonathan Wakely  <jwakely.gcc@gmail.com>
2799
2800         * doc/install.texi: Fix typo in --with-sysroot description.
2801
2802 2010-10-26  Jan Hubicka  <jh@suse.cz>
2803
2804         * ipa.c (cgraph_externally_visible_p, varpool_externally_visible_p):
2805         Use info provided by linker plugin.
2806
2807 2010-10-26  Jason Merrill  <jason@redhat.com>
2808
2809         * varasm.c (constructor_static_from_elts_p): Don't require a
2810         CONSTRUCTOR to have elements to be suitable for static
2811         initialization.  Allow ARRAY_TYPE as well.
2812
2813 2010-10-26  Jan Hubicka  <jh@suse.cz>
2814
2815         PR middle-end/45736
2816         * cgraph.c (cgraph_set_readonly_flag): Rename to...
2817         (cgraph_set_const_flags) ... this one; get also looping argument;
2818         clear constructor/destructor flags.
2819         (cgraph_set_pure_flag): Likewise.
2820         (cgraph_set_looping_const_or_pure_flag): Remove.
2821         (cgraph_can_remove_if_no_direct_calls_and_refs): Do not try
2822         to optimize away static ctors/dtors; it does not work on inline clones;
2823         external functions can always be rmeoved.
2824         (cgraph_will_be_removed_from_program_if_no_direct_calls): Assert on
2825         inline clones; in LTO external functions always can go.
2826         (cgraph_used_from_object_file_p): Handle EXTERNAL functions correctly.
2827         (cgraph_mark_address_taken_node): Assert that we are not taking
2828         address of inline clone.
2829         (cgraph_can_remove_if_no_direct_calls_p): We always eventually remove
2830         external functions.
2831         * ipa-cp.c (ipcp_cloning_candidate_p): Do not clone functions with
2832         address taken.
2833         (ipcp_initialize_node_lattices): Only local functions can be
2834         handled without cloning.
2835         * cgraph.h (cgraph_set_readonly_flag,
2836         cgraph_set_looping_const_or_pure_flag): Remove.
2837         (cgraph_set_const_flag): Declare.
2838         (cgraph_set_pure_flag): Update.
2839         * ipa-pure-const (propagate_pure_const, local_pure_const): Update
2840         flags setting code.
2841         * ipa.c (cgraph_remove_unreachable_nodes): Fix formating; do not
2842         look at inline clones; fix handling of external definitions.
2843         (cgraph_postorder): Do not look at inline clones in the first pass.
2844         (function_and_variable_visibility): Drop constructors/destructor
2845         flags at pure and const functions.
2846         * tree-profile.c (tree_profiling): Update.
2847         * ipa-inline.c (cgraph_clone_inlined_nodes): Always clone functions with
2848         address taken; external functions do not account to whole program size.
2849         (cgraph_decide_inlining): Likewise; do not try to inline
2850         functions already inlined.
2851
2852 2010-10-26  Jie Zhang  <jie@codesourcery.com>
2853
2854         * doc/invoke.texi: Improve documentation of
2855         -fstrict-volatile-bitfields.
2856
2857 2010-10-26  Ira Rosen  <irar@il.ibm.com>
2858
2859         PR tree-optimization/46167
2860         * tree-vect-patterns.c (vect_recog_dot_prod_pattern): Check that there
2861         is basic block for the statement.
2862
2863 2010-10-26  Paul Koning  <ni1d@arrl.net>
2864
2865         * config/pdp11/pdp11.c (pdp11_f_format, pdp11_d_format): Update to
2866         current definition of struct_real_format.
2867
2868 2010-10-26  H.J. Lu  <hongjiu.lu@intel.com>
2869
2870         PR target/44948
2871         * config/i386/i386.c (ix86_old_function_arg_boundary): New.
2872         (ix86_function_arg_boundary): Always align parameters on stack
2873         in 64bit and align parameters with alignment >= 16byte on stack
2874         in 32bit.  Warn alignment change.
2875
2876 2010-10-26  Ian Lance Taylor  <iant@google.com>
2877
2878         PR middle-end/45687
2879         * ipa-prop.c (ipa_modify_call_arguments): Correct type of MEM_REF
2880         offset.
2881
2882 2010-10-25  Rodrigo Rivas Costa  <rodrigorivascosta@gmail.com>
2883
2884         Implement opaque-enum-specifiesr for C++0x
2885         * tree.h (ENUM_IS_OPAQUE): New.
2886         * dwarf2out.c (gen_enumeration_type_die): Use ENUM_IS_OPAQUE.
2887
2888 2010-10-26  Jie Zhang  <jie@codesourcery.com>
2889
2890         * stor-layout.c (layout_decl): Use the field's type to
2891         determine the mode and keep DECL_BIT_FIELD for a volatile bit-field.
2892         * config/arm/arm.c (arm_override_options): Default to
2893         -fstrict-volatile-bitfields.
2894
2895 2010-10-25  Paul Koning  <ni1d@arrl.net>
2896
2897         * config/pdp11/pdp11.md: Add define_constants for register
2898         numbers, branch offset limits.
2899         * config/pdp11/pdp11.c: Use named constants instead of numbers.
2900         * config/pdp11.pdp11.h: Ditto.
2901
2902 2010-10-25  Eric Botcazou  <ebotcazou@adacore.com>
2903
2904         * configure.ac: Use $cpu_type instead of $target to define the nop.
2905         * configure: Regenerate.
2906
2907 2010-10-25  Jie Zhang  <jie@codesourcery.com>
2908
2909         * combine.c (try_combine): If insns need to be kept around, check that
2910         they can be copied in the merged instruction.
2911
2912 2010-10-24  Eric Botcazou  <ebotcazou@adacore.com>
2913
2914         * reg-stack.c (convert_regs_1): Return boolean value, true if the CFG
2915         has been modified.
2916         (convert_regs_2): Likewise.  Adjust calls to convert_regs_1.
2917         (convert_regs): Adjust calls to convert_regs_2.  Clean up the CFG if
2918         it has been modified.
2919
2920 2010-10-24  Eric Botcazou  <ebotcazou@adacore.com>
2921
2922         * config/sparc/sparc.c (sparc_type_code) <NULLPTR_TYPE>: New case.
2923
2924 2010-10-24  Paul Koning  <ni1d@arrl.net>
2925
2926         * config/pdp11/pdp11.md: Change length attribute to be in bytes.
2927         * config/pdp11/pdp11.c (output_jump): Ditto.
2928
2929 2010-10-24  Ian Lance Taylor  <iant@google.com>
2930
2931         * config/i386/i386.c (ix86_va_start): Remove extraneous blank line.
2932
2933 2010-10-24  Eric Botcazou  <ebotcazou@adacore.com>
2934
2935         * cfglayout.c (fixup_reorder_chain): When ensuring that there is at
2936         least one insn with a locus corresponding to an edge's goto_locus,
2937         disregard non-fallthru edges to the exit block and merge the blocks
2938         created for the same goto_locus.
2939
2940 2010-10-23  Joseph Myers  <joseph@codesourcery.com>
2941
2942         * gcc.c (n_switches_alloc_debug_check): New.
2943         (set_option_handlers): New.
2944         (process_command): Use set_option_handlers.
2945         (do_self_spec): Pass spec-generated options through option handlers.
2946         (main): Also save and restore n_switches_alloc when swapping
2947         switch arrays.
2948
2949 2010-10-23  Richard Henderson  <rth@redhat.com>
2950
2951         PR target/46144
2952         * config/i386/sse.md (*avx_absneg<AVXMODEF2P>2): New.
2953         (*sse_absneg<SSEMODEF2P>2): Rename from *absneg<VEC_FLOAT_MODE>2.
2954         Honor matching operands when splitting to XOR.
2955
2956 2010-10-23  Ian Lance Taylor  <iant@google.com>
2957
2958         * tree-vrp.c (extract_range_from_binary_expr): If
2959         flag_non_call_exceptions don't eliminate division by zero.
2960         * simplify-rtx.c (simplify_binary_operation_1): Likewise.
2961
2962 2010-10-23  Nathan Froyd  <froydnj@codesourcery.com>
2963
2964         * cppbuiltin.c (define_builtin_macros_for_type_sizes): Define
2965         __BYTE_ORDER__, __ORDER_LITTLE_ENDIAN__, __ORDER_BIG_ENDIAN__, and
2966         __ORDER_PDP_ENDIAN__.
2967         * libgcc2.h (LIBGCC2_WORDS_BIG_ENDIAN): Delete.
2968         (struct DWstruct): Define based on __BYTE_ORDER__.
2969         * config/fixed-bit.h (LIBGCC2_WORDS_BIG_ENDIAN): Delete.
2970         (struct INTstruct): Define based on __BYTE_ORDER__.
2971         * config/dfp-bit.h (LIBGCC2_WORDS_BIG_ENDIAN): Delete.
2972         (LIBGCC2_FLOAT_WORDS_BIG_ENDIAN): Test __BYTE_ORDER__.
2973         * system.h (LIBGCC2_WORDS_BIG_ENDIAN): Poison identifier.
2974         * config/arc/arc.h (LIBGCC2_WORDS_BIG_ENDIAN): Delete.
2975         * config/arm/arm.h (LIBGCC2_WORDS_BIG_ENDIAN): Delete.
2976         * config/ia64/ia64.h (LIBGCC2_WORDS_BIG_ENDIAN): Delete.
2977         * config/iq2000/iq2000.h (LIBGCC2_WORDS_BIG_ENDIAN): Delete.
2978         * config/lm32/lm32.h (LIBGCC2_WORDS_BIG_ENDIAN): Delete.
2979         * config/m32r/m32r.h (LIBGCC2_WORDS_BIG_ENDIAN): Delete.
2980         * config/mcore/mcore.h (LIBGCC2_WORDS_BIG_ENDIAN): Delete.
2981         * config/mep/mep.h (LIBGCC2_WORDS_BIG_ENDIAN): Delete.
2982         * config/mips/mips.h (LIBGCC2_WORDS_BIG_ENDIAN): Delete.
2983         * config/rs6000/sysv4.h (LIBGCC2_WORDS_BIG_ENDIAN): Delete.
2984         * config/rx/rx.h (LIBGCC2_WORDS_BIG_ENDIAN): Delete.
2985         * config/score/score.h (LIBGCC2_WORDS_BIG_ENDIAN): Delete.
2986         * config/sh/sh.h (LIBGCC2_WORDS_BIG_ENDIAN): Delete.
2987         * config/sparc/sparc.h (LIBGCC2_WORDS_BIG_ENDIAN): Delete.
2988         * config/xtensa/xtensa.h (LIBGCC2_WORDS_BIG_ENDIAN): Delete.
2989         * doc/tm.texi.in (LIBGCC2_WORDS_BIG_ENDIAN): Delete.
2990         * doc/tm.texi: Regenerate.
2991         * doc/cpp.texi (__BYTE_ORDER__, __ORDER_LITTLE_ENDIAN__): Document.
2992         (__ORDER_BIG_ENDIAN__, __ORDER_PDP_ENDIAN__): Likewise.
2993
2994 2010-10-23  Jie Zhang  <jie@codesourcery.com>
2995
2996         PR rtl-optimization/37360
2997         * config/mips/mips.c (cached_can_issue_more): New local variable.
2998         (mips_sched_reorder_1): New.
2999         (mips_sched_reorder): Use mips_sched_reorder_1.
3000         (mips_sched_reorder2): New.
3001         (mips_variable_issue): Set cached_can_issue_more.
3002         (TARGET_SCHED_REORDER2): Define to mips_sched_reorder2
3003         instead of mips_sched_reorder.
3004
3005         Revert:
3006         2008-09-09  Andrey Belevantsev  <abel@ispras.ru>
3007         PR rtl-optimization/37360
3008         * haifa-sched.c (max_issue): Do not assert that we never issue more
3009         insns than issue_rate.  Add comment.
3010
3011 2010-10-22  Eric Botcazou  <ebotcazou@adacore.com>
3012
3013         * gimplify.c (gimplify_variable_sized_compare): Preserve the source
3014         location info of the expression.
3015
3016 2010-10-22  DJ Delorie  <dj@redhat.com>
3017
3018         * doc/extend.texi (Named Address Spaces): Document the M32C named
3019         address space.
3020
3021         * config/m32c/m32c-pragma.c (m32c_register_pragmas): Register the
3022         __far address space.
3023         * config/m32c/m32c.h (ADDR_SPACE_FAR): New.  Add support for
3024         "__far" address space for R8C and M16C processor variants.
3025         * config/m32c/m32c.c (m32c_addr_space_legitimate_address_p): New.
3026         (far_addr_space_p): New.
3027         (encode_pattern_1): Add sign and zero extend support.
3028         (m32c_hard_regno_nregs_1): Large pointers in A16 mode are SImode.
3029         (m32c_extra_constraint_p2): Add SF constraint.
3030         (m32c_legitimate_address_p): Support __far addresses.
3031         (m32c_addr_space_pointer_mode): New.
3032         (m32c_addr_space_address_mode): New.
3033         (m32c_addr_space_legitimate_address_p): New.
3034         (m32c_addr_space_legitimize_address): New.
3035         (m32c_addr_space_subset_p): New.
3036         (m32c_addr_space_convert): New.
3037         (conversions): Add __far operand patterns.
3038         (m32c_prepare_move): Force constants into registers for __far moves.
3039         (m32c_split_move): __far moves are always split.
3040         * config/m32c/addsub.md (addsi3_1): Support SImode symbols.
3041         * config/m32c/mov.md (mov<mode>_far_op1): New.
3042         (mov<mode>_far_op2): New.
3043         (movqi_op): Add __far (SF) support.
3044         (movhi_op): Likewise.
3045         (movsi_splittable): Split A1A0 also.
3046
3047 2010-10-22  Artjoms Sinkarovs  <artyom.shinakroff@gmail.com>
3048             Andrew Pinski  <pinskia@gmail.com>
3049
3050         * c-typeck.c (build_array_ref): Handle subscripting of vectors.
3051         * doc/extend.texi: New paragraph
3052
3053 2010-10-22  Paul Koning  <ni1d@arrl.net>
3054
3055         * config.pdp11/pdp11.h (DBX_DEBUGGING_INFO): Define.
3056
3057 2010-10-22  DJ Delorie  <dj@redhat.com>
3058
3059         * config/m32c/m32c-lib1.S (m32c_jsri16): Make reentrant.
3060
3061 2010-10-22  Paul Koning  <ni1d@arrl.net>
3062
3063         * config/pdp11/pdp11.h (IRA_COVER_CLASSES): Define.
3064
3065 2010-10-22  Richard Henderson  <rth@redhat.com>
3066
3067         * config/i386/i386.c (ix86_builtin_vectorized_function): Add
3068         cases for __builtin_fma and __builtin_fmaf.
3069
3070 2010-10-22  Richard Henderson  <rth@redhat.com>
3071
3072         * config/i386/i386.c (ix86_expand_fp_absneg_operator): Produce
3073         NEG+USE for vectors as well.
3074         * config/i386/i386.md (*absneg<VEC_FLOAT_MODE>2): New pattern
3075         and splitter.
3076
3077 2010-10-22  Joseph Myers  <joseph@codesourcery.com>
3078
3079         * gcc.c (DEFAULT_SWITCH_CURTAILS_COMPILATION,
3080         SWITCH_CURTAILS_COMPILATION): Remove.
3081         * doc/tm.texi.in (SWITCH_CURTAILS_COMPILATION): Remove documentation.
3082         * doc/tm.texi: Regenerate.
3083         * system.h (SWITCH_CURTAILS_COMPILATION): Poison.
3084
3085 2010-10-22  Changpeng Fang  <changpeng.fang@amd.com>
3086
3087         * config/i386/bdver1.md: New file.
3088         * config/i386/i386.md (include "bdver1.md"): Invoke the
3089         pipeline description for bdver1.
3090         (x86_sahf_1): Add "bdver1_decode" attribute.
3091         (*cmpfp_i_mixed): Likewise.
3092         (*cmpfp_i_sse): Likewise.
3093         (*cmpfp_i_i387): Likewise.
3094         (*cmpfp_iu_mixed): Likewise.
3095         (*cmpfp_iu_sse): Likewise.
3096         (*cmpfp_iu_387): Likewise.
3097         (*swap<mode>,*swap<mode>_1): Likewise.
3098         (fixuns_trunc<mode>hi2): Likewise.
3099         (fix_trunc<mode>si_sse): Likewise.
3100         (x86_fnstcw_1): Likewise.
3101         (x86_fldcw_1): Likewise.
3102         (*floatsi<mode>2_vector_mixed_with_temp): Likewise.
3103         (*floatsi<mode>2_vector_mixed): Likewise.
3104         (*float<SSEMODEI24:mode><MODEF:mode>2_mixed_with_temp): Likewise.
3105         (*float<SSEMODEI24:mode><MODEF:mode>2_mixed_interunit): Likewise.
3106         (*float<SSEMODEI24:mode><MODEF:mode>2_mixed_nointerunit): Likewise.
3107         (*floatsi<mode>2_vector_sse_with_temp): Likewise.
3108         (*floatsi<mode>2_vector_sse): Likewise.
3109         (*float<SSEMODEI24:mode><MODEF:mode>2_sse_with_temp): Likewise.
3110         (*float<SSEMODEI24:mode><MODEF:mode>2_sse_interunit): Likewise.
3111         (*float<SSEMODEI24:mode><MODEF:mode>2_sse_nointerunit): Likewise.
3112         (*mul<mode>3_1): Likewise.
3113         (*mulsi3_1_zext): Likewise.
3114         (*mulhi3_1): Likewise.
3115         (*mulqi3_1): Likewise.
3116         (*<u>mul<mode><dwi>3_1): Likewise.
3117         (*<u>mulqihi3_1): Likewise.
3118         (*<s>muldi3_highpart_1): Likewise.
3119         (*<s>mulsi3_highpart_1): Likewise.
3120         (*<s>mulsi3_highpart_zext): Likewise.
3121         (x86_64_shld): Likewise.
3122         (x86_shld): Likewise.
3123         (x86_64_shrd): Likewise.
3124         (x86_shrd): Likewise.
3125         (sqrtxf2): Likewise.
3126         (sqrt_extend<mode>xf2_i387): Likewise.
3127         (*sqrt<mode>2_sse): Likewise.
3128         * config/i386/sse.md (sse_cvtsi2ss): Add "bdver1_decode" attribute.
3129         (sse_cvtsi2ssq): Likewise.
3130         (sse_cvtss2si): Likewise.
3131         (sse_cvtss2si_2): Likewise.
3132         (sse_cvtss2siq): Likewise.
3133         (sse_cvtss2siq_2): Likewise.
3134         (sse_cvttss2si): Likewise.
3135         (sse_cvttss2siq): Likewise.
3136         (sse2_cvtpi2pd): Likewise.
3137         (sse2_cvttpd2pi): Likewise.
3138         (sse2_cvtsi2sd): Likewise.
3139         (sse2_cvtsi2sdq): Likewise.
3140         (sse2_cvtsd2si): Likewise.
3141         (sse2_cvtsd2si_2): Likewise.
3142         (sse2_cvtsd2siq): Likewise.
3143         (sse2_cvtsd2siq_2): Likewise.
3144         (sse2_cvttsd2si): Likewise.
3145         (sse2_cvttsd2siq): Likewise.
3146         (*sse2_cvtpd2dq): Likewise.
3147         (*sse2_cvttpd2dq): Likewise.
3148         (sse2_cvtsd2ss): Likewise.
3149         (sse2_cvtss2sd): Likewise.
3150         (*sse2_cvtpd2ps): Likewise.
3151         (sse2_cvtps2pd): Likewise.
3152
3153 2010-10-22  Richard Guenther  <rguenther@suse.de>
3154
3155         PR middle-end/46137
3156         * gimple-fold.c (gimplify_and_update_call_from_tree): Properly
3157         remove the virtual operands if they are not needed.
3158
3159 2010-10-22  Changpeng Fang  <changpeng.fang@amd.com>
3160
3161         * config/i386/i386.c (processor_costs bdver1_cost): Update
3162         insn costs and architectural parameters for bdver1.
3163
3164 2010-10-22  Richard Guenther  <rguenther@suse.de>
3165
3166         * gimple.h (gimple_register_canonical_type): Declare.
3167         * gimple.c (gimple_canonical_types): New global hashtable.
3168         (struct gimple_type_leader_entry_s): New type.
3169         (gimple_type_leader): New global cache.
3170         (gimple_lookup_type_leader): New function.
3171         (gtc_visit): Query the proper cache.
3172         (gimple_types_compatible_p): Likewise.
3173         (gimple_register_type): Use the new cache instead of TYPE_CANONICAL.
3174         (gimple_canonical_type_eq): New function.
3175         (gimple_register_canonical_type): Likewise.
3176         (print_gimple_types_stats): Adjust for gimple_canonical_types.
3177         (free_gimple_type_tables): Likewise.  Free gimple_type_leader.
3178         * tree-ssa.c (useless_type_conversion_p): Do not dispatch to
3179         gimple_types_compatible_p for LTO.
3180
3181 2010-10-22  Uros Bizjak  <ubizjak@gmail.com>
3182
3183         PR target/46098
3184         * config/i386/sse.md (*avx_movu<ssemodesuffix><avxmodesuffix>):
3185         Rename from avx_movu<ssemodesuffix><avxmodesuffix>.
3186         (avx_movu<ssemodesuffix><avxmodesuffix>): New expander.
3187         (*<sse>_movu<ssemodesuffix>): Rename from <sse>_movu<ssemodesuffix>.
3188         (<sse>_movu<ssemodesuffix>): New expander.
3189         (*avx_movdqu<avxmodesuffix>): Rename from avx_movdqu<avxmodesuffix>.
3190         (avx_movdqu<avxmodesuffix>): New expander.
3191         (*sse2_movdqu): Rename from sse2_movdqu.
3192         (sse2_movdqu): New expander.
3193
3194 2010-10-22  Richard Guenther  <rguenther@suse.de>
3195
3196         PR tree-optimization/45720
3197         * tree-vect-data-refs.c (vect_update_misalignment_for_peel):
3198         Handle negative step.
3199         (vect_enhance_data_refs_alignment): Likewise.
3200         * tree-vect-loop-manip.c (vect_gen_niters_for_prolog_loop): Likewise.
3201         (vect_create_cond_for_align_checks): Likewise.
3202         (vect_create_cond_for_alias_checks): Likewise.
3203
3204 2010-10-22  Ira Rosen  <irar@il.ibm.com>
3205
3206         PR tree-optimization/46126
3207         * tree-vect-stmts.c (vect_analyze_stmt): Pass NODE to
3208         vectorizable_shift in case of basic block vectorization.
3209
3210 2010-10-22  Joseph Myers  <joseph@codesourcery.com>
3211
3212         * target.h (enum opt_levels, struct default_options): New.
3213         * target.def (handle_ofast): Remove hook.
3214         (target_option.optimization): Change to
3215         target_option.optimization_table.
3216         * doc/tm.texi.in (TARGET_OPTION_OPTIMIZATION): Change to
3217         TARGET_OPTION_OPTIMIZATION_TABLE.
3218         (CAN_DEBUG_WITHOUT_FP): Remove.
3219         * doc/tm.texi: Regenerate.
3220         * opts.c (maybe_default_option, maybe_default_options,
3221         default_options_table): New.
3222         (default_options_optimization): Take extra parameters.  Don't
3223         assert that global_options and global_options_set are in use.  Use
3224         maybe_default_options.
3225         (decode_options): Pass extra parameters to
3226         default_options_optimization.
3227         * common.opt (falign-loops): Use value 0 with Var.
3228         (frerun-cse-after-loop, ftree-ter): Remove Init.
3229         * system.h (CAN_DEBUG_WITHOUT_FP, TARGET_HANDLE_OFAST,
3230         TARGET_OPTION_OPTIMIZATION): Remove.
3231         * targhooks.c (empty_optimization_table): New.
3232         * targhooks.h (empty_optimization_table): Declare.
3233         * toplev.c (process_options): Don't set flag_rerun_cse_after_loop.
3234         * config/alpha/alpha.c (alpha_option_optimization_table,
3235         TARGET_OPTION_OPTIMIZATION_TABLE): New.
3236         * config/alpha/alpha.h (CAN_DEBUG_WITHOUT_FP): Remove.
3237         * config/arm/arm.c (arm_option_optimization: Change to
3238         arm_option_optimization_table.
3239         (TARGET_OPTION_OPTIMIZATION): Change to
3240         TARGET_OPTION_OPTIMIZATION_TABLE.
3241         * config/arm/arm.h (CAN_DEBUG_WITHOUT_FP): Remove.
3242         * config/avr/avr.c (avr_option_optimization_table,
3243         TARGET_OPTION_OPTIMIZATION_TABLE): New.
3244         * config/avr/avr.h (CAN_DEBUG_WITHOUT_FP): Remove.
3245         * config/cris/cris.c (cris_option_optimization): Change to
3246         cris_option_optimization_table.
3247         (TARGET_OPTION_OPTIMIZATION): Change to
3248         TARGET_OPTION_OPTIMIZATION_TABLE.
3249         * config/crx/crx.c (crx_option_optimization): Change to
3250         crx_option_optimization_table.
3251         (TARGET_OPTION_OPTIMIZATION): Change to
3252         TARGET_OPTION_OPTIMIZATION_TABLE.
3253         * config/crx/crx.h (CAN_DEBUG_WITHOUT_FP): Remove.
3254         * config/fr30/fr30.c (fr30_option_optimization_table,
3255         TARGET_OPTION_OPTIMIZATION_TABLE): New.
3256         * config/fr30/fr30.h (CAN_DEBUG_WITHOUT_FP): Remove.
3257         * config/frv/frv.c (frv_option_optimization_table,
3258         TARGET_OPTION_OPTIMIZATION_TABLE): New.
3259         * config/frv/frv.h (CAN_DEBUG_WITHOUT_FP): Remove.
3260         * config/h8300/h8300.c (h8300_option_optimization): Change to
3261         h8300_option_optimization_table.
3262         (TARGET_OPTION_OPTIMIZATION): Change to
3263         TARGET_OPTION_OPTIMIZATION_TABLE.
3264         * config/h8300/h8300.h (CAN_DEBUG_WITHOUT_FP): Remove.
3265         * config/i386/i386.c (ix86_option_optimization): Change to
3266         ix86_option_optimization_table.
3267         (TARGET_OPTION_OPTIMIZATION): Change to
3268         TARGET_OPTION_OPTIMIZATION_TABLE.
3269         * config/i386/sol2-10.h (SUBTARGET_OPTIMIZATION_OPTIONS): Define
3270         as initializer.
3271         * config/ia64/ia64.c (ia64_option_optimization): Change to
3272         ia64_option_optimization_table.
3273         (TARGET_OPTION_OPTIMIZATION): Change to
3274         TARGET_OPTION_OPTIMIZATION_TABLE.
3275         * config/ia64/ia64.h (CAN_DEBUG_WITHOUT_FP): Remove.
3276         * config/ia64/vms.h (SUBTARGET_OPTIMIZATION_OPTIONS): Define as
3277         initializer.
3278         * config/iq2000/iq2000.c (iq2000_option_optimization_table,
3279         TARGET_OPTION_OPTIMIZATION_TABLE): New.
3280         * config/iq2000/iq2000.h (CAN_DEBUG_WITHOUT_FP): Remove.
3281         * config/lm32/lm32.c (lm32_option_optimization_table,
3282         TARGET_OPTION_OPTIMIZATION_TABLE): New.
3283         * config/lm32/lm32.h (CAN_DEBUG_WITHOUT_FP): Remove.
3284         * config/m32r/m32r.c (m32r_option_optimization): Change to
3285         m32r_option_optimization_table.
3286         (TARGET_OPTION_OPTIMIZATION): Change to
3287         TARGET_OPTION_OPTIMIZATION_TABLE.
3288         * config/m32r/m32r.h (SUBTARGET_OPTIMIZATION_OPTIONS,
3289         CAN_DEBUG_WITHOUT_FP): Remove.
3290         * config/mcore/mcore.c (mcore_option_optimization): Change to
3291         mcore_option_optimization_table.
3292         (TARGET_OPTION_OPTIMIZATION): Change to
3293         TARGET_OPTION_OPTIMIZATION_TABLE.
3294         * config/mep/mep.c (mep_option_optimization): Change to
3295         mep_option_optimization_table.
3296         (TARGET_OPTION_OPTIMIZATION): Change to
3297         TARGET_OPTION_OPTIMIZATION_TABLE.
3298         * config/mep/mep.h (CAN_DEBUG_WITHOUT_FP): Remove.
3299         * config/microblaze/microblaze.c
3300         (microblaze_option_optimization_table,
3301         TARGET_OPTION_OPTIMIZATION_TABLE): New.
3302         * config/microblaze/microblaze.h (CAN_DEBUG_WITHOUT_FP): Remove.
3303         * config/mips/mips.c (mips_option_optimization_table,
3304         TARGET_OPTION_OPTIMIZATION_TABLE): New.
3305         * config/mips/mips.h (CAN_DEBUG_WITHOUT_FP): Remove.
3306         * config/mmix/mmix.c (mmix_option_optimization): Change to
3307         mmix_option_optimization_table.
3308         (TARGET_OPTION_OPTIMIZATION): Change to
3309         TARGET_OPTION_OPTIMIZATION_TABLE.
3310         * config/mmix/mmix.h (CAN_DEBUG_WITHOUT_FP): Remove.
3311         * config/mn10300/mn10300.c (mn10300_option_optimization_table,
3312         TARGET_OPTION_OPTIMIZATION_TABLE): New.
3313         * config/mn10300/mn10300.h (CAN_DEBUG_WITHOUT_FP): Remove.
3314         * config/pa/pa.c (pa_option_optimization_table,
3315         TARGET_OPTION_OPTIMIZATION_TABLE): New.
3316         * config/pa/pa.h (CAN_DEBUG_WITHOUT_FP): Remove.
3317         * config/pdp11/pdp11.c (pdp11_option_optimization): Change to
3318         pdp11_option_optimization_table.
3319         (TARGET_OPTION_OPTIMIZATION): Change to
3320         TARGET_OPTION_OPTIMIZATION_TABLE.
3321         * config/picochip/picochip.c (picochip_option_optimization_table,
3322         TARGET_OPTION_OPTIMIZATION_TABLE): New.
3323         * config/picochip/picochip.h (CAN_DEBUG_WITHOUT_FP): Remove.
3324         * config/rs6000/rs6000.c (rs6000_option_optimization_table,
3325         TARGET_OPTION_OPTIMIZATION_TABLE): New.
3326         * config/rs6000/rs6000.h (CAN_DEBUG_WITHOUT_FP): Remove.
3327         * config/rx/rx.c (rx_option_optimization_table,
3328         TARGET_OPTION_OPTIMIZATION_TABLE): New.
3329         * config/rx/rx.h (CAN_DEBUG_WITHOUT_FP): Remove.
3330         * config/s390/s390.c (s390_option_optimization): Change to
3331         s390_option_optimization_table.
3332         (s390_option_override): Update comment.
3333         (TARGET_OPTION_OPTIMIZATION): Change to
3334         TARGET_OPTION_OPTIMIZATION_TABLE.
3335         * config/s390/s390.h (CAN_DEBUG_WITHOUT_FP): Remove.
3336         * config/score/score.c (score_option_optimization_table,
3337         TARGET_OPTION_OPTIMIZATION_TABLE): New.
3338         * config/score/score.h (CAN_DEBUG_WITHOUT_FP): Remove.
3339         * config/sh/sh.c (sh_option_optimization): Change to
3340         sh_option_optimization_table.
3341         (TARGET_OPTION_OPTIMIZATION): Change to
3342         TARGET_OPTION_OPTIMIZATION_TABLE.
3343         (sh_option_override): Set MASK_SAVE_ALL_TARGET_REGS here.
3344         (sh_option_override, expand_block_move, multcosts, find_barrier,
3345         barrier_align): Use optimize_size instead of TARGET_SMALLCODE.
3346         * config/sh/sh.h (CAN_DEBUG_WITHOUT_FP): Remove.
3347         (LOOP_ALIGN, TRAMPOLINE_ALIGNMENT, MOVE_BY_PIECES_P,
3348         STORE_BY_PIECES_P, SH_DYNAMIC_SHIFT_COST): Use optimize_size
3349         instead of TARGET_SMALLCODE.
3350         * config/sh/sh.opt (mspace): Make into an alias for -Os.
3351         * config/sparc/sparc.c (sparc_option_optimization_table,
3352         TARGET_OPTION_OPTIMIZATION_TABLE): New.
3353         * config/sparc/sparc.h (CAN_DEBUG_WITHOUT_FP): Remove.
3354         * config/stormy16/stormy16.c (xstorym16_option_optimization_table,
3355         TARGET_OPTION_OPTIMIZATION_TABLE): New.
3356         * config/stormy16/stormy16.h (CAN_DEBUG_WITHOUT_FP): Remove.
3357         * config/v850/v850.c (v850_option_optimization): Change to
3358         v850_option_optimization_table.
3359         (TARGET_OPTION_OPTIMIZATION): Change to
3360         TARGET_OPTION_OPTIMIZATION_TABLE.
3361         * config/v850/v850.h (CAN_DEBUG_WITHOUT_FP): Remove.
3362         * config/xtensa/xtensa.c (xtensa_option_optimization): Change to
3363         xtensa_option_optimization_table.
3364         (TARGET_OPTION_OPTIMIZATION): Change to
3365         TARGET_OPTION_OPTIMIZATION_TABLE.
3366         * config/xtensa/xtensa.h (CAN_DEBUG_WITHOUT_FP): Remove.
3367
3368 2010-10-21  Iain Sandoe  <iains@gcc.gnu.org>
3369
3370         Based on the CFString implementation in FSF apple/trunk branch.
3371
3372         * target.def (objc_construct_string): New Hook.
3373         * doc/tm.texi (objc_construct_string): Document.
3374         * doc/tm.texi.in (TARGET_OBJC_CONSTRUCT_STRING): New.
3375         * config/t-darwin: Amend build rules for darwin.o.
3376         * config/darwin.opt: Add cfstrings flags.
3377         * config/darwin-c.c: Define __CONSTANT_CFSTRINGS__.
3378         (darwin_objc_construct_string): New.
3379         * config/i386/darwin.h (SUBTARGET_INIT_BUILTINS): Define.
3380         * config/i386/i386.c (ix86_init_builtins): Add SUBTARGET_INIT_BUILTINS.
3381         * config/darwin-protos.h (darwin_init_cfstring_builtins): New prototype.
3382         (darwin_fold_builtin): Likewise.
3383         (darwin_build_constant_cfstring): Likewise.
3384         (darwin_objc_construct_string): Likewise.
3385         (darwin_cfstring_p): Likewise.
3386         (darwin_enter_string_into_cfstring_table): Likewise.
3387         * config/rs6000/darwin.h (SUBTARGET_INIT_BUILTINS) Update for CFString.
3388         * config/darwin.c (darwin_running_cxx): New var.
3389         (machopic_select_section): Return cfstring_constant_object_section.
3390         (darwin_override_options): Set darwin_running_cxx.
3391         (add_builtin_field_decl): New.
3392         (darwin_init_cfstring_builtins): New.
3393         (darwin_build_constant_cfstring): New.
3394         (darwin_fold_builtin): New.
3395         (cfstring_hash): New.
3396         (cfstring_eq): New.
3397         (darwin_enter_string_into_cfstring_table): New.
3398         * config/darwin-sections.def (cfstring_constant_object_section): New.
3399         * config/darwin.h (TARGET_FOLD_BUILTIN): Define.
3400         (TARGET_OBJC_CONSTRUCT_STRING): Define.
3401
3402 2010-10-21  Nathan Froyd  <froydnj@codesourcery.com>
3403
3404         * config/alpha/alpha.c (alpha_build_builtin_va_list): Use
3405         TYPE_STUB_DECL instead of TREE_CHAIN.
3406         * config/i386/i386.c (ix86_build_builtin_va_list_abi): Likewise.
3407         * config/rs6000/rs6000.c (rs6000_build_builtin_va_list): Likewise.
3408         * config/s390/s390.c (s390_build_builtin_va_list): Likewise.
3409         * config/sh/sh.c (sh_build_builtin_va_list): Likewise.
3410         * config/spu/spu.c (spu_build_builtin_va_list): Likewise.
3411         * config/stormy16/stormy16.c (xstormy16_build_builtin_va_list):
3412         Likewise.
3413         * config/xtensa/xtensa.c (xtensa_build_builtin_va_list): Likewise.
3414
3415 2010-10-22  Jie Zhang  <jie@codesourcery.com>
3416
3417         * expr.c (emit_group_load_1): Update calls to extract_bit_field.
3418         (copy_blkmode_from_reg): Likewise.
3419         (read_complex_part): Likewise.
3420         (expand_expr_real_1): Calculate packedp and pass it to
3421         extract_bit_field.
3422         * expr.h (extract_bit_field): Update declaration.
3423         * calls.c (store_unaligned_arguments_into_pseudos): Update call
3424         to extract_bit_field.
3425         * expmed.c (extract_fixed_bit_field): Update calls to
3426         extract_fixed_bit_field.
3427         (store_split_bit_field): Likewise.
3428         (extract_bit_field_1): Add new argument packedp.
3429         (extract_bit_field): Add new argument packedp.
3430         (extract_fixed_bit_field): Add new argument packedp and let
3431         packed attribute override volatile.
3432         * stmt.c (expand_return): Update call to extract_bit_field.
3433
3434 2010-10-21  Nathan Froyd  <froydnj@codesourcery.com>
3435
3436         * config/spu/spu.c (spu_function_arg): Dereference CUM parameter.
3437
3438 2010-10-21  Nathan Froyd  <froydnj@codesourcery.com>
3439
3440         * ddg.c (add_cross_iteration_register_deps): Call gcc_assert instead
3441         of gcc_checking_assert.
3442         * sel-sched.c (code_motion_process_successors): Likewise.
3443
3444 2010-10-21  Eric Botcazou  <ebotcazou@adacore.com>
3445
3446         * cfgcleanup.c (try_forward_edges): Do not throw away previous steps
3447         when stopping because of a different locus on edge or insn.
3448         (try_optimize_cfg): Add comment.
3449         * cfgrtl.c (rtl_merge_blocks): Tweak log message.  If the destination
3450         block is a forwarder block, propagate locus on the edge.
3451         (cfg_layout_merge_blocks): Likewise.
3452
3453 2010-10-21  Uros Bizjak  <ubizjak@gmail.com>
3454
3455         PR target/45946
3456         * config/i386/i386.md (*pushti2): New insn pattern.
3457         (pushti2 splitter): New insn splitter.
3458         (*push<mode>2): Macroize insn pattern from *push{di,ti}2 using
3459         DWI mode iterator.
3460
3461 2010-10-21  Paul Koning  <ni1d@arrl.net>
3462
3463         * config/pdp11/pdp11-protos.md (arith_operand,
3464         const_immediate_operand, expand_shift_operand,
3465         immediate15_operand): Delete
3466         * config/pdp11/pdp11.c: Ditto.
3467         * config/pdp11/pdp11.h (REG_CLASS_FROM_LETTER,
3468         CONST_OK_FOR_LETTER_P, CONST_DOUBLE_OK_FOR_LETTER_P,
3469         EXTRA_CONSTRAINT): Delete.
3470         * config/pdp11/pdp11.md (various): Use standard constraints
3471         instead of removed ones.
3472         * config/pdp11/constraints.md: New file.
3473         * config/pdp11/predicates.md: New file.
3474
3475 2010-10-21  Bingfeng Mei  <bmei@broadcom.com>
3476
3477         PR c/45834
3478         * alias.c (true_dependence_1): Remove obsolete check for QImode.
3479         (may_alias_p): Ditto.
3480
3481 2010-10-21  Martin Jambor  <mjambor@suse.cz>
3482
3483         PR tree-optimization/45875
3484         * tree.c (get_binfo_at_offset): Remove initial zero offset test.
3485
3486 2010-10-21  Nathan Froyd  <froydnj@codesourcery.com>
3487
3488         * tree-into-ssa.c (rewrite_update_enter_block): Remove unused
3489         variables.
3490         (create_new_def_for): Likewise.
3491
3492 2010-10-21  Nick Clifton  <nickc@redhat.com>
3493
3494         * config/mn10300/mn10300.c: Fold code to 80-character width.
3495         Replace GET_CODE (foo) == REG with REG_P (foo).  Likewise for
3496         MEM, CONST_INT and CONST_DOUBLE.
3497         (targetm): Move initialization to end of file.
3498         (print_operand): Rename to mn10300_print_operand.
3499         (print_operand_address): Rename to mn10300_print_operand_address.
3500         (can_use_return_insn): Rename to mn10300_can_use_return_insn.
3501         (expand_prologue): Rename to mn10300_expand_prologue.
3502         (expand_epilogue): Rename to mn10300_expand_epilogue.
3503         (initial_offset): Rename to mn10300_initial_offset.
3504         (function_arg): Rename to mn10300_function_arg.
3505         (mask_ok_for_mem_btst): Rename to mn10300_mask_ok_for_mem_btst.
3506         (symbolic_operand): Rename to mn10300_symbolic_operand.
3507         (legitimize_pic_address): Rename to mn10300_legitimize_pic_address.
3508         (legitimate_pic_operand_p): Rename to mn10300_legitimate_pic_operand_p.
3509         * config/mn10300/mn10300-protos.h: Update prototypes.
3510         * config/mn10300/mn10300.h: Fold code to 80-character width.
3511         Replace GET_CODE (foo) == REG with REG_P (foo).  Likewise for
3512         MEM, CONST_INT and CONST_DOUBLE.
3513         (CPP_SPEC): Move to...
3514         (TARGET_CPU_CPP_BUILTINS): ... here.
3515         * config/mn10300/mn10300.md: Fold code to 80-character width.
3516         Replace GET_CODE (foo) == REG with REG_P (foo).  Likewise for
3517         MEM, CONST_INT and CONST_DOUBLE.
3518
3519 2010-10-21  Ira Rosen  <irar@il.ibm.com>
3520
3521         PR tree-optimization/46049
3522         PR tree-optimization/46052
3523         * tree-vectorizer.h (enum stmt_vec_info_type): Add new value for shift.
3524         (vect_get_slp_defs): Add arguments.
3525         * tree-vect-loop.c (vect_create_epilog_for_reduction): Pass scalar
3526         operands to vect_get_slp_defs.
3527         (vectorizable_reduction): Fix comment, pass scalar operands to
3528         vect_get_slp_defs.
3529         * tree-vect-stmts.c (vect_get_vec_def_for_operand): Use operand's
3530         type to determine number of units in the created vector.
3531         (vect_get_vec_defs): Pass scalar operands to vect_get_slp_defs.
3532         (vectorizable_conversion): Fix comment.
3533         (vectorizable_shift): New function.
3534         (vectorizable_operation): Move code that handles shifts to
3535         vectorizable_shift.
3536         (vectorizable_type_demotion): Fix comment, pass scalar operands to
3537         vect_get_slp_defs.
3538         (vectorizable_type_promotion, vectorizable_store): Likewise.
3539         (vectorizable_condition): Fix comment.
3540         (vect_analyze_stmt): Call vectorizable_shift.
3541         (vect_transform_stmt): Likewise.
3542         * tree-vect-slp.c (vect_get_constant_vectors): Add new argument.
3543         Use it as the operand to create vectors for, except reduction
3544         initial definition and store.  Use operands type.
3545         (vect_get_slp_defs): Add new arguments.  Pass them to
3546          vect_get_constant_vectors.
3547
3548 2010-10-21  Nathan Froyd  <froydnj@codesourcery.com>
3549
3550         * basic-block.h (single_succ_edge): Use gcc_checking_assert.
3551         (single_pred_edge, ei_container, ei_next, ei_prev): Likewise.
3552         * cfghooks.c (fixup_reorder_chain): Likewise.
3553         * cfgrtl.c (cfg_layout_merge_blocks): Likewise.
3554         * cgraph.c (cgraph_add_thunk): Likewise.
3555         (cgraph_create_edge_1): Likewise.
3556         (cgraph_create_virtual_clone): Likewise.
3557         * ddg.c (add_cross_iteration_register_deps): Likewise.
3558         * dwarf2out.c (modified_type_die): Likewise.
3559         * emit-rtl.c (set_mem_alias_set): Likewise.
3560         * ggc-zone.c (zone_allocate_marks): Likewise.
3561         * gimple-iterator.c (gsi_move_to_bb_end): Likewise.
3562         * gimple.c (iterative_hash_gimple_type): Likewise.
3563         * graphite-scop-detection.c (create_single_entry_edge): Likewise.
3564         (create_single_exit_edge): Likewise.
3565         * haifa-sched.c (choose_ready): Likewise.
3566         * lto-streamer-in.c (input_gimple_stmt): Likewise.
3567         * passes.c (execute_todo): Likewise.
3568         * sched-ebb.c (begin_schedule_ready): Likewise.
3569         * sel-sched.c (code_motion_process_successors): Likewise.
3570         * tree-call-cdce.c (gen_conditions_for_pow): Likewise.
3571         * tree-cfg-cleanup.c (tree_forwarder_block_p): Likewise.
3572         * tree-flow-inline.h (link_imm_use, move_use_after_head): Likewise.
3573         (phi_arg_index_from_use, phi_ssa_name_p): Likewise.
3574         * tree-into-ssa.c (insert_updated_phi_nodes_for): Likewise.
3575         * tree-ssa-coalesce.c (ssa_conflicts_test_p): Likewise.
3576         (ssa_conflicts_add): Likewise.
3577         * tree-ssa-copy.c (replace_exp): Likewise.
3578         * tree-ssa-dom.c (eliminate_redundant_computations): Likewise.
3579         * tree-ssa-forwprop.c (simple_gimple_switch): Likewise.
3580         * tree-ssa-math-opts.c (execute_cse_reciprocals): Likewise.
3581         * tree-ssa-pre.c (bitmap_value_insert_into_set): Likewise.
3582         (compute_antic): Likewise.
3583         * tree-ssa-ter.c (add_to_partition_kill_list): Likewise.
3584         (add_dependence): Likewise.
3585         (process_replaceable, kill_expr, find_replaceable_exprs): Likewise.
3586         * tree-vrp.c (supports_overflow_infinity): Likewise.
3587         (make_overflow_infinity, negative_overflow_infinity): Likewise.
3588         (avoid_overflow_infinity, register_new_assert_for): Likewise.
3589         (process_assert_insertions_for): Likewise.
3590         * var-tracking.c (dv_is_value_p, dv_as_decl, dv_from_decl): Likewise.
3591         (dv_from_value, variable_union, find_loc_in_1pdv): Likewise.
3592         (intersect_loc_chains, variable_merge_over_cur): Likewise.
3593
3594 2010-10-21  Nathan Froyd  <froydnj@codesourcery.com>
3595
3596         * cfgloop.c (flow_loops_find): Call bb_has_abnormal_pred.
3597         * reload1.c (has_nonexceptional_receiver): Likewise.
3598         * tree-into-ssa.c (rewrite_update_enter_block): Likewise.
3599         (create_new_def_for): Likewise.
3600         * tree-cfgcleanup.c (remove_forwarder_block): Likewise.
3601         (merge_phi_nodes): Likewise.
3602         (has_abnormal_incoming_edge_p): Delete.
3603
3604 2010-10-21  H.J. Lu  <hongjiu.lu@intel.com>
3605
3606         * config/i386/sse.md (ssescalarmodesuffix): Add V8SI and V4DI.
3607
3608 2010-10-21  Richard Guenther  <rguenther@suse.de>
3609             Michael Matz  <matz@suse.de>
3610
3611         PR tree-optimization/45764
3612         * tree-vect-data-refs.c (vect_compute_data_ref_alignment):
3613         Adjust initial misalignment for negative DR_STEP.
3614         (vect_find_same_alignment_drs): Two DRs with different DR_STEP
3615         do not have the same alignment over the whole iteration domain.
3616
3617 2010-10-21  Richard Guenther  <rguenther@suse.de>
3618
3619         PR tree-optimization/46111
3620         * tree-parloops.c (take_address_of): Re-organize for MEM_REF.
3621
3622 2010-10-21  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
3623
3624         * config/s390/s390.md (*xordi3_cc): Mark xgrk as z196 only.
3625
3626 2010-10-21  Tristan Gingold  <gingold@adacore.com>
3627
3628         * config/vms/vms-crtl.h (CRTL_NAMES): Add new translations.
3629         * config/vms/vms-crtl-64.h (CRTL_NAMES): Ditto.
3630
3631 2010-10-21  Tristan Gingold  <gingold@adacore.com>
3632
3633         * config/alpha/vms-unwind.h (alpha_vms_fallback_frame_state): Set
3634         signal_frame.
3635         * config/alpha/alpha.c (alpha_function_arg): Adjust call.
3636
3637 2010-10-21  Tristan Gingold  <gingold@adacore.com>
3638
3639         * config/ia64/vms64.h (TARGET_DEFAULT): Add MASK_FUSED_MADD.
3640         * config/ia64/vms.h (TARGET_DEFAULT): Ditto.
3641
3642 2010-10-20  Nathan Froyd  <froydnj@codesourcery.com>
3643
3644         * basic-block.h (find_fallthru_edge): Define.
3645         * cfgcleanup.c (merge_blocks_move): Use it.
3646         (try_crossjump_bb): Likewise.
3647         * cfglayout.c (fixup_reorder_chains): Likewise.
3648         (fixup_fallthru_exit_predecessor): Likewise.
3649         * cfgrtl.c (rtl_split_edge): Likewise.
3650         (rtl_verify_flow_info): Likewise.
3651         * function.c (thread_prologue_and_epilogue_insns): Likewise.
3652         * gimple-pretty-print.c (dump_implicit_edges): Likewise.
3653         * ifcvt.c (block_fallthru): Likewise.
3654         * reload1.c (fixup_abnormal_edges): Likewise.
3655         * sched-ebb.c (being_schedule_ready): Likewise.
3656         (schedule_ebb): Likwise.
3657         * sched-rgn.c (find_single_block_region): Likewise.
3658         * sel-sched-ir.c (bb_ends_ebb_p): Likewise.
3659         * tree-complex.c (expand_complex_move): Likewise.
3660         * sched-int.h (find_fallthru_edge): Rename to...
3661         (find_fallthru_edge_from): ...this.
3662         * haifa-sched.c (find_fallthru_edge): Rename to...
3663         (find_fallthru_edge_from): ...this.  Use new find_fallthru_edge.
3664         (init_before_recovery): Call find_fallthru_edge_from.
3665         * sel-sched-ir.c (merge_fences): Likewise.
3666         * sel-sched.c (in_fallthru_bb_p): Likewise.
3667         (move_cond_jump): Likewise.
3668
3669 2010-10-20  Paul Koning  <ni1d@arrl.net>
3670
3671         * config/pdp11/pdp11.md (various): Fix conditions on a number of
3672         insn to check for target 11/40 or higher.
3673
3674 2010-10-20  Nicola Pero  <nicola.pero@meta-innovation.com>
3675
3676         * parser.c (c_parser_objc_method_type): Mark inline.  Return a
3677         bool instead of a tree.
3678         (c_parser_objc_method_decl): Added bool argument.  Updated call to
3679         objc_build_method_signature.
3680         (c_parser_objc_method_definition): Do not call
3681         objc_set_method_type.  Updated calls to c_parser_objc_method_type,
3682         c_parser_objc_method_decl and objc_start_method_definition.
3683         (c_parser_objc_methodproto): Do not call objc_set_method_type.
3684         Updated calls to c_parser_objc_method_type,
3685         c_parser_objc_method_decl and objc_add_method_declaration.
3686
3687 2010-10-20  Jakub Jelinek  <jakub@redhat.com>
3688
3689         PR tree-optimization/45919
3690         * tree-ssa-ccp.c (fold_nonarray_ctor_reference): Handle flexible
3691         array members.
3692
3693         PR tree-optimization/46066
3694         * tree-parloops.c (create_parallel_loop): Use gsi_last_nondebug_bb
3695         instead of gsi_last_bb.
3696
3697 2010-10-20  DJ Delorie  <dj@redhat.com>
3698
3699         * config/m32c/m32c.c (m32c_option_override): Always disable
3700         function-cse in 16-bit mode.  Indirect calls are always worse than
3701         direct calls as there is no 16-bit indirect call opcode.
3702         (m32c_override_options_after_change): New, likewise.
3703
3704 2010-10-20  Nathan Froyd  <froydnj@codesourcery.com>
3705
3706         * ifcvt.c (noce_emit_cmove): If both of the values are SUBREGs, try
3707         emitting the conditional move in the inner mode of the SUBREG.
3708
3709 2010-10-20  Anatoly Sokolov  <aesok@post.ru>
3710
3711         * config/ia64/ia64.h (PREFERRED_RELOAD_CLASS): Remove macros.
3712         * config/ia64/ia64-protos.h (ia64_preferred_reload_class): Remove.
3713         * config/ia64/ia64.c (TARGET_PREFERRED_RELOAD_CLASS): Define.
3714         (ia64_preferred_reload_class): Make static.  Change rclass argument
3715         and result types from enum reg_class to reg_class_t.
3716
3717 2010-10-20  Pat Haugen  <pthaugen@us.ibm.com>
3718
3719         * tree-ssa-ter.c (find_replaceable_in_bb): Allow replacement over
3720         call for single operand expression.
3721
3722 2010-10-20  Eric Botcazou  <ebotcazou@adacore.com>
3723
3724         * tree-optimize.c (execute_fixup_cfg): Purge dead abnormal call edges
3725         if there is a call statement to pure or const function in the block.
3726
3727 2010-10-20  Paul Koning  <pkoning@equallogic.com>
3728
3729         Fix several build errors for pdp11 target.
3730         * config/pdp11/pdp11.md (*cmpdf): Fix tstd operands.
3731         (cbranchdf4): Conditional on TARGET_FPU.
3732         (movdf): Ditto; correct alternatives check.
3733         (movmemhi): Fix predicate and constraint.
3734         * config/pdp11/pdp11.h (HARD_REGNO_MODE_OK): Handle 64 bit mode.
3735
3736 2010-10-20  Richard Guenther  <rguenther@suse.de>
3737
3738         PR lto/45667
3739         * lto-streamer-out.c (output_gimple_stmt): Fix typo.
3740         * tree-cfg.c (verify_gimple_call): Properly get the call fndecl.
3741         (verify_gimple_assign_single): Disable ADDR_EXPR type check
3742         when in LTO.
3743
3744 2010-10-20  Vladimir Makarov  <vmakarov@redhat.com>
3745
3746         PR fortran/42169
3747         * ira-emit.c (store_can_be_removed_p): Return false instead of
3748         gcc_unreachable.
3749
3750 2010-10-20  Dmitry Melnik  <dm@ispras.ru>
3751
3752         * fold-const.c (fold_binary_loc): New transformation.
3753
3754 2010-10-20  H.J. Lu  <hongjiu.lu@intel.com>
3755
3756         PR target/46085
3757         * config/i386/sse.md (reduc_splus_v8sf): Updated.
3758         (reduc_splus_v4df): Likewise.
3759
3760 2010-10-20  Richard Guenther  <rguenther@suse.de>
3761
3762         PR tree-optimization/45860
3763         * tree-ssa-phiopt.c (cond_store_replacement): Do not do
3764         conditional store replacement for non-register type stores.
3765
3766 2010-10-20  Eric Botcazou  <ebotcazou@adacore.com>
3767
3768         * stor-layout.c (skip_simple_constant_arithmetic): New function.
3769         (self_referential_size): Use it instead of skip_simple_arithmetic.
3770
3771 2010-10-20  Olivier Hainque  <hainque@adacore.com>
3772
3773         * config/rs6000/rs6000.c (rs6000_reg_live_or_pic_offset_p):
3774         If the current function calls eh_return, claim live all registers
3775         that we need to check for liveness otherwise.
3776
3777 2010-10-20  Nicola Pero  <nicola.pero@meta-innovation.com>
3778
3779         * c-decl.c (c_write_global_declarations): Call
3780         objc_write_global_declarations when compiling Objective-C.
3781         * c-lang.c (finish_file): Removed.
3782
3783 2010-10-19  DJ Delorie  <dj@redhat.com>
3784
3785         * doc/tm.texi.in (TARGET_ASM_JUMP_ALIGN_MAX_SKIP): New.
3786         (TARGET_ASM_LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP): Change to hook.
3787         (TARGET_ASM_LOOP_ALIGN_MAX_SKIP): Likewise.
3788         (TARGET_ASM_LABEL_ALIGN_MAX_SKIP): Likewise.
3789         * doc/tm.texi: Regenerate.
3790         * targhooks.h (default_label_align_after_barrier_max_skip,
3791         default_loop_align_max_skip, default_label_align_max_skip,
3792         default_jump_align_max_skip): Declare.
3793         * target.def (label_align_after_barrier_max_skip): New.
3794         (loop_align_max_skip): New.
3795         (label_align_max_skip): New.
3796         (jump_align_max_skip): New.
3797         * system.h (poison): Add those macros to the list.
3798         * final.c (LABEL_ALIGN_MAX_SKIP): Remove.
3799         (LOOP_ALIGN_MAX_SKIP): Remove.
3800         (LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP): Remove.
3801         (JUMP_ALIGN_MAX_SKIP): Remove.
3802         (default_label_align_after_barrier_max_skip): New.
3803         (default_loop_align_max_skip): New.
3804         (default_label_align_max_skip): New.
3805         (default_jump_align_max_skip): New.
3806         (compute_alignments): Use the new hooks.
3807         (shorten_branches): Likewise.
3808
3809 2010-10-19  Richard Henderson  <rth@redhat.com>
3810
3811         * config/i386/i386.c (bdesc_multi_arg): Use fma4i_fmadd_<mode>.
3812         * config/i386/sse.md (fma<mode>4): Enable for FMA & SSE_MATH.
3813         (fma4i_fmadd_<mode>): New.
3814         (*split_fma, *split_fms, *split_fnma, *split_fnms): Rename from
3815         fma4_fm*_<mode> and adjust to be pre-reload splitters to the
3816         standard fma patterns.
3817         (fmaddsub_<mode>): Rename from fma4i_fmaddsub_<mode> and
3818         enable for FMA.
3819         (*fma_fmadd_<mode>, *fma_fmsub_<mode>): New.
3820         (*fma_fmadd_<mode>, *fma_fmsub_<mode>): New.
3821         (*fma_fmaddsub_<mode>, *fma_fmsubadd_<mode>): New.
3822
3823 2010-10-19  Paul Koning  <pkoning@equallogic.com>
3824
3825         * lower-subreg.c (resolve_shift_zext): Delete conditional code for
3826         WORDS_BIG_ENDIAN != BYTES_BIG_ENDIAN.
3827
3828 2010-10-19  Richard Henderson  <rth@redhat.com>
3829
3830         * config/ia64/ia64.md (fmasf4, *fmssf4, *nfmasf4): New.
3831         (fmadf4, *fmsdf4, *nfmadf4): New.
3832         (fmaxf4, *fmsxf4, *nfmaxf4): New.
3833
3834 2010-10-19  Michael Eager  <eager@eagercon.com>
3835
3836         * config/microblaze/microblaze.c (TARGET_EXCEPT_UNWIND_INFO):
3837         Use sjlj unwind info for exceptions.
3838
3839 2010-10-19  Francois-Xavier Coudert<fxcoudert@gcc.gnu.org>
3840
3841         PR fortran/43414
3842         * dwarf2out.c (add_calling_convention_attribute): Flag main
3843         Fortran subroutine with DW_AT_main_subprogram.
3844
3845 2010-10-19  Nick Clifton  <nickc@redhat.com>
3846
3847         * config/rx/rx.c (rx_function_value): Small integer types are
3848         promoted to SImode.
3849         (rx_promote_function_mode): New function.
3850         (TARGET_PROMOTE_FUNCTION_MODE): Define.
3851
3852 2010-10-19  Nick Clifton  <nickc@redhat.com>
3853
3854         * config/mep/mep.c (mep_print_operand): Use
3855         targetm.strip_name_encoding.
3856         (mep_output_aligned_common): Likewise.
3857
3858 2010-10-19  Basile Starynkevitch  <basile@starynkevitch.net>
3859
3860         * gengtype.c (new_structure): Remove ad-hoc "location_s" processing.
3861
3862 2010-10-18  Richard Henderson  <rth@redhat.com>
3863
3864         * simplify-rtx.c (simplify_ternary_operation) [FMA]: Simplify
3865         (fma (neg a) (neg b) c) and (fma a (neg b) c).
3866
3867 2010-10-18  Richard Henderson  <rth@redhat.com>
3868
3869         * config/i386/i386.c (IX86_BUILTIN_VFMSUBSS, IX86_BUILTIN_VFMSUBSD,
3870         IX86_BUILTIN_VFMSUBPS, IX86_BUILTIN_VFMSUBPD,
3871         IX86_BUILTIN_VFMSUBADDPS, IX86_BUILTIN_VFMSUBADDPD,
3872         IX86_BUILTIN_VFNMADDSS, IX86_BUILTIN_VFNMADDSD,
3873         IX86_BUILTIN_VFNMADDPS, IX86_BUILTIN_VFNMADDPD,
3874         IX86_BUILTIN_VFNMSUBSS, IX86_BUILTIN_VFNMSUBSD,
3875         IX86_BUILTIN_VFNMSUBPS, IX86_BUILTIN_VFNMSUBPD,
3876         IX86_BUILTIN_VFMSUBADDPS256, IX86_BUILTIN_VFMSUBADDPD256,
3877         IX86_BUILTIN_VFNMADDPS256, IX86_BUILTIN_VFNMADDPD256,
3878         IX86_BUILTIN_VFNMSUBPS256, IX86_BUILTIN_VFNMSUBPD256): Remove.
3879         (bdesc_multi_arg): Remove the corresponding builtins.
3880         * config/i386/i386.md (UNSPEC_FMA4_INTRINSIC): Remove.
3881         (UNSPEC_FMA4_FMSUBADD): Remove.
3882         (UNSPEC_FMADDSUB): Rename from UNSPEC_FMA4_FMADDSUB.
3883         * config/i386/sse.md (FMA4MODEF4): Remove.
3884         (FMAMODE): Add.
3885         (fma<mode>4): New expander.
3886         (*fma4i_fmadd_<mode>): Macroize from fma4i_fmadd<mode>4 patterns,
3887         and use FMA rtx code instead of UNSPEC_FMA4_INTRINSIC.
3888         (*fma4i_fmsub_<mode>): Similarly.
3889         (*fma4i_fnmadd_<mode>): Similarly.
3890         (*fma4i_fnmsub_<mode>): Similarly.
3891         (fma4i_vmfmadd_<mode>): Scalar patterns zero-extend, not merge
3892         with the first operand.
3893         (fma4i_fmaddsub_<mode>): Represent with UNSPEC_FMADDSUB instead
3894         of explicit arithmetic.  Macroize with AVXMODEF2P.
3895         (*fma4i_fmsubadd_<mode>): Represent with UNSPEC_FMADDSUB + NEG.
3896         (xop_frcz<mode>2): Macroize with FMAMODE.
3897         (xop_vmfrcz<mode>2): Scalar patterns zero-extend, not merge with
3898         the first operand.
3899         * config/i386/fma4intrin.h (_mm_msub_ps): Use vfmadd intrinsic with
3900         extra negations.
3901         (_mm_msub_pd, _mm_msub_ss, _mm_msub_sd): Likewise.
3902         (_mm_nmacc_ps, _mm_nmacc_pd, _mm_nmacc_ss, _mm_nmacc_sd): Likewise.
3903         (_mm_nmsub_ps, _mm_nmsub_pd, _mm_nmsub_ss, _mm_nmsub_sd): Likewise.
3904         (_mm256_msub_ps, _mm256_msub_pd): Likewise.
3905         (_mm256_nmacc_ps, _mm256_nmacc_pd): Likewise.
3906         (_mm256_nmsub_ps, _mm256_nmsub_pd): Likewise.
3907         (_mm_msubadd_ps): Use vfmaddsub intrinsic with extra negation.
3908         (_mm_msubadd_pd, _mm256_msubadd_ps, _mm256_msubadd_pd): Likewise.
3909
3910 2010-10-18  Bernd Schmidt  <bernds@codesourcery.com>
3911
3912         PR rtl-optimization/45966
3913         * combine.c (try_combine): If added_sets_2, deal with the case
3914         where i0 feeds i1 and i1 feeds i2.
3915
3916 2010-10-18  Jan Hubicka  <jh@suse.cz>
3917
3918         * ipa.c (cgraph_externally_visible_p): Handle externally visible and
3919         preserve flags before trying to guess on visibility.
3920         (varpool_externally_visible_p): New function.
3921         (function_and_variable_visibility): Use it.
3922
3923 2010-10-18  Nicola Pero  <nicola.pero@meta-innovation.com>
3924
3925         Implemented parsing @synthesize and @dynamic for Objective-C.
3926         * c-parser.c (c_parser_external_declaration): Recognize
3927         RID_AT_SYNTHESIZE and RID_AT_DYNAMIC.
3928         (c_parser_objc_at_synthesize_declaration): New.
3929         (c_parser_objc_at_dynamic_declaration): New.
3930
3931 2010-10-18  Nicola Pero  <nicola.pero@meta-innovation.com>
3932
3933         * c-parser.c (c_parser_objc_class_declaration): After finding an
3934         error, parse the whole declaration then reset parser->error.
3935
3936 2010-10-18  Michael Meissner  <meissner@linux.vnet.ibm.com>
3937
3938         PR target/46041
3939         * tree.h (mode_has_fma): Delete, move to c-cppbuiltins.c.
3940         * builtins.c (mode_has_fma): Ditto.
3941
3942 2010-10-18  Steve Ellcey  <sje@cup.hp.com>
3943
3944         PR target/36898
3945         PR middle-end/43760
3946         * config/ia64/ia64.c (rws_access_regno): Remove predicate check.
3947
3948 2010-10-18  Joseph Myers  <joseph@codesourcery.com>
3949
3950         * config/i386/i386.c (ix86_option_override_internal): Define and
3951         use USE_X86_64_FRAME_POINTER for 64-bit flag_omit_frame_pointer
3952         default.
3953         * config/i386/sol2-10.h (SUBTARGET_OVERRIDE_OPTIONS): Remove.
3954         (USE_IX86_FRAME_POINTER, USE_X86_64_FRAME_POINTER): Define.
3955
3956 2010-10-18  Nicola Pero  <nicola.pero@meta-innovation.com>
3957
3958         Merge from 'apple/trunk' branch on FSF servers.
3959         * c-parser.c (c_parser_objc_type_name): Adapted to new parser the
3960         following Objective-C change:
3961
3962         2005-10-10  Fariborz Jahanian  <fjahanian@apple.com>
3963
3964         Radar 4301047
3965         * c-parse.in (objc_quals): Build objc qualifier list same way
3966         as gcc-3.3
3967
3968 2010-10-18  Jan Hubicka  <jh@suse.cz>
3969
3970         * ipa.c (cgraph_externally_visible_p, varpool_externally_visible_p,
3971         function_and_variable_visibility): Revert accidental commit.
3972
3973 2010-10-18  Nicola Pero  <nicola.pero@meta-innovation.com>
3974
3975         Merge from 'apple/trunk' branch on FSF servers.
3976         * c-parser.c (c_parser_typeof_specifier): Adapted to new parser
3977         the following Objective-C change:
3978
3979         2005-10-07  Fariborz Jahanian  <fjahanian@apple.com>
3980
3981         Radar 4204796
3982         * c-parse.in (typespec_nonreserved_nonattr): Remove volatile from
3983         'volatilized' type used in a typeof operator.
3984
3985 2010-10-18  Eric Botcazou  <ebotcazou@adacore.com>
3986
3987         * tree-flow.h (gimple_purge_all_dead_abnormal_call_edges): Declare.
3988         * tree-cfg.c (gimple_purge_dead_abnormal_call_edges): Move around and
3989         rewrite modelled on gimple_purge_dead_eh_edges.
3990         (gimple_purge_all_dead_abnormal_call_edges): New function.
3991         * tree-inline.c (expand_call_inline): Call gimple_purge_dead_eh_edges
3992         directly instead of through gimple_purge_dead_abnormal_call_edges.
3993         * tree-ssa-pre.c (need_ab_cleanup): New static variable.
3994         (eliminate): Set bit in need_ab_cleanup for the basic block if we have
3995         removed AB side-effects from one of its statements.
3996         (init_pre): Initialize need_ab_cleanup.
3997         (fini_pre): Purge dead abnormal call edges and clean up the CFG if bits
3998         are set in need_ab_cleanup.  Free need_ab_cleanup afterward.
3999
4000 2010-10-18  Jakub Jelinek  <jakub@redhat.com>
4001
4002         PR c/46015
4003         * c-parser.c (c_parser_statement_after_labels): Call mark_exp_read
4004         on computed goto argument.
4005
4006 2010-10-18  Richard Guenther  <rguenther@suse.de>
4007
4008         PR tree-optimization/45967
4009         * tree-ssa-structalias.c (type_could_have_pointers): Remove.
4010         (could_have_pointers): Likewise.
4011         (handle_rhs_call, handle_const_call, handle_pure_call,
4012         find_func_aliases, intra_create_variable_infos): Remove calls to them.
4013         (struct fieldoff): Add must_have_pointers field.
4014         (type_must_have_pointers): New function.
4015         (field_must_have_pointers): Likewise.
4016         (push_fields_onto_fieldstack): Remove must_have_pointers_p argument.
4017         Adjust field merging.
4018         (create_function_info_for): May-have-pointers of varinfo is
4019         almost always true.
4020         (create_variable_info_for_1): Likewise.
4021
4022 2010-10-18  Tejas Belagod  <tejas.belagod@arm.com>
4023
4024         * config/arm/neon.md (neon_move_hi_quad_<mode>): Fix the order
4025         of operands to vec_concat.
4026
4027 2010-10-18  Richard Guenther  <rguenther@suse.de>
4028
4029         PR lto/44950
4030         * tree.c (free_lang_data_in_decl): As we clear TYPE_METHODS
4031         also clear references to entries of it.
4032
4033 2010-10-18  Andi Kleen  <ak@linux.intel.com>
4034
4035         PR other/43448
4036         * gccbug.in: Remove.
4037         * Makefile.in (GCCBUG_INSTALL_NAME, gccbug): Remove
4038         (doc, distclean, install-common): Remove reference to gccbug.
4039         * configure: Regenerate.
4040         * configure.ac (all_outputs): Remove gccbug.
4041         * doc/configfiles.texi: Remove references to gccbug.
4042         * doc/sourcebuild.texi: Dito.
4043
4044 2010-10-18  Jakub Jelinek  <jakub@redhat.com>
4045
4046         PR middle-end/46019
4047         * fold-const.c (fold_binary_loc): If integer_pow2p has
4048         TREE_INT_CST_LOW zero, look at TREE_INT_CST_HIGH.
4049
4050 2010-10-18  Basile Starynkevitch  <basile@starynkevitch.net>
4051             Jeremie Salvucci  <jeremie.salvucci@free.fr>
4052
4053         * gengtype.c (verbosity_level): Add variable.
4054         (set_gc_used): Count variables for verbosity.
4055         (close_output_files): Backing up files, counting written ones
4056         verbosily.
4057         (write_types): Count emitted functions for verbosity. Added
4058         debug messages.
4059         (write_enum_defn): Count structures for verbosity. Added debug
4060         messages.
4061         (gengtype_long_options): Add "verbose" & "backupdir".
4062         (print_usage): Ditto.
4063         (main): Verbose display of parsed files.
4064
4065         * gengtype.h (verbosity_level): Add declaration.
4066
4067 2010-10-18  Basile Starynkevitch  <basile@starynkevitch.net>
4068
4069         * gengtype.c (parse_program_options): Add allocation of
4070         plugin_files, and correct test on nb_plugin_files.
4071
4072 2010-10-17  Nicola Pero  <nicola.pero@meta-innovation.com>
4073
4074         Merge from 'apple/trunk' branch on FSF servers.
4075
4076         2006-03-27 Fariborz Jahanian  <fjahanian@apple.com>
4077
4078         Radar 4133425
4079         * c-decl.c (undeclared_variable): Issue diagnostic on
4080         private 'ivar' access.
4081
4082 2010-10-17  Uros Bizjak  <ubizjak@gmail.com>
4083
4084         PR target/46051
4085         * config/i386/sse.md (vec_interleave_highv4df): Fix third RTX of
4086         generated sequence to match *avx_vperm2f128<mode>_nozero.
4087         (vec_interleave_lowv4df): Ditto.
4088         (vec_interleave_highv8sf): Ditto.
4089         (vec_interleave_lowv8sf): Ditto.
4090
4091 2010-10-17  Kai Tietz  <kai.tietz@onevision.com>
4092
4093         * libgcov.c (create_file_directory): Enable it for win32 case.
4094         (gcov_exit): De-couple GCOV_PREFIX and GCOV_PREFIX_STRIP.
4095         * doc/gcov.texi (GCOV_PREFIX): Adjusted.
4096         (GCOV_PREFIX_SKIP): Likewise.
4097
4098 2010-10-17  Nicola Pero  <nicola.pero@meta-innovation.com>
4099
4100         * doc/objc.texi (GNU Objective-C runtime API): New section.
4101         (Modern GNU Objective-C runtime API): New section.
4102         (Traditional GNU Objective-C runtime API): New section.
4103         (Executing code before main): Mention that this section is
4104         specific to the GNU Objective-C runtime.
4105         (Garbage Collection): Same.
4106
4107 2010-10-17  Uros Bizjak  <ubizjak@gmail.com>
4108
4109         * c-parser.c (c_parser_for_statement): Move initialization of
4110         cond and incr before if.
4111
4112 2010-10-17  Anatoly Sokolov  <aesok@post.ru>
4113
4114         * target.def (preferred_output_reload_class): New hook.
4115         * doc/tm.texi.in (TARGET_PREFERRED_OUTPUT_RELOAD_CLASS): Document.
4116         * doc/tm.texi: Regenerate.
4117         * targhooks.c (default_preferred_output_reload_class): New function.
4118         * targhooks.h (default_preferred_output_reload_class): Declare.
4119         * reload.c (find_dummy_reload): Change rclass argument type from
4120         enum reg_class to reg_class_t. Change this_alternative array type
4121         from enum reg_class to reg_class_t.
4122         Use TARGET_PREFERRED_OUTPUT_RELOAD_CLASS target hook.
4123         (push_reload): Change preferred_class variable type to reg_class_t.
4124         Use TARGET_PREFERRED_OUTPUT_RELOAD_CLASS target hook.
4125         * recog.c (reg_fits_class_p): Change result type to bool. Change cl
4126         argument type from enum reg_class to reg_class_t. Use
4127         HARD_REGISTER_NUM_P predicate.
4128         * recog.h (reg_fits_class_p): Update prototype.
4129
4130         * config/i386/i386.h (PREFERRED_OUTPUT_RELOAD_CLASS): Remove.
4131         * config/i386/i386-protos.h (ix86_preferred_output_reload_class):
4132         Remove.
4133         * config/i386/i386.c (ix86_preferred_output_reload_class): Make
4134         static. Change regclass argument and result types from enum reg_class
4135         to reg_class_t.
4136         (TARGET_PREFERRED_OUTPUT_RELOAD_CLASS): Define.
4137
4138 2010-10-17  Iain Sandoe  <iains@gcc.gnu.org>
4139
4140         * c-parser.c (c_parser_objc_class_instance_variables): Update to use
4141         visibility enum, and handle @package.
4142
4143 2010-10-17  Nicola Pero  <nicola.pero@meta-innovation.com>
4144
4145         * doc/objc.texi (What you can and what you cannot do in +load):
4146         Document that sending messages to constant string objects in +load
4147         is not guaranteed to work.
4148
4149 2010-10-16  Jan Hubicka  <jh@suse.cz>
4150
4151         PR middle-end/44206
4152         * ipa.c (cgraph_remove_unreachable_nodes): Cleanup; check
4153         existence of refrences before removing the function.
4154
4155 2010-10-16  Jan Hubicka  <jh@suse.cz>
4156
4157         * cgraph.c (dump_cgraph_node): Dump same_comdat_group,
4158         only_called_at_startup and only_called_at_exit.
4159         (cgraph_propagate_frequency): Compute only_called_at_startup and
4160         only_called_at_exit.
4161         * cgraph.h (struct cgraph_node): New fileds only_called_at_startup and
4162         only_called_at_exit.
4163         * lto-cgraph.c (lto_output_node, input_overwrite_node): Stream the new
4164         flags.
4165         * predict.c (compute_function_frequency): Initialize the new flags.
4166
4167 2010-10-16  Eric Botcazou  <ebotcazou@adacore.com>
4168
4169         * gimplify.c (gimplify_type_sizes) <ARRAY_TYPE>: If the type is to be
4170         ignored for debug info purposes, do not clear the DECL_IGNORED_P flag
4171         on the bounds of its domain.
4172         * tree.h (DECL_IGNORED_P): Document effect on TYPE_DECL specifically.
4173
4174 2010-10-16  Anatoly Sokolov  <aesok@post.ru>
4175
4176         * config/avr/avr.h (PREFERRED_RELOAD_CLASS): Remove.
4177         * config/avr/avr-protos.h (preferred_reload_class): Remove.
4178         * config/avr/avr.c (preferred_reload_class): Remove.
4179         * config/pa/pa.h (PREFERRED_RELOAD_CLASS): Remove.
4180         * config/pa/pa.c (emit_move_sequence): Update comment
4181         * config/arc/arc.h (PREFERRED_RELOAD_CLASS): Remove.
4182         * config/crx/crx.h (PREFERRED_RELOAD_CLASS): Remove.
4183         * config/fr30/fr30.h (PREFERRED_RELOAD_CLASS): Remove.
4184         * config/frv/frv.h (PREFERRED_RELOAD_CLASS): Remove.
4185         * config/h8300/h8300.h (PREFERRED_RELOAD_CLASS): Remove.
4186         * config/lm32/lm32.h (PREFERRED_RELOAD_CLASS): Remove.
4187         * config/m32r/m32r.h (PREFERRED_RELOAD_CLASS): Remove.
4188         * config/moxie/moxie.h (PREFERRED_RELOAD_CLASS): Remove.
4189         * config/picochip/picochip.h (PREFERRED_RELOAD_CLASS): Remove.
4190         * config/rx/rx.h (PREFERRED_RELOAD_CLASS): Remove.
4191         * config/spu/spu.h (PREFERRED_RELOAD_CLASS): Remove.
4192         * config/v850/v850.h (PREFERRED_RELOAD_CLASS): Remove.
4193         * config/vax/vax.h (PREFERRED_RELOAD_CLASS): Remove.
4194
4195 2010-10-16  Joseph Myers  <joseph@codesourcery.com>
4196
4197         * opts.c (set_fast_math_flags,
4198         set_unsafe_math_optimizations_flags): Make static.
4199         * toplev.h (set_fast_math_flags,
4200         set_unsafe_math_optimizations_flags): Remove prototypes.
4201
4202 2010-10-16  Joseph Myers  <joseph@codesourcery.com>
4203
4204         * config/arm/arm.c (arm_option_optimization): Set
4205         flag_section_anchors to 1 not 2.
4206         * config/i386/i386.c (ix86_option_override_internal): Check
4207         global_options_set.x_flag_zee and
4208         global_options_set.x_flag_omit_frame_pointer.
4209         (ix86_option_optimization): Don't set flag_omit_frame_pointer and
4210         flag_zee to 2.
4211         * config/i386/sol2-10.h (SUBTARGET_OVERRIDE_OPTIONS): Check
4212         global_options_set.x_flag_omit_frame_pointer.
4213         * config/rs6000/rs6000.c (rs6000_option_init_struct): Set
4214         opts->x_flag_section_anchors to 1 not 2.
4215         * config/sh/sh.c (sh_option_optimization): Don't set
4216         flag_schedule_insns to 2.
4217         (sh_option_override): Check
4218         global_options_set.x_flag_schedule_insns.
4219         * opts.c (finish_options): Check opts_set->x_flag_section_anchors.
4220
4221 2010-10-16  Kai Tietz  <kai.tietz@onevision.com>
4222
4223         * configure.ac: Make sure inhibit_libc remains false for mingw targets
4224         as cross.
4225         * configure: Regenerated.
4226
4227 2010-10-15  Xinliang David Li  <davidxl@google.com>
4228
4229         * tree-ssa-uninit.c (prune_uninit_phi_opnds_in_unrealizable_paths): New
4230         function.
4231         (use_pred_not_overlap_with_undef_path_pred): Outline phi arg pruning
4232         into a recursive function.
4233
4234 2010-10-15  Uros Bizjak  <ubizjak@gmail.com>
4235
4236         * config/i386/i386.md (*movdfcc_1_rex64): Correct mode attribute.
4237         (*movdfcc_1): ditto.
4238
4239 2010-10-15  Joseph Myers  <joseph@codesourcery.com>
4240
4241         * target.def (target_option.init_struct): New hook.
4242         * doc/tm.texi.in (TARGET_OPTION_INIT_STRUCT): New @hook.
4243         * doc/tm.texi: Regenerate.
4244         * hooks.c (hook_void_gcc_optionsp): New.
4245         * hooks.h (hook_void_gcc_optionsp): Declare.
4246         * langhooks-def.h (lhd_init_options_struct): Remove.
4247         (LANG_HOOKS_INIT_OPTIONS_STRUCT): Define to hook_void_gcc_optionsp.
4248         * langhooks.c (lhd_init_options_struct): Remove.
4249         * opts.c (init_options_struct): Also call
4250         targetm.target_option.init_struct.
4251         * config/i386/i386.c (ix86_option_init_struct,
4252         TARGET_OPTION_INIT_STRUCT): New.
4253         (ix86_option_optimization): Move some settings to
4254         ix86_option_init_struct.
4255         * config/pdp11/pdp11.c (pdp11_option_init_struct,
4256         TARGET_OPTION_INIT_STRUCT): New.
4257         (pdp11_option_optimization): Move some settings to
4258         pdp11_option_init_struct.
4259         * config/rs6000/rs6000.c (rs6000_option_optimization): Replace by
4260         rs6000_option_init_struct.  Use options structure pointer.
4261         (TARGET_OPTION_OPTIMIZATION): Replace by TARGET_OPTION_INIT_STRUCT.
4262         * config/s390/s390.c (s390_option_init_struct,
4263         TARGET_OPTION_INIT_STRUCT): New.
4264         (s390_option_optimization): Don't set
4265         flag_asynchronous_unwind_tables here.
4266         * config/sh/sh.c (sh_option_init_struct,
4267         TARGET_OPTION_INIT_STRUCT): New.
4268         (sh_option_optimization): Don't set flag_finite_math_only here.
4269         * config/spu/spu.c (spu_option_optimization): Replace by
4270         spu_option_optimization.  Use options structure pointer.
4271         (TARGET_OPTION_OPTIMIZATION): Replace by TARGET_OPTION_INIT_STRUCT.
4272
4273 2010-10-14  Michael Meissner  <meissner@linux.vnet.ibm.com>
4274
4275         * doc/md.texi (Standard Names): Add fma@var{m}4 documentation.
4276
4277         * doc/rtl.texi (RTX_TERNARY): Document FMA is ternary.  Add
4278         SIGN_EXTRACT and ZERO_EXTRACT which were missing.
4279         (Standard names): Document fma.
4280
4281         * doc/cpp.texi (Common Predefined Macros): Document __FP_FAST_FMA,
4282         __FP_FAST_FMAF, __FP_FAST_FMAL.
4283
4284         * builitns.c (expand_builtin_mathfn_ternary): New function for
4285         expanding ternary math functions, like fma.
4286         (expand_builtin): Call it for the fma builtins.
4287
4288         * simplify-rtx.c (simplify_ternary_operation): Don't simplify FMA
4289         ops at present.
4290
4291         * tree-vect-stmts.c (vectorizable_call): Allow 3 argument
4292         vectorizable functions to support vectorizing fma.
4293
4294         * config/rs6000/rs6000.c (rs6000_builtin_vectorized_function):
4295         Handle fma builtins.
4296
4297         * config/rs6000/vsx.md (UNSPEC_VSX_MADD): Delete.
4298         (UNSPEC_VSX_MSUB): Ditto.
4299         (UNSPEC_VSX_NMADD): Ditto.
4300         (UNSPEC_VSX_NMSUB): Ditto.
4301         (vsx_fmadd<mode>4*): Rewrite to use FMA rtl in some cases instead
4302         of UNSPEC. Renumber combiner patterns.
4303         (vsx_fmsub<mode>4*): Ditto.
4304         (vsx_fnmadd<mode>4*): Ditto.
4305         (vsx_fnmsub<mode>4*): Ditto.
4306
4307         * config/rs6000/altivec.md (UNSPEC_VNMSUBFP): Delete.
4308         (altivec_vmaddfp): Rewrite to use FMA rtl if no fused
4309         multiply/add.  Rename combiner pattern, and add TARGET_FUSED_MADD test.
4310         (altivec_vmaddfp_1): Ditto.
4311         (altivec_vmaddfp_2): Ditto.
4312         (atlivec_mulv4sf3): Ditto.
4313         (altivec_vnmsubfp): Ditto.
4314         (altivec_vnmsubfp_1): Ditto.
4315         (altivec_vnmsubfp_2): Ditto.
4316         (altivec_vnmsubfp_3): Delete.
4317
4318         * config/rs6000/rs6000.md (fmasf4): New insns for fma builtin support.
4319         (fmasf4_fpr): Ditto.
4320         (fmssf4_fpr): Ditto.
4321         (fnmasf4_fpr): Ditto.
4322         (fnmssf4_fpr): Ditto.
4323         (fmadf4): Ditto.
4324         (fmadf4_fpr): Ditto.
4325         (fmsdf4_fpr): Ditto.
4326         (fnmadf4_fpr): Ditto.
4327         (fnmsdf4_fpr): Ditto.
4328
4329         * optabs.h (OTI_fma): Add fma optab.
4330         (fma_optab): Ditto.
4331
4332         * genopinit.c (optabs): Set fma optab.
4333
4334         * rtl.def (FMA): Add FMA rtl.
4335
4336         * tree.h (mode_has_fma): New function to return if MODE supports a
4337         fast multiply and add instruction.
4338         * builtins.c (mode_has_fma): Ditto.
4339
4340 2010-10-15  Jan Hubicka  <jh@suse.cz>
4341
4342         * lto-streamer-out.c (write_symbol): Use pointer set of seen
4343         objects instead of bitmap.
4344         (produce_symtab): Likewise; output defined symbols first.
4345
4346 2010-10-15  Jie Zhang  <jie@codesourcery.com>
4347
4348         * doc/invoke.texi: Add -fstrict-volatile-bitfields to
4349         Option Summary and Index.
4350
4351 2010-10-15  Richard Guenther  <rguenther@suse.de>
4352
4353         * tree.c (free_lang_data_in_decl): Clear DECL_INITIAL
4354         for automatic variables again.
4355
4356 2010-10-15  Joseph Myers  <joseph@codesourcery.com>
4357
4358         * doc/extend.texi (Variable Length): Don't refer to VLAs not
4359         conforming to C99.
4360
4361 2010-10-15  Joseph Myers  <joseph@codesourcery.com>
4362
4363         * config/rx/rx.c (rx_option_optimization): Change to
4364         rx_override_options_after_change.  Don't change
4365         flag_lto_compression_level.  Don't check for changes to whether
4366         FPU instructions can be used.  Check and set only
4367         flag_finite_math_only, not other fast-math flags.
4368         (rx_option_override): Call rx_override_options_after_change.
4369         (TARGET_OPTION_OPTIMIZATION): Remove.
4370         (TARGET_OVERRIDE_OPTIONS_AFTER_CHANGE): Define.
4371
4372 2010-10-15  Joseph Myers  <joseph@codesourcery.com>
4373
4374         * config/rs6000/rs6000.c (rs6000_option_optimization): Don't
4375         disable section anchors for lang_hooks.name[4] != 'O'.
4376
4377 2010-10-15  Joseph Myers  <joseph@codesourcery.com>
4378
4379         * config/frv/frv.c (frv_option_optimization,
4380         TARGET_OPTION_OPTIMIZATION): Remove.
4381         * config/frv/frv.h (RCSP_SOFTWARE_PIPELINING): Remove.
4382
4383 2010-10-15  Michael Matz  <matz@suse.de>
4384
4385         * cgraphunit.c (clone_of_p): Define unconditionally.
4386
4387 2010-10-15  Richard Guenther  <rguenther@suse.de>
4388
4389         PR lto/45957
4390         * tree.c (free_lang_data_in_decl): Do not clear DECL_INITIAL of vars.
4391
4392 2010-10-15  Chung-Lin Tang  <cltang@codesourcery.com>
4393
4394         * ifcvt.c (find_active_insn_before): New function.
4395         (find_active_insn_after): New function.
4396         (cond_exec_process_if_block): Use new functions to replace
4397         prev_active_insn() and next_active_insn().
4398
4399 2010-10-14  Yao Qi  <yao@codesourcery.com>
4400
4401         PR target/45447
4402         * config/arm/arm.c (arm_build_builtin_va_list): Assign
4403         va_list_name to TYPE_STUB_DECL (va_list_type).
4404
4405 2010-10-14  Jan Hubicka  <jh@suse.cz>
4406
4407         PR middle-end/45621
4408         * cgraph.c (cgraph_update_edges_for_call_stmt_node): When new call is
4409         redirected to clone, be happy.
4410         * cgraph.h (cgraph node): Enable former_clone_of unconditinally.
4411         * cgraphunit.c (verify_cgraph_node, cgraph_materialize_clone): Handle
4412         former_clone_of unconditionally.
4413
4414 2010-10-14  Iain Sandoe  <iains@gcc.gnu.org>
4415
4416         Merge from FSF apple 'trunk' branch.
4417         2006 Fariborz Jahanian  <fjahanian@apple.com>
4418
4419         Radars 4436866, 4505126, 4506903, 4517826
4420         * c-parser.c (c_parser, objc_property_attr_context) New flag.
4421         (c_lex_one_token): Handle property attributes.
4422         (c_parser_external_declaration): Handle @property.
4423         (c_parser_declaration_or_fndef): Warn on invalid attributes before
4424         @alias, @class, @end and @property objc keywords.
4425         (c_parser_objc_methodprotolist): Handle @property.
4426         (c_parser_objc_property_attrlist): New.
4427         (c_parser_objc_at_property): New.
4428         * c-typeck.c (build_component_ref): Handle CLASS.property syntax.
4429         (build_modify_expr): Likewise.
4430
4431 2010-10-14  Jakub Jelinek  <jakub@redhat.com>
4432
4433         PR tree-optimization/46008
4434         * tree-if-conv.c (predicate_bbs): Try to canonicalize c2 if possible.
4435
4436 2010-10-14  Richard Guenther  <rguenther@suse.de>
4437
4438         PR tree-optimization/44913
4439         * tree-data-ref.c (disjoint_objects_p): Remove.
4440         (dr_may_alias_p): Simplify.  Only hand the base object to
4441         the alias-oracle.
4442         * tree-ssa-alias.c (ptr_deref_may_alias_decl_p): Handle
4443         some more trees, bail out instead of asserting.
4444         (ptr_derefs_may_alias_p): Likewise.  Export.
4445         (refs_may_alias_p_1): Handle STRING_CSTs.
4446         * tree-ssa-alias.h (ptr_derefs_may_alias_p): Declare.
4447
4448 2010-10-14  Joseph Myers  <joseph@codesourcery.com>
4449
4450         PR c/45969
4451         * c-typeck.c (build_binary_op): Don't try to compute a semantic
4452         type with excess precision for boolean operations.
4453
4454 2010-10-14  Jeremie Salvucci  <jeremie.salvucci@free.fr>
4455             Basile Starynkevitch  <basile@starynkevitch.net>
4456
4457         * gengtype.c:  Include getopt.h and version.h.
4458
4459         (lang_bitmap, struct outf, outf_p)
4460         (get_output_file_with_visibility, oprintf): Definitions moved to
4461         gengtype.h
4462         (output_files, header_file, srcdir, srcdir_len, this_file)
4463         (do_dump): No more static variables.
4464         (do_debug): New.
4465         (dbgprint_count_type_at): Added new function.
4466         (gengtype_long_options): New.
4467         (print_usage, print_version, parse_program_options): New.
4468         (main): Call parse_program_options, and removed old option
4469         handling code.  Added some debug output.
4470
4471         * gengtype.h:  Updated copyright year.
4472         (lang_bitmap, struct outf, outf_p, header_file, oprintf)
4473         (get_output_file_with_visibility, srcdir, srcdir_len, do_dump):
4474         Moved from gengtype.c to here.
4475         (do_debug, read_state_filename, write_state_filename): New variables.
4476         (DBGPRINTF, DBGPRINT_COUNT_TYPE): New macros.
4477
4478         * Makefile.in:
4479         (REVISION): Always defined.
4480         (version.o): Removed ifdef REVISION_c.
4481         (s-gtype): Pass arguments to build/gengtype program.
4482         (build/version.o): Added building rule.
4483         (build/gengtype$(build_exeext)): Added build/version.o.
4484
4485 2010-10-14  Iain Sandoe  <iains@gcc.gnu.org>
4486
4487         Partial merge of 'ObjC GC' from FSF apple 'trunk' branch.
4488         * config/darwin-c.c (darwin_cpp_builtins): Define __weak and
4489         __strong macros.
4490
4491 2010-10-14  Eric Botcazou  <ebotcazou@adacore.com>
4492
4493         * sched-deps.c (sched_insn_is_legitimate_for_speculation): Invoke
4494         may_trap_or_fault_p instead of may_trap_p predicate.
4495         * tree.c (substitute_in_expr): Propagate the TREE_THIS_NOTRAP flag.
4496         (substitute_placeholder_in_expr): Likewise.
4497         * tree-inline.c (remap_gimple_op_r): Propagate the TREE_THIS_NOTRAP
4498         flag on MEM_REF nodes.
4499         (copy_tree_body_r): Propagate the TREE_READONLY and TREE_THIS_NOTRAP
4500         flags on INDIRECT_REF nodes.
4501
4502 2010-10-14  Nathan Froyd  <froydnj@codesourcery.com>
4503
4504         * config.gcc (arm*-*-linux-*eabi) <tm_file>: Add bpabi.h from libgcc.
4505         (arm*-*-uclinux*eabi) <tm_file>: Likewise.
4506         (arm*-*-eabi*) <tm_file>: Likewise.
4507         (frv-*-elf) <tm_file>: Add frv-abi.h from libgcc.
4508         (frv-*-*linux*) <tm_file>: Likewise.
4509         * config/arm/bpabi.h: Delete DECLARE_LIBRARY_RENAMES stanzas
4510         and associated helper macros.
4511         * config/frv/frv-abi.h: Delete.
4512
4513 2010-10-14  Richard Guenther  <rguenther@suse.de>
4514
4515         PR lto/44561
4516         * tree.def (NULLPTR_TYPE): New tree code.
4517         * dbxout.c (dbxout_type): Handle NULLPTR_TYPE.
4518         * dwarf2out.c (is_base_type): Likewise.
4519         (gen_type_die_with_usage): Likewise.
4520         * sdbout.c (plain_type_1): Likewise.
4521         * tree.c (build_int_cst_wide): Likewise.
4522         * gimple.c (gimple_types_compatible_p_1): NULLPTR_TYPE types are equal.
4523
4524 2010-10-14  Joseph Myers  <joseph@codesourcery.com>
4525
4526         * params.c (params_finished): New.
4527         (add_params): Assert !params_finished.
4528         (finish_params): New.
4529         (set_param_value_internal): Take params and params_set
4530         parameters.  Assert params_finished.
4531         (set_param_value, maybe_set_param_value): Take params and
4532         params_set parameters.  Update calls to set_param_value_internal.
4533         (set_default_param_value): Assert !params_finished.  Don't use
4534         set_param_value_internal.
4535         (default_param_value, init_param_values): New.
4536         * params.h (struct param_info): Change value to default_value.
4537         Remove set.
4538         (set_param_value, maybe_set_param_value): Add params and
4539         params_set parameters.
4540         (PARAM_VALUE): Get parameters from global_options.
4541         (PARAM_SET_P): Remove.
4542         (finish_params, default_param_value, init_param_values): New.
4543         * common.opt (param_values): New Variable.
4544         * config/arm/arm.c (arm_option_override): Pass extra arguments to
4545         maybe_set_param_value.
4546         * config/i386/i386.c (ix86_option_override_internal): Pass extra
4547         arguments to maybe_set_param_value.
4548         * config/picochip/picochip.c (picochip_option_override): Pass
4549         extra arguments to maybe_set_param_value.
4550         * config/rs6000/rs6000.c (rs6000_option_override_internal): Pass
4551         extra arguments to maybe_set_param_value.
4552         * config/s390/s390.c (s390_option_override): Use
4553         maybe_set_param_value instead of set_param_value.  Pass extra
4554         arguments to maybe_set_param_value.
4555         * config/sparc/sparc.c (sparc_option_override): Pass extra
4556         arguments to maybe_set_param_value.
4557         * config/spu/spu.c (spu_option_override): Pass extra arguments to
4558         maybe_set_param_value.
4559         * opts.c (handle_param): Take opts and opts_set parameters.
4560         Update call to set_param_value.
4561         (initial_min_crossjump_insns, initial_max_fields_for_field_sensitive,
4562         initial_loop_invariant_max_bbs_in_loop): Remove.
4563         (init_options_once): Don't set them.
4564         (init_options_struct): Initialize parameters structures.
4565         (default_options_optimization): Use default_param_value when
4566         restoring defaults.  Update calls to maybe_set_param_value.
4567         (finish_options): Update calls to maybe_set_param_value.
4568         (common_handle_option): Update calls to handle_param and
4569         set_param_value.
4570         * toplev.c (DEFPARAM): Update definition for changes to param_info.
4571         (general_init): Call finish_params.
4572
4573 2010-10-14  Nick Clifton  <nickc@redhat.com>
4574
4575         * config/mn10300/mn10300.h (CONSTANT_ALIGNMENT): Define.
4576         (DATA_ALIGNMENT, LOCAL_ALIGNMENT): Define.
4577         (FIRST_PSEUDO_REGISTER): Increase by one.
4578         (FIXED_REGISTERS, CALL_USED_REGISTERS): Update with CC_REG.
4579         (HARD_REGNO_MODE_OK): Call mn10300_hard_regno_mode_ok.
4580         (MODES_TIEABLE): Call mn10300_modes_tieable.
4581         (REG_CLASS_NAMES, REG_CLASS_CONTENTS, REGNO_REG_CLASS): Add CC_REGS.
4582         (LEGITIMATE_CONSTANT_P): Call mn10300_legitimate_constant_p.
4583         (CC_OVERFLOW_UNUSABLE, CC_NO_CARRY, NOTICE_UPDATE_CC)
4584         (SELECT_CC_MODE, REVERSIBLE_CC_MODE): Delete.
4585         (REGISTER_NAMES, ADDITIONAL_REGISTER_NAMES): Add CC register.
4586         (ASM_OUTPUT_REG_PUSH, ASM_OUTPUT_REG_POP): Delete.
4587         (mn10300_cc_status_mdep): Delete.
4588         (CC_STATUS_MDEP, CC_STATUS_MDEP_INIT): Delete.
4589         * config/mn10300/mn10300 (mn10300_option_override): Stop disabling
4590         the combine-stack-adjust pass.
4591         (print_operand): Use the mode of the comparison operation to
4592         select the comparison suffix.
4593         (notice_update_cc): Delete.
4594         (mn10300_secondary_reload_class): Remove test for stack pointer
4595         based arithmetic.
4596         (output_tst): Rename to mn10300_output_cmp.
4597         (impossible_plus_operand): Move into predicates.md.
4598         (mn10300_legitimize_address): Make static.
4599         (mn10300_legitimate_address_p): Make static.  Only allow SI sized
4600         constant pic operands.
4601         (mn10300_legitimate_constant_p): New function.
4602         (mn10300_case_values_threshold): Make static.
4603         (mn10300_hard_regno_mode_ok): New function.
4604         (mn10300_modes_tieable): New function.
4605         (mn10300_select_cc_mode): New function.
4606         * config/mn10300/predicates.md (impossible_plus_operand): Define.
4607         * config/mn10300/mn10300-protos.h: Tidy.
4608         (mn10300_legitimate_constant_p, mn10300_modes_tieable)
4609         (mn10300_hard_regno_mode_ok, mn10300_select_cc_mode): Prototype.
4610         * config/mn10300/mn10300.md (cc attribute): Delete.  Replace
4611         with clobbers or sets of CC_REG.
4612         (CC_REG): Define.
4613         (mov*): Remove use of CLR instruction.
4614         (cbranch_si4_<code>): New pattern/split.
4615         (integer_conditional_branch): New pattern.
4616         (cbranch_sf4_<code>): New pattern/split.
4617         (float_conditional_branch): New pattern.
4618         (casesi): Use addsi3 pattern instead of movsi pattern to add and
4619         move a value at the same time.
4620         (cc0 peepholes): Remove.
4621
4622 2010-10-14  Andrey Belevantsev  <abel@ispras.ru>
4623
4624         * sel-sched-ir.c (init_global_and_expr_for_insn): Set CANT_MOVE
4625         on RTX_FRAME_RELATED_P insns and the insn to which
4626         NOTE_INSN_EPILOGUE_BEG is attached.
4627         * sched-vis.c (print_value): Allow NULL value.
4628
4629 2010-10-14  Andrey Belevantsev  <abel@ispras.ru>
4630
4631         PR rtl-optimization/45570
4632         * sel-sched-ir.c (cfg_preds_1): When walking out of the region,
4633         assert that we are pipelining outer loops.  Allow returning
4634         zero predecessors.
4635
4636 2010-10-14  Andrey Belevantsev  <abel@ispras.ru>
4637
4638         * sel-sched-ir.c (maybe_tidy_empty_bb): Simplify comment.
4639         (tidy_control_flow): Tidy vertical space.
4640         (sel_remove_bb): New variable idx.  Use it to remember the basic
4641         block index before deleting the block.
4642         (sel_remove_empty_bb): Remove dead code, simplify and insert to ...
4643         (sel_merge_blocks): ... here.
4644         * sel-sched-ir.h (sel_remove_empty_bb): Remove prototype.
4645
4646 2010-10-14  Jakub Jelinek  <jakub@redhat.com>
4647
4648         * cse.c (is_dead_reg): Change into inline function that is not
4649         called through for_each_rtx.
4650         (set_live_p): Adjust caller.
4651         (insn_live_p): Don't reset DEBUG_INSNs here.
4652         (struct dead_debug_insn_data): New data.
4653         (count_stores, is_dead_debug_insn, replace_dead_reg): New functions.
4654         (delete_trivially_dead_insns): If there is just one setter for the
4655         dead reg that is referenced by some DEBUG_INSNs, create a DEBUG_EXPR
4656         and add DEBUG_INSN for it right before the removed setter and
4657         use the DEBUG_EXPR instead of the dead pseudo.
4658
4659 2010-10-14  Zdenek Dvorak  <rakdver@kam.uniff.cz>
4660
4661         * et-forest.c (et_nca): Return NULL immediately when
4662         the dominance forest has disjoint components.
4663
4664 2010-10-13  Vladimir Makarov  <vmakarov@redhat.com>
4665
4666         * ira.c (setup_class_hard_regs): Fix typo in indexing
4667         ira_non_ordered_class_hard_regs and ira_class_hard_reg_index.
4668
4669 2010-10-14  Tijs Wiebe Lefering  <twlevo@gmail.com>
4670
4671         * graph.c (inbb): New variable.
4672         (start_bb): Set inbb to 1 if output is inside of a building block.
4673         (end_bb): Check if output is inside of a building block.
4674
4675 2010-10-13  Eric Botcazou  <ebotcazou@adacore.com>
4676
4677         PR rtl-optimization/45912
4678         * ira-costs.c (ira_tune_allocno_costs_and_cover_classes): Test the
4679         regno of registers instead of their index to compute the alignment.
4680
4681 2010-10-13  H.J. Lu  <hongjiu.lu@intel.com>
4682
4683         * config/i386/i386.c (ix86_build_const_vector): Check vector
4684         mode instead of scalar mode.
4685         (ix86_build_signbit_mask): Likewise.
4686         (ix86_expand_fp_absneg_operator): Updated.
4687         (ix86_expand_copysign): Likewise.
4688         (ix86_expand_int_vcond): Likewise.
4689         (ix86_emit_swdivsf): Likewise.
4690         (ix86_sse_copysign_to_positive): Likewise.
4691         (ix86_expand_sse_fabs): Likewise.
4692         * config/i386/i386.md (fixuns_trunc<mode>si2): Likewise.
4693         * config/i386/sse.md (copysign<mode>3): Likewise.
4694         (sse2_cvtudq2ps): Likewise.
4695         (vec_unpacku_float_hi_v4si): Likewise.
4696         (vec_unpacku_float_lo_v4si): Likewise.
4697
4698         * config/i386/i386.c (ix86_builtins): Add
4699         IX86_BUILTIN_CPYSGNPS256 and IX86_BUILTIN_CPYSGNPD256.
4700         (bdesc_args): Likewise.
4701         (ix86_builtin_vectorized_function): Support
4702         IX86_BUILTIN_CPYSGNPS256, IX86_BUILTIN_CPYSGNPD256,
4703         IX86_BUILTIN_SQRTPD256, IX86_BUILTIN_SQRTPS_NR256,
4704         and IX86_BUILTIN_CVTPS2DQ256.
4705         (ix86_builtin_reciprocal): Support IX86_BUILTIN_SQRTPS_NR256.
4706
4707         * config/i386/sse.md (STORENT_MODE): New.
4708         (VEC_FLOAT_MODE): Likewise.
4709         (VEC_EXTRACT_MODE): Likewise.
4710         (*avx_cvtdq2pd256_2): Likewise.
4711         (vec_pack_trunc_v4df): Likewise.
4712         (vec_interleave_highv8sf): Likewise.
4713         (vec_interleave_lowv8sf): Likewise.
4714         (storent<mode>): Macroized.
4715         (<code><mode>2: absneg): Likewise.
4716         (copysign<mode>3): Likewise.
4717         (vec_extract<mode>): Likewise.
4718
4719         PR target/44180
4720         * config/i386/i386.c (expand_vec_perm_even_odd_1): Rewritten
4721         for V8SFmode.
4722
4723 2010-10-13  Richard Guenther  <rguenther@suse.de>
4724             H.J. Lu  <hongjiu.lu@intel.com>
4725
4726         * config/i386/sse.md (reduc_splus_v8sf): Add.
4727         (reduc_splus_v4df): Likewise.
4728         (vec_unpacks_hi_v8sf): Likewise.
4729         (vec_unpacks_lo_v8sf): Likewise.
4730         (*avx_cvtps2pd256_2): Likewise.
4731         (vec_unpacks_float_hi_v8si): Likewise.
4732         (vec_unpacks_float_lo_v8si): Likewise.
4733         (vec_interleave_highv4df): Likewise.
4734         (vec_interleave_lowv4df): Likewise.
4735
4736 2010-10-13  Richard Guenther  <rguenther@suse.de>
4737
4738         PR objc/45878
4739         * gimple-fold.c (gimple_fold_obj_type_ref): Leave OBJ_TYPE_REFs
4740         alone if there are no virtual methods.
4741
4742 2010-10-13  Richard Henderson  <rth@redhat.com>
4743
4744         * expr.c (build_personality_function): Take parameter LANG instead
4745         of parameter NAME.  Build the name based on the lang prefix and the
4746         unwind method in use.
4747         * tree.c (lhd_gcc_personality): Update call to
4748         build_personality_function.
4749
4750 2010-10-13  Richard Guenther  <rguenther@suse.de>
4751
4752         PR objc/45878
4753         * tree-ssa-ccpc (ccp_fold_stmt): Use gimple_fold_obj_type_ref.
4754
4755 2010-10-13  Eric Botcazou  <ebotcazou@adacore.com>
4756
4757         * cse.c (cse_insn): Fix thinko in the canonicalization of USE insns.
4758         Canonicalize input operands of ASM_OPERANDS insns.
4759
4760 2010-10-13  Richard Guenther  <rguenther@suse.de>
4761
4762         PR tree-optimization/45788
4763         * cgraphunit.c (cgraph_redirect_edge_call_stmt_to_callee): Delay
4764         EH update until fixup-cfg.
4765
4766 2010-10-13  Julian Brown  <julian@codesourcery.com>
4767
4768         * config/arm/arm.h (REG_CLASS_CONTENTS): Remove soft frame pointer
4769         from CORE_REGS and GENERAL_REGS classes.
4770         * config/arm/arm.md (*thumb1_movsi_insn): Ignore all parts of
4771         final constraint for register preferencing.
4772
4773 2010-10-13  Richard Guenther  <rguenther@suse.de>
4774
4775         PR tree-optimization/45970
4776         * tree-ssa-alias.h (stmt_kills_ref_p): Declare.
4777         * tree-ssa-alias.c (stmt_kills_ref_p_1): New function.
4778         (stmt_kills_ref_p): Likewise.
4779         * tree-ssa-dse.c (dse_optimize_stmt): Use it.
4780
4781 2010-10-13  Richard Guenther  <rguenther@suse.de>
4782
4783         PR tree-optimization/45982
4784         * tree-ssa-structalias.c (make_constraints_to): New function.
4785         (make_constraint_to): Implement in terms of make_constraints_to.
4786         (find_func_aliases): Properly make return values of pure/const
4787         functions escape if they assign to sth that is not a pointer.
4788
4789 2010-10-13  Richard Guenther  <rguenther@suse.de>
4790
4791         PR middle-end/45874
4792         * cgraphunit.c (cgraph_redirect_edge_call_stmt_to_callee):
4793         Fixup the CFG when EH was fixed up.
4794
4795 2010-10-13  Ira Rosen  <irar@il.ibm.com>
4796
4797         * tree-vect-slp.c (vect_get_constant_vectors): Fix comment.
4798         Use operand's type for POINTER_PLUS_EXPR.
4799
4800 2010-10-13  Alexandre Oliva  <aoliva@redhat.com>
4801
4802         * c-parser.c (c_parser_for_statement): Initialize incr.
4803
4804 2010-10-12  Xinliang David Li  <davidxl@google.com>
4805
4806         PR tree-optimization/45972
4807         * tree-ssa-uninit.c (compute_uninit_opnds_pos): Skip phis
4808         with too many arguments.
4809
4810 2010-10-12  Jakub Jelinek  <jakub@redhat.com>
4811
4812         PR fortran/45636
4813         * tree-ssa-forwprop.c: Include expr.h.
4814         (constant_pointer_difference, simplify_builtin_call): New functions.
4815         (tree_ssa_forward_propagate_single_use_vars): Call
4816         simplify_builtin_call on builtin calls.
4817
4818 2010-10-12  Eric Botcazou  <ebotcazou@adacore.com>
4819
4820         * config/sparc/sparc.md (*adddi3_insn_sp32): Rename.
4821         (*adddi3_extend_sp32): Likewise.
4822         (*subdi3_insn_sp32): Likewise.
4823         (*subdi3_extend_sp32): Likewise.
4824         (*negdi2_sp32): Use negative test for consistency.
4825
4826 2010-10-12  Nathan Froyd  <froydnj@codesourcery.com>
4827
4828         * libgcc2.h: Use __SIZEOF_DOUBLE__ instead of LIBGCC2_DOUBLE_TYPE_SIZE.
4829         (LIBGCC2_DOUBLE_TYPE_SIZE): Delete.
4830         * config/fixed-bit.h: Likewise.
4831         * config/rx/rx.h (LIBGCC2_DOUBLE_TYPE_SIZE): Delete.
4832         * config/sh/sh.h (LIBGCC2_DOUBLE_TYPE_SIZE): Delete.
4833         * system.h (LIBGCC2_DOUBLE_TYPE_SIZE): Poison.
4834         * doc/tm.texi.in (LIBGCC2_HAS_DF_MODE): Use DOUBLE_TYPE_SIZE.
4835         (DF_SIZE): Likewise.
4836         * doc/tm.texi: Regenerate.
4837
4838 2010-10-12  Nathan Froyd  <froydnj@codesourcery.com>
4839
4840         * config/rs6000/predicates.md (scc_rev_comparison_operator): New.
4841         * config/rs6000/rs6000.md (*isel_reversed_signed_<mode>): New.
4842         (*isel_reversed_unsigned_<mode>): New.
4843         * config/rs6000/rs6000.c (output_isel): Accept GE/GEU/LE/LEU/NE
4844         as valid comparisons and adjust operands and output appropriately.
4845         (rs6000_rtx_costs) <CONST_INT>: Accept NE as a cost-0 outer_code.
4846
4847 2010-10-12  Chung-Lin Tang  <cltang@codesourcery.com>
4848
4849         * config/arm/arm.h (ARM_EXPAND_ALIGNMENT): Rename from
4850         DATA_ALIGNMENT and add COND parameter. Update comments above.
4851         (DATA_ALIGNMENT): Use ARM_EXPAND_ALIGNMENT, with !optimize_size.
4852         (LOCAL_ALIGNMENT): Use ARM_EXPAND_ALIGNMENT, with !flag_conserve_stack.
4853
4854 2010-10-12  H.J. Lu  <hongjiu.lu@intel.com>
4855
4856         PR bootstrap/45958
4857         * exec-tool.in: Support '-plugin' as the second option to the linker.
4858
4859 2010-10-12  Richard Henderson  <rth@redhat.com>
4860
4861         PR middle-end/45962
4862         * cfgexpand.c (add_stack_var): Ensure every variable has 1 byte.
4863         (expand_stack_vars): Assert large base allocated when used.
4864
4865 2010-10-12  Richard Guenther  <rguenther@suse.de>
4866
4867         * tree-ssa-structalias.c (get_constraint_for_1): Constants
4868         only point to nonlocal, not anything.
4869
4870 2010-10-11  Hariharan Sandanagobalane  <hariharan@picochip.com>
4871
4872         * config/picochip/picochip.c (TARGET_EXCEPT_UNWIND_INFO): Use sjlj
4873         unwind info for exceptions.
4874
4875 2010-10-12  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
4876
4877         PR testsuite/45851
4878         * doc/sourcebuild.texi (LTO Testing, dg-extra-ld-options):
4879         Document optional target selector.
4880
4881 2010-10-12  Joseph Myers  <joseph@codesourcery.com>
4882
4883         * flag-types.h: New.
4884         * Makefile.in (TH_H): Include $(OPTIONS_H) instead of $(FLAGS_H).
4885         (FLAGS_H): Include flag-types.h.  Include $(OPTIONS_H) instead of
4886         options.h.
4887         (OPTIONS_H): Define.
4888         (c-family/c-opts.o, lto-opts.o, opts.o): Use $(OPTIONS_H) instead
4889         of options.h.
4890         * configure.ac (tm_include_list): Include options.h not flags.h.
4891         * configure: Regenerate.
4892         * flags.h: Include flag-types.h.  Include options.h at top of file
4893         again.
4894         (enum debug_info_type, enum debug_info_level, enum
4895         debug_info_usage, enum symbol_visibility, struct visibility_flags,
4896         enum ira_algorithm, enum ira_region, enum excess_precision, enum
4897         graph_dump_types, enum stack_check_type,
4898         enum warn_strict_overflow_code): Move to flag-types.h
4899         * opth-gen.awk: Include flag-types.h in options.h.
4900
4901 2010-10-12  Jakub Jelinek  <jakub@redhat.com>
4902
4903         * expr.c (store_expr): Share code for STRING_CST and
4904         MEM_REF of &STRING_CST cases.  Don't require BLKmode, instead
4905         check if target is a MEM.
4906
4907         * rtl.h: Include hashtab.h.
4908         (iterative_hash_rtx): New prototype.
4909         * rtl.c (iterative_hash_rtx): New function.
4910         * dwarf2out.c (dw_loc_list_node): Add hash and emitted fields.
4911         (output_loc_list): Return immediately if emitted is set, set it.
4912         (hash_loc_operands, hash_locs, hash_loc_list,
4913         compare_loc_operands, compare_locs, loc_list_hash, loc_list_eq,
4914         optimize_location_lists_1, optimize_location_lists): New function.
4915         (dwarf2out_finish): Call optimize_location_lists.
4916         * Makefile.in (RTL_BASE_H): Depend on $(HASHTAB_H).
4917
4918 2010-10-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4919
4920         PR testsuite/45974
4921         Revert:
4922         * Makefile.in ($(lang_checks_parallel))
4923         ($(lang_checks_parallelized)): Use single quotes for
4924         $(RUNTESTFLAGS), to allow passing quoted content.
4925
4926 2010-10-11  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
4927
4928         * config/pa/linux-atomic.c (__sync_val_compare_and_swap_4): Return
4929         actual_oldval.  Use __builtin_expect.
4930         (SUBWORD_VAL_CAS): Likewise.
4931
4932 2010-10-11  Nathan Froyd  <froydnj@codesourcery.com>
4933
4934         * recog.c (nonmemory_operand): Call immediate_operand for
4935         CONSTANT_P operands.
4936
4937 2010-10-11  Uros Bizjak  <ubizjak@gmail.com>
4938
4939         * config/i386/i386.md (movmem<mode>): Macroize expander from
4940         movmem{si,di} using SWI48 mode iterator.
4941         (*strmovsi_1): Macroize insn pattern from *strmovsi_1 and
4942         *strmovsi_rex_1 using P mode iterator.
4943         (*strmovhi_1): Ditto from *strmovhi_1 and *strmovhi_rex_1.
4944         (*strmovqi_1): Ditto from *strmovqi_1 and *strmovqi_rex_1.
4945         (*rep_movsi): Ditto from *rep_movsi and *rep_movsi_rex64.
4946         (*rep_movqi): Ditto from *rep_movqi and *rep_movqi_rex64.
4947         (setmem<mode>): Macroize expander from setmem{si,di} using
4948         SWI48 mode iterator.
4949         (*strsetsi_1): Macroize insn pattern from *strsetsi_1 and
4950         *strsetsi_rex_1 using P mode iterator.
4951         (*strsethi_1): Ditto from *strsethi_1 and *strsethi_rex_1.
4952         (*strsetqi_1): Ditto from *strsetqi_1 and *strsetqi_rex_1.
4953         (*rep_stossi): Ditto from *rep_stossi and *rep_stossi_rex64.
4954         (*rep_stosqi): Ditto from *rep_stosqi and *rep_stosqi_rex64.
4955         (*cmpstrnqi_nz_1): Ditto from *cmpstrnqi_nz_1 and *cmpstrnqi_nz_rex_1.
4956         (*cmpstrnqi_1): Ditto from *cmpstrnqi_1 and *cmpstrnqi_rex_1.
4957         (strlen<mode>): Macroize expander from strlen{si,di} using SWI48x
4958         mode iterator.
4959         (*strlenqi_1): Macroize insn pattern from *strlenqi_1 and
4960         *strlenqi_rex_1 using P mode iterator.
4961
4962 2010-10-11  Bernd Schmidt  <bernds@codesourcery.com>
4963
4964         PR bootstrap/45445
4965         * ira-lives.c (mark_pseudo_reg_live, mark_pseudo_reg_dead): New
4966         static functions.
4967         (mark_ref_live, mark_ref_dead): Use them.
4968         (make_pseudo_conflict): New arg ORIG_DREG.  All callers changed.
4969         Save the original reg, and use the new functions.
4970         (check_and_make_def_use_conflict): New arg ORIG_DREG.  All callers
4971         changed.
4972         (check_and_make_def_conflict): Save the original reg.
4973
4974 2010-10-11  Martin Jambor  <mjambor@suse.cz>
4975
4976         PR middle-end/45699
4977         * gimple-fold.c (gimple_fold_obj_type_ref_known_binfo): Choose among
4978         thunks.
4979
4980 2010-10-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4981
4982         * Makefile.in ($(lang_checks_parallel))
4983         ($(lang_checks_parallelized)): Use single quotes for
4984         $(RUNTESTFLAGS), to allow passing quoted content.
4985
4986         PR bootstrap/35855
4987         * opt-functions.awk (BEGIN): New section.
4988         (lower, upper, digit, alnum): New variables.
4989         (static_var, opt_sanitized_name): Use alnum instead of character
4990         classes, for non-C locale.
4991         * optc-gen.awk: Likewise.
4992         * opth-gen.awk: Likewise.
4993
4994 2010-10-11  Anatoly Sokolov  <aesok@post.ru>
4995
4996         * target.def (preferred_reload_class): New hook.
4997         * doc/tm.texi.in (TARGET_PREFERRED_RELOAD_CLASS): Document.
4998         * doc/tm.texi: Regenerate.
4999         * targhooks.c (default_preferred_reload_class): New function.
5000         * targhooks.h (default_preferred_reload_class): Declare.
5001         * reload.c (find_dummy_reload): Change preferred_class variable type
5002         from enum reg_class to reg_class_t. Use TARGET_PREFERRED_RELOAD_CLASS
5003         target hook.
5004         (find_reloads): Change goal_alternative array type from int to
5005         reg_class_t. Use TARGET_PREFERRED_RELOAD_CLASS target hook.
5006         (push_reload, find_reloads_address_part): Use
5007         TARGET_PREFERRED_RELOAD_CLASS target hook.
5008         * reload1.c (emit_input_reload_insns): Ditto.
5009         * ira-costs.c (copy_cost): Use TARGET_PREFERRED_RELOAD_CLASS target
5010         hook. Change rclass argument and secondary_class variable types from
5011         'enum reg_class' to reg_class_t.
5012
5013         * config/i386/i386.h (PREFERRED_RELOAD_CLASS): Remove.
5014         * config/i386/i386-protos (ix86_preferred_reload_class): Remove.
5015         * config/i386/i386.c (ix86_preferred_reload_class): Make static.
5016         Change regclass argument and result types from enum reg_class to
5017         reg_class_t.
5018         (TARGET_PREFERRED_RELOAD_CLASS): Define.
5019
5020 2010-10-11  Eric Botcazou  <ebotcazou@adacore.com>
5021
5022         * simplify-rtx.c (simplify_unary_operation_1): Use unsigned arithmetics
5023         in masking operations.
5024         (simplify_const_unary_operation): Likewise.
5025         (simplify_binary_operation_1): Likewise.
5026         (simplify_const_binary_operation): Likewise.
5027         (simplify_const_relational_operation): Likewise.
5028         (simplify_ternary_operation): Likewise.
5029         (simplify_immed_subreg): Likewise.
5030
5031 2010-10-11  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
5032
5033         PR middle-end/45862
5034         * doc/tm.texi.in (SUPPORTS_WEAK): Update.
5035         (TARGET_SUPPORTS_WEAK): New.
5036         * doc/tm.texi: Regenerate.
5037         * defaults.h (SUPPORTS_WEAK): Update comment.
5038         (TARGET_SUPPORTS_WEAK): New.
5039         * dwarf2asm.c (USE_LINKONCE_INDIRECT): Update define.
5040         * varasm.c (assemble_external): Use TARGET_SUPPORTS_WEAK instead of
5041         SUPPORTS_WEAK.
5042         (merge_weak, declare_weak, do_assemble_alias, supports_one_only,
5043         make_decl_one_only): Likewise.
5044         * config/pa/som.h (SUPPORTS_WEAK): Rename defines to
5045         TARGET_SUPPORTS_WEAK.
5046         (SUPPORTS_ONE_ONLY, MAKE_DECL_ONE_ONLY): Use TARGET_SUPPORTS_WEAK
5047         instead of SUPPORTS_WEAK.
5048
5049 2010-10-11  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
5050
5051         * config/sparc/gmon-sol2.c: Don't include coretypes.h, tm.h.
5052
5053 2010-10-11  Nathan Froyd  <froydnj@codesourcery.com>
5054
5055         * vec.h (VEC_qsort): Define.
5056         * dbxout.c (output_used_types): Use it.
5057         * df-scan.c (df_sort_and_compress_refs): Likewise.
5058         (df_sort_and_compress_mws): Likewise.
5059         * genautomata.c (uniq_sort_alt_states): Likewise.
5060         (evaluate_equiv_classes): Likewise.
5061         (output_trans_table): Likewise.
5062         (output_state): Likewise.
5063         * gimplify.c (compare_case_labels): Likewise.
5064         * graphite-sese-to-poly.c (graphite_sort_dominated_info): Likewise.
5065         * ipa.c (build_cdtor_fns): Likewise.
5066         * lto.c (lto_wpa_write_files): Likewise.
5067         * sel-sched.c (fill_vec_av_set): Likewise.
5068         * tree-predcom.c (determine_roots_comp): Likewise.
5069         * tree-sra.c (sort_and_spliace_var_accesses): Likewise.
5070         (splice_param_accesses): Likewise.
5071         * tree-ssa-live.c (dump_enumerated_decls): Likewise.
5072         * tree-ssa-reassoc.c (undistribute_ops_list): Likewise.
5073         (reassociate_bb): Likewise.
5074         * tree-ssa-sccvn.c (sort_scc): Likewise.
5075         * tree-ssa-structalias.c (sort_fieldstack): Likewise.
5076
5077 2010-10-11  Ian Lance Taylor  <iant@google.com>
5078
5079         * tree.h (TREE_THIS_NOTRAP): Use TREE_CHECK5.
5080         * emit-rtl.c (set_mem_attributes_minus_bitpos): Only check
5081         TREE_THIS_NOTRAP when appropriate.
5082         (get_spill_slot_decl): Don't set TREE_THIS_NOTRAP on the new VAR_DECL.
5083         * gimplify.c (gimplify_expr): Copy NOTRAP from INDIRECT_REF to
5084         newly created MEM_REF.
5085
5086 2010-10-11  Hariharan Sandanagobalane  <hariharan@picochip.com>
5087
5088         Nathan Froyds patch to hooks FUNCTION_ARG etc.
5089         * config/picochip/picochip-protos.h (picochip_function_arg): Delete.
5090         (picochip_incoming_function_arg): Delete.
5091         (picochip_arg_advance): Delete.
5092         * config/picochip/picochip.h (FUNCTION_ARG): Delete.
5093         (FUNCTION_INCOMING_ARG): Delete.
5094         (FUNCTION_ARG_ADVANCE): Delete.
5095         * config/picochip/picochip.c (picochip_function_arg): Take a
5096         const_tree and a bool.
5097         (picochip_incoming_function_arg): Likewise.
5098         (picochip_arg_advance): Likewise.
5099         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_INCOMING_ARG): Define.
5100         (TARGET_FUNCTION_ARG_ADVANCE): Define.
5101
5102 2010-10-11  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
5103
5104         PR middle-end/45955
5105         * ipa.c (build_cdtor): Delete endless loop.
5106
5107 2010-10-07  Andi Kleen  <ak@linux.intel.com>
5108
5109         * Makefile.in (MOSTLYCLEANFILES): Remove cc1*dummy, add
5110         checksum-options.
5111         (checksum-options): Add.
5112         (cc1-dummy): Remove.
5113         (cc1-checksum): Change to run checksum over object files
5114         and options only.
5115         * dummy-checksum.c: Remove.
5116         * genchecksum.c: Update copyright.
5117         (usage): Allow multiple arguments.
5118         (BLOCKSIZE): Add.
5119         (dosum): Change for incremental checksum. Remove C output.
5120         (main): Iterate over all argument files. Add C output.
5121
5122 2010-10-11  Joseph Myers  <joseph@codesourcery.com>
5123
5124         * params.c (set_param_value_internal): New.
5125         (set_param_value): Use set_param_value_internal.
5126         (maybe_set_param_value, set_default_param_value): New.
5127         * params.h (PARAM_VALUE, PARAM_SET_P): Make into rvalues.
5128         (maybe_set_param_value, set_default_param_value): Declare.
5129         * config/arm/arm.c (arm_option_override): Use maybe_set_param_value.
5130         * config/i386/i386.c (ix86_option_override_internal): Use
5131         maybe_set_param_value.
5132         * config/ia64/ia64.c (ia64_option_default_params,
5133         TARGET_OPTION_DEFAULT_PARAMS): New.
5134         (ia64_option_optimization): Move some code to
5135         ia64_option_default_params.
5136         * config/picochip/picochip.c (picochip_option_override): Use
5137         maybe_set_param_value.
5138         * config/rs6000/rs6000.c (rs6000_option_default_params,
5139         TARGET_OPTION_DEFAULT_PARAMS): New.
5140         (rs6000_option_override_internal): Use maybe_set_param_value.
5141         (rs6000_option_optimization): Move some code to
5142         rs6000_option_default_params.
5143         * config/s390/s390.c (s390_option_override): Use maybe_set_param_value.
5144         * config/sh/sh.c (sh_option_default_params,
5145         TARGET_OPTION_DEFAULT_PARAMS): New.
5146         (sh_option_optimization): Move some code to sh_option_default_params.
5147         * config/sparc/sparc.c (sparc_option_override): Use
5148         maybe_set_param_value.
5149         * config/spu/spu.c (spu_option_default_params,
5150         TARGET_OPTION_DEFAULT_PARAMS): New.
5151         (spu_option_optimization): Move some code to spu_option_default_params.
5152         (spu_option_override): Use maybe_set_param_value.
5153         * doc/tm.texi.in (TARGET_OPTION_DEFAULT_PARAMS): New @hook.
5154         * doc/tm.texi: Regenerate.
5155         * ggc-common.c (init_ggc_heuristics): Use set_default_param_value.
5156         * opts.c (init_options_once): Use PARAM_VALUE not direct access to
5157         compiler_params.
5158         (default_options_optimization): Use maybe_set_param_value.
5159         (finish_options): Use maybe_set_param_value.
5160         * target.def (target_option.default_params): New hook.
5161         * toplev.c (general_init): Call targetm.target_option.default_params.
5162
5163 2010-10-11  Ira Rosen  <irar@il.ibm.com>
5164
5165         PR tree-optimization/45902
5166         * tree-vect-slp.c (vect_get_constant_vectors): Use statement's
5167         vector type for constants, unless it's a pointer.
5168
5169 2010-10-11  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
5170
5171         * config/s390/s390.md (*mov<mode>cc): lgoc -> locg and stgoc -> stocg.
5172
5173 2010-10-11  Jakub Jelinek  <jakub@redhat.com>
5174
5175         PR target/45870
5176         * config/i386/i386.c (ix86_delegitimize_tls_address): New function.
5177         (ix86_delegitimize_address): Use it.
5178
5179 2010-10-10  Eric Botcazou  <ebotcazou@adacore.com>
5180
5181         * opt-functions.awk (opt_sanitized_name): Remove gdwarf+ handling.
5182
5183 2010-10-10  Uros Bizjak  <ubizjak@gmail.com>
5184
5185         * config/alpha/alpha.c (alpha_setup_incoming_varargs): Pass pointer
5186         to cum struct in the call to function_arg_advance.
5187         (alpha_function_arg_advance): Mark named as unused.
5188
5189 2010-10-10  Richard Sandiford  <rdsandiford@googlemail.com>
5190
5191         * config/mips/mips.c (mips_handle_option): Make "value" with
5192         ATTRIBUTE_UNUSED.
5193
5194 2010-10-09  Richard Henderson  <rth@redhat.com>
5195
5196         PR rtl-opt/33721
5197         * explow.c (allocate_dynamic_stack_space): Add REQUIRED_ALIGN parm,
5198         remove TARGET parm, convert KNOWN_ALIGN parm to SIZE_ALIGN.  Honor
5199         required_align, tidy the code a bit.  Emit split_stack code in the
5200         right place.  Mark the return value with the alignment properly.
5201         * expr.h (allocate_dynamic_stack_space): Update decl.
5202         * builtins.c (expand_builtin_apply): Update call to
5203         allocate_dynamic_stack_space.
5204         (expand_builtin_alloca): Likewise.  Remove TARGET parameter.
5205         * calls.c (initialize_argument_information): Update call to
5206         allocate_dynamic_stack_space.
5207         (expand_call): Likewise.
5208
5209         * cfgexpand.c (get_decl_align_unit): Don't limit alignment.
5210         Don't update_stack_alignment here.
5211         (alloc_stack_frame_space): Make ALIGN unsigned.
5212         (stack_var_cmp): Sort by alignment too.
5213         (partition_stack_vars): Don't merge large and small alignment vars.
5214         (expand_one_stack_var_at): Add BASE and BASE_ALIGN parameters.
5215         Take care when BASE is not virtual_stack_vars_rtx.
5216         (expand_stack_vars): Allocate dynamic stack space for large
5217         alignment variables.
5218         (expand_one_stack_var): Update all to expand_one_stack_var_at.
5219         (defer_stack_allocation): True for large alignment vars.
5220         (update_stack_alignment): Merge into ...
5221         (expand_one_var): ... here.
5222         (gimple_expand_cfg): Place code from expand_stack_vars.
5223
5224 2010-10-09  Nathan Froyd  <froydnj@codesourcery.com>
5225
5226         * config/pdp11/pdp11.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
5227         * config/pdp11/pdp11.c (pdp11_function_arg): New function.
5228         (pdp11_function_arg_advance): New function.
5229         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
5230
5231 2010-10-09  Nathan Froyd  <froydnj@codesourcery.com>
5232
5233         * libgcc2.h: Use __SIZEOF_LONG_LONG__ instead of LONG_LONG_TYPE_SIZE.
5234         * libgcc2.c: Likewise.
5235
5236 2010-10-09  Richard Guenther  <rguenther@suse.de>
5237
5238         PR lto/45956
5239         * lto-streamer-in.c (lto_register_var_decl_in_symtab):
5240         Properly check if a decl is an automatic var.
5241
5242 2010-10-09  Richard Guenther  <rguenther@suse.de>
5243
5244         PR lto/45947
5245         * tree.c (free_lang_data_in_cgraph): Properly walk the varpool.
5246
5247 2010-10-09  Nathan Froyd  <froydnj@codesourcery.com>
5248
5249         * config/mmix/mmix-protos.h (mmix_function_arg): Delete.
5250         * config/mmix/mmix.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
5251         * config/mmix/mmix.c (mmix_function_arg): Rename to...
5252         (mmix_function_arg_1): ...this.  Make static.  Take a const_tree and
5253         bool arguments.
5254         (mmix_function_arg): New function.
5255         (mmix_function_incoming_arg): New function.
5256         (mmix_function_arg_advance): New function.
5257         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_INCOMING_ARG): Define.
5258         (TARGET_FUNCTION_ARG_ADVANCE): Define.
5259
5260 2010-10-09  Nathan Froyd  <froydnj@codesourcery.com>
5261
5262         * config/vax/vax.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
5263         * config/vax/vax.c (vax_function_arg): New function.
5264         (vax_function_arg_advance): New function.
5265         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
5266
5267 2010-10-09  Nathan Froyd  <froydnj@codesourcery.com>
5268
5269         * config/pa/pa-protos.h (function_arg): Delete.
5270         * config/pa/pa.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
5271         * config/pa/pa.c (function_arg): Rename to...
5272         (pa_function_arg): ...this.  Make static.  Take a const_tree and
5273         a bool.
5274         (pa_function_arg_advance): New function.
5275         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
5276
5277 2010-10-09  Nathan Froyd  <froydnj@codesourcery.com>
5278
5279         * config/m68k/m68k.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
5280         * config/m68k/m68k.c (m68k_function_arg): New function.
5281         (m68k_function_arg_advance): New function.
5282         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
5283
5284 2010-10-09  Nathan Froyd  <froydnj@codesourcery.com>
5285
5286         * config/avr/avr-protos.h (function_arg): Delete.
5287         (function_arg_advance): Delete.
5288         * config/avr/avr.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
5289         * config/avr/avr.c (function_arg): Rename to...
5290         (avr_function_arg): ...this.  Make static.  Take a const_tree and
5291         a bool.
5292         (function_arg_advance): Rename to...
5293         (avr_function_arg_advance): ...this.  Make static.  Take a
5294         const_tree and a bool.
5295         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
5296
5297 2010-10-09  Nathan Froyd  <froydnj@codesourcery.com>
5298
5299         * config/alpha/alpha-protos.h (function_arg): Delete.
5300         * config/alpha/alpha.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
5301         * config/alpha/vms.h (FUNCTION_ARG_ADVANCE): Delete.
5302         * config/alpha/alpha.c (function_arg): Rename to...
5303         (alpha_function_arg): ...this.  Make static.  Take a const_tree and
5304         a bool.  Delete TARGET_ABI_UNICOSMK code.
5305         (alpha_function_arg_advance): New function.
5306         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
5307
5308 2010-10-09  Nathan Froyd  <froydnj@codesourcery.com>
5309
5310         * config/mep/mep-protos.h (mep_function_arg): Delete.
5311         (mep_function_arg_advance): Delete.
5312         * config/mep/mep.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
5313         * config/mep/mep.c (mep_function_arg): Make static.  Take a
5314         const_tree and a bool.
5315         (mep_function_arg_advance): Likewise.
5316         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
5317
5318 2010-10-09  Richard Guenther  <rguenther@suse.de>
5319
5320         PR tree-optimization/45945
5321         * tree-ssa.c (execute_update_addresses_taken): Fixup LHS scanning.
5322
5323 2010-10-09  Eric Botcazou  <ebotcazou@adacore.com>
5324
5325         PR tree-optimization/45612
5326         * ipa-split.c (test_nonssa_use): Remove bogus ATTRIBUTE_UNUSED.
5327         Test LABEL_DECLs as well.  Fix formatting issues.
5328         (verify_non_ssa_vars): Return false for a GIMPLE_LABEL statement
5329         whose label is present in NON_SSA_VARS.
5330         (mark_nonssa_use): Remove bogus ATTRIBUTE_UNUSED.  Handle LABEL_DECLs
5331         as well.  Fix formatting issues.
5332         (visit_bb): Fix typos and formatting issue.
5333
5334 2010-10-09  Nathan Froyd  <froydnj@codesourcery.com>
5335
5336         PR tree-optimization/45950
5337         * tree-ssa-sccvn.c (init_vn_nary_op_from_pieces): Consult length
5338         before initializing vno->op.
5339
5340 2010-10-09  Ralf Corsépius  <ralf.corsepius@rtems.org>
5341
5342         * config.gcc (bfin*-rtems*): Add newlib-stdint.h.
5343         * config.gcc (lm32*-rtems*): Add newlib-stdint.h.
5344
5345 2010-10-08  H.J. Lu  <hongjiu.lu@intel.com>
5346
5347         PR target/45913
5348         * config/i386/i386.c (ix86_binary_operator_ok): Support
5349         "andhi/andsi/anddi" as a zero-extending move.
5350
5351 2010-10-08  Nathan Froyd  <froydnj@codesourcery.com>
5352
5353         * builtins.c (fold_call_stmt): Don't copy gimple call arguments
5354         into a temporary array.
5355
5356 2010-10-08  Jakub Jelinek  <jakub@redhat.com>
5357
5358         PR tree-optimization/45903
5359         * simplify-rtx.c (simplify_subreg): Optimize lowpart SUBREG
5360         of {A,L}SHIFTRT of MEM.
5361
5362 2010-10-08  Richard Guenther  <rguenther@suse.de>
5363
5364         * lto-streamer-in.c (lto_input_ts_decl_minimal_tree_pointers):
5365         Re-construct BLOCK_VARS.
5366         (lto_input_ts_block_tree_pointers): Do not stream BLOCK_VARS.
5367         * lto-streamer-out.c (lto_output_ts_block_tree_pointers): Likewise.
5368         * tree.c (free_lang_data_in_block): Remove.
5369         (free_lang_data_in_decl): Do not touch DECL_CONTEXT of non-PARM_DECLs.
5370         Do not touch the BLOCK tree.
5371         * expr.c (expand_expr_real_1): Allow externals.
5372
5373 2010-10-08  Richard Guenther  <rguenther@suse.de>
5374
5375         * lto-streamer-out.c (lto_output_ts_block_tree_pointers):
5376         Do not output BLOCK_SUBBLOCKS.
5377         * lto-streamer-in.c (lto_input_ts_block_tree_pointers):
5378         Reserve exact space needed for BLOCK_NONLOCALIZED_VARS.
5379         Re-construct BLOCK_SUBBLOCKS of parent block.
5380         (lto_input_ts_binfo_tree_pointers): Reserve exact space needed
5381         for BINFO_BASE_ACCESSES.
5382
5383 2010-10-08  Joseph Myers  <joseph@codesourcery.com>
5384
5385         * Makefile.in (TM_H): Include $(FLAGS_H) instead of options.h.
5386         (TREE_H): Include $(FLAGS_H) instead of options.h.
5387         (opts-common.o): Depend on $(FLAGS_H) instead of options.h.
5388         * c-objc-common.h (LANG_HOOKS_INIT_OPTIONS_STRUCT): Define.
5389         * common.opt (flag_complex_method, flag_evaluation_order,
5390         flag_ira_algorithm, flag_ira_region, flag_warn_unused_result): New
5391         Variable declarations.
5392         * configure.ac (tm_include_list): Include flags.h instead of options.h.
5393         * configure: Regenerate.
5394         * flags.h: Condition out contents for target libraries.  Include
5395         options.h at end of file.
5396         (flag_complex_method, flag_ira_algorithm, flag_ira_region,
5397         flag_evaluation_order, flag_warn_unused_result): Remove.
5398         * gcc.c (main): Intialize global_options with global_options_init.
5399         * langhooks-def.h (lhd_init_options_struct): Declare.
5400         (LANG_HOOKS_INIT_OPTIONS_STRUCT): Define.
5401         (LANG_HOOKS_INITIALIZER): Include LANG_HOOKS_INIT_OPTIONS_STRUCT.
5402         * langhooks.c (lhd_init_options_struct): New.
5403         * langhooks.h (struct lang_hooks): Add init_options_struct.
5404         Update comment on init_options.
5405         * optc-gen.awk: Generate initializer for global_options_init, not
5406         global_options.
5407         * opth-gen.awk: Condition out structure declarations for target
5408         libraries.  Declare global_options_init.
5409         * opts-common.c: Include flags.h instead of options.h.
5410         * opts.c (flag_warn_unused_result): Remove.
5411         (read_cmdline_options): Take gcc_options parameters.  Pass them to
5412         read_cmdline_option.
5413         (initial_lang_mask, initial_min_crossjump_insns,
5414         initial_max_fields_for_field_sensitive,
5415         initial_loop_invariant_max_bbs_in_loop): Define at file scope.
5416         (init_options_once): New.  Split out of decode_options.
5417         (init_options_struct): New.  Split out of decode_options.
5418         (decode_cmdline_options_to_array_default_mask): New.
5419         (default_options_optimization): New.  Split out of decode_options.
5420         (decode_options): Move most code to other functions.  Update call
5421         to read_cmdline_options.
5422         (finish_options): New.  Split out of decode_options.
5423         * opts.h (decode_options): Add gcc_options parameters.
5424         (init_options_once, init_options_struct,
5425         decode_cmdline_options_to_array_default_mask): New.
5426         * toplev.c (flag_complex_method, flag_ira_algorithm,
5427         flag_ira_region, flag_evaluation_order): Remove.
5428         (general_init): Use global_options_init for initial flag values
5429         for global_dc.
5430         (toplev_main): Call init_options_once, init_options_struct,
5431         lang_hooks.init_options_struct,
5432         decode_cmdline_options_to_array_default_mask and
5433         lang_hooks.init_option before decode_options.  Update arguments to
5434         decode_options.
5435         * tree.h: Include flags.h instead of options.h.
5436
5437 2010-10-08  Nathan Froyd  <froydnj@codesourcery.com>
5438
5439         * config/rx/rx.c (TARGET_EXCEPT_UNWIND_INFO): Define.
5440
5441 2010-10-08  Nathan Froyd  <froydnj@codesourcery.com>
5442
5443         * config/sparc/sparc-protos.h (function_arg_advance, function-arg):
5444         Delete.
5445         * config/sparc/sparc.h (FUNCTION_ARG_ADVANCE, FUNCTION_ARG): Delete.
5446         (FUNCTION_INCOMING_ARG): Delete.
5447         * config/sparc/sparc.c (scan_record_type): Const-ify tree argument.
5448         (function_arg_slotno): Likewise.  Take bool arguments.
5449         (sparc_arg_partial_bytes): Update call to it.
5450         (function_arg): Rename to...
5451         (sparc_function_arg_1): ...this.  Take bool arguments.
5452         (sparc_function_arg, sparc_function_incoming_arg): New functions.
5453         (function_arg_advance): Rename to...
5454         (sparc_function_arg_advance): ...this.  Take bool argument.
5455         (TARGET_FUNCTION_ARG_ADVANCE, TARGET_FUNCTION_ARG): Define.
5456         (TARGET_FUNCTION_INCOMING_ARG): Define.
5457
5458 2010-10-08  Nathan Froyd  <froydnj@codesourcery.com>
5459
5460         * config/bfin/bfin-protos.h (function_arg, function_arg_advance):
5461         Delete.
5462         * config/bfin/bfin.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
5463         * config/bfin/bfin.c (function_arg_advance): Rename to...
5464         (bfin_function_arg_advance): ...this.  Make static.  Take const_tree
5465         and bool arguments.
5466         (function_arg): Rename to...
5467         (bfin_function_arg): ...this.  Make static.  Take const_tree and bool
5468         arguments.
5469         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
5470
5471 2010-10-08  Nathan Froyd  <froydnj@codesourcery.com>
5472
5473         * config/score/score-protos.h (score_function_arg): Delete.
5474         (score_function_arg_advance): Delete.
5475         * config/score/score3.h (score3_function_arg_advance): Take a
5476         const_tree and a bool.
5477         (score3_function_arg): Likewise.
5478         * config/score/score7.h (score7_function_arg_advance): Likewise.
5479         (score7_function_arg): Likewise.
5480         * config/score/score3.c (score3_classify_arg): Likewise.
5481         (score3_function_arg_advance, score3_function_arg): Likewise.
5482         * config/score/score7.c (score7_classify_arg): Likewise.
5483         (score7_function_arg_advance, score7_function_arg): Likewise.
5484         * config/score/score.c (score_function_arg_advance): Likewise.
5485         (score_function_arg): Likewise.  De-const-ify `cum' argument.
5486         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
5487
5488 2010-10-08  Nathan Froyd  <froydnj@codesourcery.com>
5489
5490         * config/s390/s390-protos.h (s390_function_arg_advance): Delete.
5491         (s390_function_arg): Delete.
5492         * config/s390/s390.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
5493         * config/s390/s390.c (s390_function_arg_float): Take a const_tree.
5494         (s390_function_arg_integer): Likewise.
5495         (s390_function_arg_advance): Make static.  Take a const_tree and
5496         a bool.
5497         (s390_function_arg): Likewise.
5498         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
5499
5500 2010-10-08  Nathan Froyd  <froydnj@codesourcery.com>
5501
5502         * config/spu/spu-protos.h (spu_function_arg): Delete.
5503         * config/spu/spu.h (FUNCTION_ARG): Delete.
5504         (FUNCTION_ARG_ADVANCE): Move code to ...
5505         * config/spu/spu.c (spu_function_arg_advance): New function.
5506         (spu_function_arg): Make static.  Take a const_tree and a bool.
5507         (spu_setup_incoming_varargs): Call spu_function_arg_advance.
5508         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
5509
5510 2010-10-08  Nathan Froyd  <froydnj@codesourcery.com>
5511
5512         * config/rx/rx.c (TARGET_EXCEPT_UNWIND_INFO): Define.
5513
5514 2010-10-08  Nathan Froyd  <froydnj@codesourcery.com>
5515
5516         * tree-ssa-sccvn.c (init_vn_nary_op_from_pieces): New function.
5517         (init_vn_nary_op_from_op): New function.
5518         (init_vn_nary_op_from_stmt): New function.
5519         (vn_nary_op_lookup_1): New function.
5520         (sizeof_vn_nary_op): New function.
5521         (alloc_vn_nary_op_noinit): New function.
5522         (alloc_vn_nary_op): New function.
5523         (vn_nary_op_insert_into): New function.
5524         (vn_nary_op_lookup_pieces): Rewrite to use new helper functions.
5525         (vn_nary_op_lookup): Likewise.
5526         (vn_nary_op_lookup_stmt): Likewise.
5527         (vn_nary_op_insert_pieces): Likewise.
5528         (vn_nary_op_insert): Likewise.
5529         (vn_nary_op_insert_stmt): Likewise.
5530         (copy_nary): Likewise.
5531         (set_value_id_for_result): New function.
5532         (set_hashtable_value_ids): Call it.
5533
5534 2010-10-08  Nathan Froyd  <froydnj@codesourcery.com>
5535
5536         * config/fr30/fr30.c (TARGET_EXCEPT_UNWIND_INFO): Define.
5537         * config/fr30/fr30.md (leave_func): Rewrite without post_inc.
5538
5539 2010-10-08  Nathan Froyd  <froydnj@codesourcery.com>
5540
5541         * config/mcore/mcore.h (INCOMING_RETURN_ADDR_RTX): Define.
5542         * config/mcore/mcore.c (TARGET_EXCEPT_UNWIND_INFO): Define.
5543
5544 2010-10-08  Alexandre Oliva  <aoliva@redhat.com>
5545
5546         PR debug/45656
5547         * cse.c (cse_extended_basic_block): Preserve cc0 info across
5548         debug isnsn.  Skip them when searching for cc0 setter.
5549         (set_live_p): Skip debug insns when searching for cc0 user.
5550
5551 2010-10-08  Alexandre Oliva  <aoliva@redhat.com>
5552
5553         PR debug/45673
5554         PR debug/45604
5555         PR debug/45419
5556         PR debug/45408
5557         * tree-pretty-print.c (dump_generic_node): Explicitly dump the
5558         type of MEM_REFs to INTEGER_CSTs.
5559
5560 2010-10-07  Nathan Froyd  <froydnj@codesourcery.com>
5561
5562         * config/m68hc11/m68hc11.c (m68hc11_print_operand): Call
5563         m68hc11_print_operand_address.
5564
5565 2010-10-07  Nathan Froyd  <froydnj@codesourcery.com>
5566
5567         * builtins.c (rewrite_call_expr): Move code to...
5568         (rewrite_call_expr_valist): ...here.  Call build_call_expr_loc_array.
5569         (rewrite_call_expr_array): New function.
5570         (fold_builtin_sprintf_chk_1): New function.
5571         (fold_builtin_sprintf_chk): Call it.
5572         (gimple_fold_builtin_sprintf_chk): Likewise.
5573         (fold_builtin_snprintf_chk_1): New function.
5574         (fold_builtin_snprintf_chk): Call it.
5575         (gimple_fold_builtin_snprintf_chk): Likewise.
5576         (gimple_rewrite_call_expr): Delete.
5577
5578 2010-10-07  Dave Korn  <dave.korn.cygwin@gmail.com>
5579
5580         * config.host: Update copyright year.
5581
5582 2010-10-07  Dave Korn  <dave.korn.cygwin@gmail.com>
5583
5584         * config.host (host_lto_plugin_soname): New shell variable.
5585         * configure.ac (LTOPLUGINSONAME): Add an AC_DEFINE for the above.
5586         * config.in: Regenerate.
5587         * configure: Regenerate.
5588         * gcc.c (main): Use LTOPLUGINSONAME instead of hard-coding name of
5589         LTO plugin shared library.
5590
5591 2010-10-07  Richard Henderson  <rth@redhat.com>
5592
5593         * target.h (enum unwind_info_type): Move ...
5594         * coretypes.h: ... here.
5595
5596 2010-10-07  Nicola Pero  <nicola.pero@meta-innovation.com>
5597
5598         * doc/objc.texi (Fast enumeration protocol): Mention that
5599         'unsigned int' can also be used instead of 'unsigned long' in
5600         countByEnumeratingWithState:objects:count:.
5601
5602 2010-10-07  Martin Jambor  <mjambor@suse.cz>
5603
5604         * tree-sra.c (struct access): New field grp_assignment_write.
5605         (dump_access): Dump grp_assignment_write.
5606         (build_accesses_from_assign): Set grp_assignment_write.
5607         (sort_and_splice_var_accesses): Aggregate grp_assignment_write.
5608         (mark_read_status): Renamed to mark_rw_status, individual values
5609         renamed too.
5610         (analyze_access_subtree): Changed type of mark_write to
5611         mark_read_status.  Fixed propagating of mark_read and
5612         mark_write.  Changed benefit estimate.  Updated comment.
5613
5614 2010-10-07  Tejas Belagod  <tejas.belagod@arm.com>
5615
5616         PR Tree-Vect/45847
5617         * tree-vect-patterns.c (vect_recog_widen_mult_pattern): Add NULL
5618         check for vectype_out returned by get_vectype_for_scalar_type().
5619
5620 2010-10-07  Tejas Belagod  <tejas.belagod@arm.com>
5621
5622         PR target/45805
5623         * config/arm/neon.md (neon_unpack<US>_<mode>): Add 'w' to
5624         constraint, add register specifier in instruction template.
5625         (neon_vec_pack_trunc_<mode>): Likewise.
5626         (neon_vec_<US>mult_<mode>): Add register specifier to
5627         instruction template.
5628
5629 2010-10-07  Dave Korn  <dave.korn.cygwin@gmail.com>
5630
5631         * config.gcc (c_target_objs)[i?86-*-pe|i?86-*-cygwin*]: Don't add
5632         cygwin2.o.
5633         (cxx_target_objs)[i?86-*-pe|i?86-*-cygwin*]: Likewise.
5634         (extra_gcc_objs)[i?86-*-pe|i?86-*-cygwin*]: Don't add cygwin1.o.
5635         * config/i386/t-cygwin (cygwin1.o): Delete build rule.
5636         (cygwin2.o): Likewise.
5637         * config/i386/cygwin1.c: Delete file.
5638         * config/i386/cygwin2.c: Likewise.
5639         * config/i386/cygwin.h (CPP_SPEC): Remove all %{mno-cygwin} specs and
5640         make all {%!mno-cygwin} ones unconditional.
5641         (STARTFILE_SPEC): Likewise.
5642         (REAL_LIBGCC_SPEC): Likewise.
5643         (LIB_SPEC): Likewise.
5644         (CXX_WRAP_SPEC): Likewise.
5645         (LINK_SPEC): Likewise.
5646         (CYGWIN_MINGW_SUBDIR): Delete now-unused macro definition.
5647         (CYGWIN_MINGW_SUBDIR_LEN): Likewise.
5648         (cygwin_gplusplus_include_dir): Delete now-unused array.
5649         (GPLUSPLUS_INCLUDE_DIR): Don't redefine to point to it.
5650         (cygwin_gplusplus_tool_include_dir): Delete now-unused array.
5651         (GPLUSPLUS_TOOL_INCLUDE_DIR): Don't redefine to point to it.
5652         (cygwin_gplusplus_backward_include_dir): Delete now-unused array.
5653         (GPLUSPLUS_BACKWARD_INCLUDE_DIR): Don't redefine to point to it.
5654         (cygwin_local_include_dir): Delete now-unused array.
5655         (LOCAL_INCLUDE_DIR): Don't redefine to point to it.
5656         (cygwin_cross_include_dir): Delete now-unused array.
5657         (CROSS_INCLUDE_DIR): Don't redefine to point to it.
5658         (cygwin_tool_include_dir): Delete now-unused array.
5659         (TOOL_INCLUDE_DIR): Don't redefine to point to it.
5660         (cygwin_standard_include_dir): Delete now-unused array.
5661         (STANDARD_INCLUDE_DIR): Don't redefine to point to it.
5662         (GEN_CVT_ARRAY): Delete now-unused macro definition.
5663         (cvt_to_mingw): Delete now-unused array.
5664         (mingw_scan): Remove prototype of deleted function.
5665         (GCC_DRIVER_HOST_INITIALIZATION): Don't define now-unused target macro.
5666         * config/i386/cygming.opt (mcygwin): Delete target-specific option.
5667         * doc/invoke.texi (-mcygwin): Don't document removed option.
5668         (-mno-cygwin): Likewise.
5669
5670 2010-10-07  Richard Guenther  <rguenther@suse.de>
5671
5672         * machmode.h (mode_for_vector): Declare.
5673         * stor-layout.c (mode_for_vector): New function, split out from ...
5674         (layout_type): ... here.
5675         * tree-vectorizer.h (current_vector_size): Declare.
5676         * tree-vect-stmts.c (perm_mask_for_reverse): Check if the
5677         mask vector type is available.
5678         (get_vectype_for_scalar_type): Rename to ...
5679         (get_vectype_for_scalar_type_and_size): ... this.  Get a vector
5680         size argument.
5681         (get_vectype_for_scalar_type): New wrapper around
5682         get_vectype_for_scalar_type_and_size using current_vector_size.
5683         (get_same_sized_vectype): Use get_vectype_for_scalar_type_and_size.
5684         * tree-vect-loop.c (vect_analyze_loop_2): Split out core part
5685         of vect_analyze_loop here.
5686         (vect_analyze_loop): Loop over vector sizes calling vect_analyze_loop_3.
5687         * tree-vect-slp.c (vect_slp_analyze_bb): Set current_vector_size
5688         to autodetect.
5689         * config/i386/i386.c (ix86_vectorize_builtin_conversion): Fix
5690         V8SF to V8SI conversion builtin.
5691
5692 2010-10-07  Richard Guenther  <rguenther@suse.de>
5693
5694         * target.def (autovectorize_vector_sizes): New target hook.
5695         * targhooks.c (default_autovectorize_vector_sizes): New function.
5696         * targhooks.h (default_autovectorize_vector_sizes): Declare.
5697         * doc/tm.texi.in (TARGET_VECTORIZE_AUTOVECTORIZE_VECTOR_SIZES):
5698         Document.
5699         * doc/tm.texi: Update.
5700         * config/i386/i386.c (ix86_autovectorize_vector_sizes): New function.
5701         (TARGET_VECTORIZE_AUTOVECTORIZE_VECTOR_SIZES): Define.
5702
5703 2010-10-07  Richard Guenther  <rguenther@suse.de>
5704
5705         * target.def (units_per_simd_word): Rename to ...
5706         (preferred_simd_mode): ... this.  Return mode instead of size.
5707         * targhooks.c (default_units_per_simd_word): Rename to ...
5708         (default_preferred_simd_mode): ... this.  Return word_mode.
5709         * targhooks.h (default_preferred_simd_mode): Declare.
5710         * config/arm/arm.c (arm_units_per_simd_word): Rename to ...
5711         (arm_preferred_simd_mode): ... this.  Re-implement.
5712         * config/i386/i386.c (ix86_units_per_simd_word): Rename to ...
5713         (ix86_preferred_simd_mode): ... this.  Re-implement.
5714         * config/sparc/sparc.c (sparc_units_per_simd_word): Rename to ...
5715         (sparc_preferred_simd_mode): ... this.  Re-implement.
5716         * config/mips/mips.c (mips_units_per_simd_word): Rename to ...
5717         (mips_preferred_simd_mode): ... this.  Re-implement.
5718         * config/rs6000/rs6000.c (rs6000_units_per_simd_word): Rename to ...
5719         (rs6000_preferred_simd_mode): ... this.  Re-implement.
5720         * tree-vect-stmts.c (get_vectype_for_scalar_type): Adjust.
5721         * doc/tm.texi.in (TARGET_VECTORIZE_UNITS_PER_SIMD_WORD): Remove.
5722         (TARGET_VECTORIZE_PREFERRED_SIMD_MODE): Document.
5723         * doc/tm.texi: Update.
5724
5725 2010-10-07  Richard Guenther  <rguenther@suse.de>
5726
5727         PR middle-end/45869
5728         * tree-cfg.c (verify_gimple_assign_binary): Allow vector shifts
5729         of pointers.
5730
5731 2010-10-07  Alan Modra  <amodra@gmail.com>
5732
5733         * config/rs6000/rs6000.c (rs6000_emit_prologue): Use gen_int_mode
5734         rather than sign extension by hand.
5735
5736 2010-10-07  Jan Hubicka  <jh@suse.cz>
5737
5738         PR middle-end/45926
5739         * ipa.c (cgraph_remove_unreachable_nodes): Revert my previous patch.
5740
5741 2010-10-07  Richard Guenther  <rguenther@suse.de>
5742
5743         PR bootstrap/45914
5744         * configure.ac: Fix typo.
5745         * configure: Regenerated.
5746
5747 2010-10-06  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
5748
5749         * config/spu/spu-c.c (spu_resolve_overloaded_builtin): Don't use
5750         define_builtin_std where it's unnecessary.
5751         * config/i386/nto.h (TARGET_OS_CPP_BUILTINS): Likewise.
5752
5753 2010-10-06  Anatoly Sokolov  <aesok@post.ru>
5754
5755         * doc/tm.texi.in (CLASS_LIKELY_SPILLED_P): Remove documentation.
5756         * doc/tm.texi.in: Regenerate.
5757         * system.h (CLASS_LIKELY_SPILLED_P): Poison.
5758         * targhooks.c (default_class_likely_spilled_p): Don't use the
5759         CLASS_LIKELY_SPILLED_P macro.
5760
5761         * config/arm/arm.md: Update comment.
5762
5763 2010-10-06  Jan Hubicka  <jh@suse.cz>
5764
5765         * ipa.c (cgraph_remove_unreachable_nodes): External references can
5766         always be removed.
5767         (cgraph_externally_visible_p): We can not bring local comdats that
5768         are known to linker; fix handling of internal visibility.
5769         (function_and_variable_visibility): Likewise.
5770
5771 2010-10-06  Eric Botcazou  <ebotcazou@adacore.com>
5772
5773         PR rtl-optimization/45394
5774         * combine.c (cleanup_auto_inc_dec): Remove AFTER parameter and adjust.
5775         (struct rtx_subst_pair): Remove AFTER field.
5776         (propagate_for_debug_subst): Adjust call to cleanup_auto_inc_dec.
5777         (propagate_for_debug): Remove MOVE parameter and adjust.
5778         (try_combine): In the special case where I2 is a PARALLEL, combine only
5779         destinations of SETs and set I2SRC to the I2 source.
5780         Adjust calls to propagate_for_debug throughout.
5781         * reload1.c (eliminate_regs_1) <ASM_OPERANDS>: Do not abort for debug
5782         insns.
5783
5784 2010-10-06  Olivier Hainque  <hainque@adacore.com>
5785
5786         * config/rs6000/rs6000.c (rs6000_expand_ternop_builtin): Rewrite
5787         switch on insn codes as sequence of ifs.
5788
5789 2010-10-06  Hariharan Sandanagobalane  <hariharan@picochip.com>
5790
5791         * config/picochip/picochip.c (TARGET_EXCEPT_UNWIND_INFO): Define it to
5792         be UI_NONE for picochip.
5793         (picochip_option_override): Do not disable exception flags.
5794         * config/picochip/picochip-protos.h (picochip_except_unwind_info):
5795         Declare.
5796
5797 2010-10-06  Richard Guenther  <rguenther@suse.de>
5798
5799         * Makefile.in (regmove.o): Depend on $(TARGET_H).
5800
5801 2010-10-06  Nicola Pero  <nicola.pero@meta-innovation.com>
5802
5803         Implemented fast enumeration for Objective-C.
5804         * c-parser.c (objc_could_be_foreach_context): New.
5805         (c_lex_one_token): Recognize RID_IN keyword in a potential
5806         Objective-C foreach context.
5807         (c_parser_declaration_or_fndef): Added parameter.  Accept
5808         Objective-C RID_IN keyword as terminating a declaration; in that
5809         case, return the declaration in the new parameter.
5810         (c_parser_extenral_declaration): Updated calls to
5811         c_parser_declaration_or_fndef.
5812         (c_parser_declaration_or_fndef): Same change.
5813         (c_parser_compound_statement_nostart): Same change.
5814         (c_parser_label): Same change.
5815         (c_parser_objc_methodprotolist): Same change.
5816         (c_parser_omp_for_loop): Same change.
5817         (c_parser_for_statement): Detect and parse Objective-C foreach
5818         statements.
5819         (c_parser_omp_for_loop): Updated call to check_for_loop_decls().
5820         * c-decl.c (check_for_loop_decls): Added parameter to allow ObjC
5821         fast enumeration parsing code to turn off the c99 error but still
5822         perform checks on the loop declarations.
5823         * c-tree.h (check_for_loop_decls): Updated declaration.
5824         * doc/objc.texi: Document fast enumeration.
5825
5826 2010-10-06  Nick Clifton  <nickc@redhat.com>
5827
5828         * config/mn10300/mn10300.h (FIRST_PSEUDO_REGISTER): Increment by one.
5829         (MDR_REGNUM): Define.
5830         (FIXED_REGISTERS, CALL_USED_REGISTERS): Add MDR as a fixed register.
5831         (REG_CLASS_CONTENTS): Add MDR to ALL_REGS.
5832         (INCOMING_RETURN_ADDR_RTX): Define in terms of MDR.
5833         (REGISTER_NAMES): Add MDR.
5834         (DWARF2_DEBUGGING_INFO): Define to 1.
5835         * config/mn10300/mn10300.c (TARGET_EXCEPT_UNWIND_INFO): Define.
5836         (F): New function.  Sets RTX_FRAME_RELATED_P.
5837         (mn10300_gen_multiple_store): Use F.
5838         (expand_prologue): Use F.  Use gen_movsf() to push floating
5839         point registers.
5840         (expand_epilogue): Use gen_movsf() to pop floating point registers.
5841         (mn10300_option_override): Disable combine stack adjust pass.
5842
5843 2010-10-06  Thomas Schwinge  <thomas@schwinge.name>
5844
5845         PR target/45901
5846         * config/alpha/gnu.h (TARGET_OS_CPP_BUILTINS): Refer to
5847         LINUX_TARGET_OS_CPP_BUILTINS instead of HURD_TARGET_OS_CPP_BUILTINS.
5848
5849 2010-10-06  Jakub Jelinek  <jakub@redhat.com>
5850
5851         * builtins.def (BUILT_IN_CALLOC, BUILT_IN_REALLOC,
5852         BUILT_IN_ISALNUM, BUILT_IN_ISALPHA, BUILT_IN_ISASCII,
5853         BUILT_IN_ISBLANK, BUILT_IN_ISCNTRL, BUILT_IN_ISDIGIT,
5854         BUILT_IN_ISGRAPH, BUILT_IN_ISLOWER, BUILT_IN_ISPRINT,
5855         BUILT_IN_ISPUNCT, BUILT_IN_ISSPACE, BUILT_IN_ISUPPER,
5856         BUILT_IN_ISXDIGIT, BUILT_IN_TOASCII, BUILT_IN_TOLOWER,
5857         BUILT_IN_TOUPPER): Mark as leaf.
5858
5859         PR middle-end/45838
5860         * omp-builtins.def (BUILT_IN_GOMP_PARALLEL_LOOP_STATIC_START,
5861         BUILT_IN_GOMP_PARALLEL_LOOP_DYNAMIC_START,
5862         BUILT_IN_GOMP_PARALLEL_LOOP_GUIDED_START,
5863         BUILT_IN_GOMP_PARALLEL_LOOP_RUNTIME_START,
5864         BUILT_IN_GOMP_PARALLEL_START, BUILT_IN_GOMP_TASK,
5865         BUILT_IN_GOMP_PARALLEL_SECTIONS_START): Use
5866         Revert back to ATTR_NOTHROW_LIST instead of ATTR_NOTHROW_LEAF_LIST.
5867
5868 2010-10-05  Anatoly Sokolov  <aesok@post.ru>
5869
5870         * config/m68hc11/m68hc11.h (CLASS_LIKELY_SPILLED_P): Remove.
5871         * config/m68hc11/m68hc11.c (TARGET_CLASS_LIKELY_SPILLED_P): Define.
5872         (m68hc11_class_likely_spilled_p): New function.
5873
5874 2010-10-05  Nicola Pero  <nicola.pero@meta-innovation.com>
5875
5876         * c-parser.c (c_parser_objc_method_definition): Updated comment.
5877
5878 2010-10-05  Jan Hubicka  <jh@suse.cz>
5879
5880         * doc/invoke.texi (-flto-partition, lto-partitions, lto-minpartition):
5881         Document.
5882         * opts.c (decode_options): Handle lto partitions.
5883         * common.opt (flto-partition=1to1, flto-partition=balanced): New.
5884         * params.def (PARAM_LTO_PARTITIONS, MIN_PARTITION_SIZE): New.
5885
5886 2010-10-05  Jan Hubicka  <jh@suse.cz>
5887
5888         * cgraphunit.c (assemble_function): Output thunks and aliases before
5889         the function itself.
5890
5891 2010-09-29  Hariharan Sandanagobalane  <hariharan@picochip.com>
5892
5893         * config/picochip/picochip.c (picochip_option_override): Disable
5894         exception flags for picochip.
5895
5896 2010-10-05  Joseph Myers  <joseph@codesourcery.com>
5897
5898         * opts-common.c (handle_option, handle_generated_option,
5899         read_cmdline_option, set_option): Add diagnostic_context
5900         parameter.  Update calls among these functions.
5901         (set_option): Don't use global_dc.
5902         * opts.c (read_cmdline_options): Pass global_dc to read_cmdline_option.
5903         (decode_options): Pass global_dc to enable_warning_as_error.
5904         (common_handle_option): Pass global_dc to enable_warning_as_error.
5905         (enable_warning_as_error): Add diagnostic_context parameter.
5906         Document parameters.  Don't use global_dc.  Pass
5907         diagnostic_context parameter to handle_generated_option.
5908         * opts.h (set_option, handle_option, handle_generated_option,
5909         read_cmdline_option, enable_warning_as_error): Add
5910         diagnostic_context parameter.
5911         * Makefile.in (lto-opts.o): Update dependencies.
5912         * coretypes.h (struct diagnostic_context, diagnostic_context):
5913         Declare here.
5914         * diagnostic.h (diagnostic_context): Don't declare typedef here.
5915         * gcc.c (process_command): Pass global_dc to read_cmdline_option.
5916         * langhooks-def.h (struct diagnostic_context): Don't declare here.
5917         (lhd_print_error_function, lhd_initialize_diagnostics): Declare
5918         using diagnostic_context typedef.
5919         * langhooks.c (lhd_initialize_diagnostics): Declare using
5920         diagnostic_context typedef.
5921         * langhooks.h (struct diagnostic_context): Don't declare here.
5922         (initialize_diagnostics, print_error_function): Declare using
5923         diagnostic_context typedef.
5924         * lto-opts.c: Include diagnostic.h.
5925         (lto_reissue_options): Pass global_dc to set_option.  Pass
5926         DK_UNSPECIFIED not 0.
5927         * plugin.c (plugins_internal_error_function): Declare using
5928         diagnostic_context typedef.
5929         * plugin.h (struct diagnostic_context): Don't declare here.
5930         (plugins_internal_error_function): Declare using
5931         diagnostic_context typedef.
5932
5933 2010-10-05  Olivier Hainque  <hainque@adacore.com>
5934             Nicolas Roche  <roche@adacore.com>
5935
5936         * config/vxworksae.h: Add missing VXWORKS_OS_CPP_BUILTINS.
5937         * config/rs6000/vxworks.h: Remove redundant CPP builtin definitions.
5938
5939 2010-10-05  Ira Rosen  <irar@il.ibm.com>
5940
5941         PR tree-optimization/45752
5942         * tree-vect-slp.c (vect_get_mask_element): Remove static
5943         variables, make them function arguments.
5944         (vect_transform_slp_perm_load): Pass new arguments to
5945         vect_get_mask_element.
5946
5947 2010-10-05  Richard Guenther  <rguenther@suse.de>
5948
5949         * value-prof.c (gimple_divmod_fixed_value): Work on SSA form.
5950         (gimple_mod_pow2): Likewise.
5951         (gimple_mod_subtract): Likewise.
5952         (gimple_ic): Likewise.
5953         (gimple_stringop_fixed_value): Likewise.
5954         * tree-profile.c (tree_init_edge_profiler): Mark profile
5955         functions nothrow and leaf.
5956         (add_abnormal_goto_call_edges): Remove.
5957         (tree_gen_edge_profiler): Work on SSA form.
5958         (tree_gen_ic_profiler): Likewise.  Simplify.
5959         (do_tree_profiling): Update SSA form.
5960         (pass_tree_profile): Remove.
5961         (do_tree_profiling): Likewise.
5962         (gate_tree_profile_ipa): New function.
5963         (pass_ipa_tree_profile): New.
5964         (tree_profiling): Re-write as IPA pass.  Properly drop const/pure
5965         state of instrumented functions.
5966         * passes.c (init_optimization_passes): Remove early non-SSA
5967         inlining.  Move profiling after early optimizations.
5968         * ipa-inline.c (cgraph_gate_ipa_early_inlining): Remove.
5969         (pass_ipa_early_inline): Likewise.
5970         * tree-pass.h (pass_ipa_early_inline): Remove.
5971         (pass_tree_profile): Likewise.
5972         (pass_ipa_tree_profile): Declare.
5973
5974 2010-10-05  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
5975             Christian Borntraeger  <Christian.Borntraeger@de.ibm.com>
5976
5977         * config/s390/s390.c (z196_cost): New.
5978         (s390_handle_arch_option): Add -march=z196.
5979         (s390_option_override): Use the new cost function and use the z10
5980         defaults also for z196.
5981         (legitimate_reload_constant_p): Adjust comment.
5982         (legitimate_reload_fp_constant_p): New function.
5983         (s390_preferred_reload_class): Distingiush between FP and Int constants.
5984         (preferred_la_operand_p): Avoid la with index on z196.
5985         (s390_adjust_priority): Trigger also for z196.
5986         (s390_issue_rate): Issue rate for z196 is 3.
5987         (s390_z10_fix_long_loop_prediction): Rename to ...
5988         (s390_fix_long_loop_prediction): ... this.
5989         (s390_reorg): Apply the z10 adjustments also for z196.
5990         (s390_loop_unroll_adjust): Do this also for z196.
5991         * config/s390/s390.h (enum processor_type): Add PROCESSOR_2817_Z196.
5992         (enum processor_flags): Add PF_Z196.
5993         (TARGET_AVOID_CMP_AND_BRANCH): New macro.
5994         (TARGET_CPU_Z196, TARGET_Z196): New macros.
5995         * config.gcc: Enable z196 for --with-arch.
5996         * config/s390/2817.md: New file.
5997         * config/s390/2084.md: New type for multiply and add.
5998         * config/s390/2097.md: Likewise.
5999         * config/s390/s390.md (UNSPEC_POPCNT, UNSPEC_COPYSIGN)
6000         (UNSPECV_ATOMIC_OP): New constants.
6001         (fmadddf, fmaddsf): New values for type attribute.
6002         (z196prop): New insn attribute.
6003         (cpu, cpu_facility): Add z196.
6004         (ATOMIC_Z196): New code iterator.
6005         (noxa): New code attribute.
6006         (gk): New mode attribute.
6007         (*mov<mode>_64, *mov<mode>_31, *mov<mode>_64dfp, mov<mode>):
6008         Support load zero for fp constants.
6009         (fixuns_truncdddi2, fixuns_trunctddi2)
6010         (fixuns_trunc<BFP:mode><GPR:mode>2): Use the standard rtx pattern
6011         for z196.
6012         (fixuns_trunc<mode>si2, mov<mode>cc, popcountdi2, popcountsi2)
6013         (popcounthi2, popcountqi2): New expander.
6014         (*fixuns_trunc<FP:mode><GPR:mode>2_z196, floatsi<mode>2)
6015         (floatuns<GPR:mode><FP:mode>2, *mov<mode>cc, sync_<atomic><mode>)
6016         (sync_old_<atomic><mode>, *popcount<mode>, copysign<mode>3): New
6017         insn definition.
6018         (add<mode>3, *add<mode>3_carry1_cc, *add<mode>3_carry1_cconly)
6019         (*add<mode>3_carry2_cc, *add<mode>3_carry2_cconly, *add<mode>3_cc)
6020         (*add<mode>3_cconly, *add<mode>3_cconly2, *add<mode>3_imm_cc)
6021         (*sub<mode>3, *sub<mode>3_borrow_cc, *sub<mode>3_borrow_cconly)
6022         (*sub<mode>3_cc, *sub<mode>3_cc2, *sub<mode>3_cconly)
6023         (*sub<mode>3_cconly2, *anddi3_cc, *anddi3_cconly, *anddi3, *andsi3_cc)
6024         (*andsi3_cconly, *andsi3_zarch, *andsi3_esa, *andhi3_zarch
6025         (*andqi3_zarch, *iordi3_cc, *iordi3_cconly, *iordi3, *iorsi3_cc)
6026         (*iorsi3_cconly, *iorsi3_zarch, *iorhi3_zarch, *iorqi3_zarch)
6027         (*xordi3_cc, *xordi3_cconly, *xordi3, *xorsi3_cc, *xorsi3_cconly)
6028         (*xorsi3, *xorhi3, *xorqi3, *<shift><mode>3, *<shift><mode>3_and)
6029         (*ashr<mode>3_cc, *ashr<mode>3_cconly, *ashr<mode>3)
6030         (*ashr<mode>3_cc_and, *ashr<mode>3_cconly_and, *ashr<mode>3_and):
6031         Support new z196 instructions.
6032
6033 2010-10-05  Richard Guenther  <rguenther@suse.de>
6034
6035         PR middle-end/45877
6036         * gimple-fold.c (gimplify_and_update_call_from_tree): Handle
6037         case where gimplification optimizes away the stmt.
6038
6039 2010-10-04  Jakub Jelinek  <jakub@redhat.com>
6040
6041         PR debug/45849
6042         * var-tracking.c (strip_pointer_flags): New function.
6043         (emit_note_insn_var_location): If rtx_equal_p check failed,
6044         retry on locations simplified with simplify_replace_fn_rtx
6045         and strip_pointer_flags as its callback.
6046
6047 2010-10-04  Jan Hubicka  <jh@suse.cz>
6048
6049         * gimple-fold.c (static_object_in_other_unit_p): Rename to...
6050         (can_refer_decl_in_current_unit_p): ... this one; reverse return
6051         value; handle comdats too.
6052         (canonicalize_constructor_val): Use it; handle function_decls
6053         correctly.
6054         (gimple_fold_obj_type_ref_known_binfo): Likewise.
6055         * gimple.c (get_base_address): Accept all kinds of decls.
6056
6057 2010-10-04  Joseph Myers  <joseph@codesourcery.com>
6058
6059         * flags.h (g_switch_value, g_switch_set): Remove.
6060         * opts.c (g_switch_value, g_switch_set): Remove.
6061         * config/g.opt (G): Add Var(g_switch_value).
6062         * config/alpha/alpha.c (alpha_handle_option): Don't handle -G here.
6063         (alpha_option_override): Check global_options_set.x_g_switch_value
6064         instead of g_switch_set.
6065         (alpha_in_small_data_p): Remove cast in comparison with
6066         g_switch_value.
6067         * config/alpha/elf.h (ASM_OUTPUT_ALIGNED_LOCAL): Cast
6068         g_switch_value to unsigned HOST_WIDE_INT.
6069         * config/frv/frv.c (frv_const_unspec_p): Remove cast in comparison
6070         with g_switch_value.
6071         (frv_handle_option): Don't handle -G here.
6072         (frv_option_override): Check global_options_set.x_g_switch_value
6073         instead of g_switch_set.  Don't modify g_switch_set.
6074         (frv_in_small_data_p): Remove cast in comparison with g_switch_value.
6075         * config/frv/frv.h (ASM_OUTPUT_ALIGNED_DECL_LOCAL): Cast
6076         g_switch_value to unsigned HOST_WIDE_INT.
6077         * config/ia64/ia64.c (ia64_handle_option): Don't handle -G here.
6078         (ia64_option_override): Check global_options_set.x_g_switch_value
6079         instead of g_switch_set.
6080         * config/lm32/lm32.c (lm32_handle_option, TARGET_HANDLE_OPTION):
6081         Remove.
6082         (lm32_in_small_data_p): Remove cast in comparison with
6083         g_switch_value.
6084         * config/lm32/lm32.h (ASM_OUTPUT_ALIGNED_LOCAL,
6085         ASM_OUTPUT_ALIGNED_COMMON): Cast g_switch_value to unsigned
6086         HOST_WIDE_INT.
6087         * config/m32r/m32r.c (m32r_handle_option): Don't handle -G here.
6088         (m32r_init): Check global_options_set.x_g_switch_value instead of
6089         g_switch_set.
6090         (m32r_in_small_data_p): Remove cast in comparison with
6091         g_switch_value.
6092         (m32r_file_start): Format g_switch_value with %d.
6093         * config/m32r/m32r.h (ASM_OUTPUT_ALIGNED_COMMON,
6094         ASM_OUTPUT_ALIGNED_BSS): Cast g_switch_value to unsigned HOST_WIDE_INT.
6095         * config/microblaze/microblaze.c (microblaze_handle_option): Don't
6096         handle -G here.
6097         (microblaze_option_override): Check
6098         global_options_set.x_g_switch_value instead of g_switch_set.
6099         * config/mips/mips.c (mips_handle_option): Don't handle -G here.
6100         (mips_option_override): Check global_options_set.x_g_switch_value
6101         instead of g_switch_set.
6102         * config/rs6000/rs6000.c (rs6000_handle_option): Don't handle -G here.
6103         (rs6000_file_start): Format g_switch_value with %d.
6104         (small_data_operand, rs6000_elf_in_small_data_p): Remove casts in
6105         comparisons with g_switch_value.
6106         * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Check
6107         global_options_set.x_g_switch_value instead of g_switch_set.
6108         * config/rs6000/vxworks.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Check
6109         global_options_set.x_g_switch_value instead of g_switch_set.
6110         * config/score/score.c (score_handle_option): Don't handle -G here.
6111         * config/score/score3.c (score3_option_override): Check
6112         global_options_set.x_g_switch_value instead of g_switch_set.
6113         * config/score/score7.c (score7_option_override): Check
6114         global_options_set.x_g_switch_value instead of g_switch_set.
6115
6116 2010-10-04  Vladimir Makarov  <vmakarov@redhat.com>
6117
6118         * common.opt (fira-coalesce): Remove.
6119
6120         * doc/invoke.texi (flag_ira_coalesce): Remove.
6121
6122         * ira-color.c (allocno_coalesced_p): Move before
6123         copy_freq_compare_func.
6124         processed_coalesced_allocno_bitmap): Ditto.
6125         (update_conflict_hard_regno_costs): Don't use
6126         ALLOCNO_FIRST_COALESCED_ALLOCNO.
6127         (allocno_cost_compare_func, print_coalesced_allocno): Remove.
6128         (assign_hard_reg): Assume no coalesced allocnos.
6129         (get_coalesced_allocnos_attributes): Remove.
6130         (bucket_allocno_compare_func): Assume no coalesced allocnos.
6131         (push_allocno_to_stack): Ditto.
6132         (remove_allocno_from_bucket_and_push): Use
6133         ira_print_expanded_allocno instead of print_coalesced_allocno.
6134         (push_allocnos_to_stack): Assume uncoalesced allocnos.
6135         (all_conflicting_hard_regs_coalesced): Ditto.  Rename to
6136         all_conflicting_hard_regs.
6137         (setup_allocno_available_regs_num): Assume uncoalesced allocnos.
6138         (setup_allocno_left_conflicts_size): Ditto.
6139         (put_allocno_into_bucket): Ditto.
6140         (copy_freq_compare_func): Remove.
6141         (copy_freq_compare_func, merge_allocnos): Move before
6142         coalesced_pseudo_reg_freq_compare.
6143         coalesced_allocno_conflict_p): Ditto.
6144         (coalesced_allocno_conflict_p, coalesce_allocnos): Ditto.  Remove
6145         parameter.  Assume it true.
6146         (color_allocnos): Assume uncoalesced allocnos.  Use
6147         ira_print_expanded_allocno instead of print_coalesced_allocno.
6148         (ira_sort_regnos_for_alter_reg): Call coalesce_allocnos without
6149         parameter.
6150
6151         * ira.c: Remove comment about coalescing.
6152
6153 2010-10-04  Joseph Myers  <joseph@codesourcery.com>
6154
6155         * config/mips/mips.h (target_flags_explicit): Declare for
6156         GENERATOR_FILE.
6157
6158 2010-10-04  Andi Kleen  <ak@linux.intel.com>
6159
6160         * Makefile.in (xgcc, cpp, cc1, collect2, lto-wrapper, gcov,
6161         gcov-dump, cc1-dummy, genprog, build/gcov-iov): Add + to build rule.
6162
6163 2010-10-04  Matthias Klose  <doko@ubuntu.com>
6164
6165         * config/sparc/t-linux64 (MULTILIB_OSDIRNAMES): Use ../lib32 as the
6166         multilib osdirname if it exists.
6167         * config/s390/t-linux64 (MULTILIB_OSDIRNAMES): Likewise.
6168
6169 2010-10-04  Jakub Jelinek  <jakub@redhat.com>
6170
6171         PR middle-end/45876
6172         * fold-const.c (fold_binary_loc) <case BIT_AND_EXPR>: Use
6173         arg0's type or its unsigned counterpart as utype.  Convert
6174         arg1 to utype unconditionally.
6175
6176 2010-10-04  Julian Brown  <julian@codesourcery.com>
6177
6178         * expr.c (expand_assignment): Add assertion to prevent emitting
6179         null rtx for movmisalign pattern.
6180         (expand_expr_real_1): Likewise.
6181         * config/arm/arm.c (arm_builtin_support_vector_misalignment): New.
6182         (TARGET_VECTORIZE_SUPPORT_VECTOR_MISALIGNMENT): New. Use above.
6183         (arm_vector_alignment_reachable): New.
6184         (TARGET_VECTORIZE_VECTOR_ALIGNMENT_REACHABLE): New. Use above.
6185         (neon_vector_mem_operand): Disallow PRE_DEC for misaligned loads.
6186         (arm_print_operand): Include alignment qualifier in %A.
6187         * config/arm/neon.md (UNSPEC_MISALIGNED_ACCESS): New constant.
6188         (movmisalign<mode>): New expander.
6189         (movmisalign<mode>_neon_store, movmisalign<mode>_neon_load): New
6190         insn patterns.
6191
6192 2010-10-04  Joseph Myers  <joseph@codesourcery.com>
6193
6194         * optc-gen.awk: Define global_options_set.  Don't define
6195         target_flags_explicit.
6196         * opth-gen.awk: Declare global_options_set.  Define
6197         target_flags_explicit as macro.
6198         * opts-common.c (handle_option): Take opts_set and generated_p
6199         parameters.
6200         (handle_generated_option, read_cmdline_option, set_option): Take
6201         opts_set parameter.
6202         (set_option): Use opts_set instead of hardcoding target_flags and
6203         target_flags_explicit.
6204         * opts.c (sel_sched_switch_set, profile_arc_flag_set,
6205         flag_profile_values_set, flag_unroll_loops_set, flag_tracer_set,
6206         flag_value_profile_transformations_set, flag_peel_loops_set,
6207         flag_branch_probabilities_set, flag_inline_functions_set,
6208         flag_ipa_cp_set, flag_ipa_cp_clone_set,
6209         flag_predictive_commoning_set, flag_unswitch_loops_set,
6210         flag_gcse_after_reload_set): Remove.
6211         (common_handle_option, lang_handle_option, target_handle_option):
6212         Take opts_set parameter.  Assert that it is &global_options_set.
6213         (common_handle_option): Don't set _set variables.  Check opts_set
6214         instead of such variables.
6215         (enable_warning_as_error): Pass &global_options_set to
6216         handle_generated_option.
6217         * opts.h (cl_option_handler_func.handler, set_option,
6218         handle_option, handle_generated_option, read_cmdline_option): Add
6219         opts_set parameters.
6220         (handle_option): Add generated_p parameter.
6221         * config/i386/i386.c (ix86_function_specific_save,
6222         ix86_function_specific_restore): Updat for renaming of
6223         target_flags_explicit field.
6224         * config/i386/i386.opt (target_flags_explicit): Rename to
6225         ix86_target_flags_explicit.
6226         * config/ia64/ia64.c (ia64_override_options_after_change): Check
6227         global_options_set.x_flag_selective_scheduling and
6228         global_options_set.x_flag_selective_scheduling2, not
6229         sel_sched_switch_set.
6230         * flags.h (sel_sched_switch_set,
6231         flag_speculative_prefetching_set): Remove.
6232         * gcc.c (driver_handle_option): Take opts_set parameter.  Assert
6233         that it is &global_options_set.
6234         (process_command): Pass &global_options_set to read_cmdline_option.
6235         * lto-opts.c (lto_reissue_options): Pass &global_options_set to
6236         set_option.
6237         * toplev.c (target_flags_explicit): Remove.
6238
6239 2010-10-04  Jan Hubicka  <jh@suse.cz>
6240
6241         PR middle-end/45871
6242         * tree-ssa-ccp.c (get_base_constructor): Take HOST_WIDE_INT offset;
6243         use get_ref_base_and_offset to handle references.
6244         (fold_const_aggregate_ref): Update.
6245
6246 2010-10-04  Martin Jambor  <mjambor@suse.cz>
6247
6248         PR tree-optimization/45572
6249         * ipa-prop.c (ipa_make_edge_direct_to_target): Call
6250         ipa_check_create_node_params.
6251         * ipa-inline.c (add_new_edges_to_heap): Do not insert inlined edges.
6252
6253 2010-10-04  Yao Qi  <yao@codesourcery.com>
6254
6255         * doc/passes.texi: Clean up.
6256
6257 2010-10-03  Ian Lance Taylor  <iant@google.com>
6258
6259         * c-typeck.c (lookup_field): If -fplan9-extensions, permit
6260         referring to a field using a typedef name.
6261         (find_anonymous_field_with_type): New static function.
6262         (convert_to_anonymous_field): New static function.
6263         (convert_for_assignment): If -fplan9-extensions, permit converting
6264         pointer to struct to pointer to anonymous field.
6265         * c-decl.c (grokfield): If -fplan9-extensions, permit anonymous fields.
6266         (is_duplicate_field): New static function.
6267         (detect_field_duplicates_hash): If -fplan9-extensions, check for
6268         typedef names duplicating field names.
6269         (detect_field_duplicates): Likewise.
6270         * doc/invoke.texi (Option Summary): Mention -fplan9-extensions.
6271         (C Dialect Options): Document -fplan9-extensions.
6272         * doc/extend.texi (Unnamed Fields): Document -fplan9-extensions.
6273
6274 2010-10-03  H.J. Lu  <hongjiu.lu@intel.com>
6275
6276         * tree-vect-data-refs.c (vect_analyze_data_ref_access): Revert
6277         revision 164914.
6278         (vect_create_data_ref_ptr): Likewise.
6279         * tree-vect-stmts.c (vectorizable_store): Likewise.
6280         (perm_mask_for_reverse): Likewise.
6281         (reverse_vec_elements): Likewise.
6282         (vectorizable_load): Likewise.
6283
6284 2010-10-03  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
6285
6286         * cppbuiltin.c: New file.
6287         * cppbuiltin.h: New file.
6288         * Makefile.in: Take into account cppbuiltin.{h,c}.
6289
6290 2010-10-03  Andi Kleen  <ak@linux.intel.com>
6291
6292         * lto-cgraph.c (input_cgraph): Check for missing sections.
6293
6294 2010-10-03  Uros Bizjak  <ubizjak@gmail.com>
6295
6296         * config/i386/i386.md (*ashl<mode>3_mask): Change operand 2 predicate
6297         to nonimmediate_operand.  Force operand 2 to register when allowed.
6298         (*<shiftrt_insn><mode>3_mask): Ditto.
6299         (*<rotate_insn><mode>3_mask): Ditto.
6300
6301 2010-10-02  H.J. Lu  <hongjiu.lu@intel.com>
6302
6303         PR tree-optimization/45720
6304         PR tree-optimization/45764
6305         * tree-vect-data-refs.c (vect_analyze_data_ref_access):
6306         Don't accept backwards consecutive accesses.
6307         (vect_create_data_ref_ptr): Disallow negative steps.
6308
6309         * tree-vect-stmts.c (vectorizable_store): Allow negative steps.
6310         (perm_mask_for_reverse): Removed.
6311         (reverse_vec_elements): Likewise.
6312         (vectorizable_load): Don't handle negative steps.
6313
6314 2010-10-02  Jan Hubicka  <jh@suse.cz>
6315
6316         * tree-ssa-ccp.c (ccp_fold_stmt): Fold away OBJ_TYPE_REF when
6317         call destination is known.
6318
6319 2010-10-02  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
6320
6321         PR target/45820
6322         * config/pa/pa.c (pa_secondary_reload): Handle symbolic operands
6323         earlier.
6324
6325 2010-10-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6326
6327         * doc/install.texi (Configuration): Document build_configargs,
6328         host_configargs, target_configargs.
6329
6330 2010-10-01  Uros Bizjak  <ubizjak@gmail.com>
6331
6332         * config/i386/i386.md (*ashl<mode>3_mask): New insn_and_split pattern.
6333         (*<shiftrt_insn><mode>3_mask): Ditto.
6334         (*<rotate_insn><mode>3_mask): Ditto.
6335
6336 2010-10-01  Steve Ellcey  <sje@cup.hp.com>
6337
6338         PR tree-optimization/44716
6339         * config/ia64/hpux.h (UNLIKELY_EXECUTED_TEXT_SECTION_NAME): Define.
6340         (HOT_TEXT_SECTION_NAME): Define.
6341
6342 2010-10-01  Nick Clifton  <nickc@redhat.com>
6343
6344         * common.opt: Add -fcombine-stack-adjustments.
6345         * opts.c (decode_options): Enable -fcombine-stack-adjustments at -O1.
6346         * combine-stack-adj.c (gate_handle_stack_adjustments): Check
6347         flag_combine_stack_adjustments.
6348         * doc/invoke.texi: Document the new option.
6349
6350 2010-10-01  Richard Guenther  <rguenther@suse.de>
6351
6352         PR tree-optimization/45854
6353         * tree-eh.c (cleanup_empty_eh): Avoid degenerate case.
6354
6355 2010-10-01  Anthony Green  <green@moxielogic.com>
6356
6357         * config.gcc: Fix moxie-*-rtems* configuration.
6358
6359 2010-10-01  Richard Guenther  <rguenther@suse.de>
6360
6361         * dwarf2out.c (gen_namespace_die): Use DECL_FILE_SCOPE_P.
6362         (gen_decl_die): Likewise.
6363
6364 2010-10-01  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
6365
6366         * config/spu/spu.c (spu_init_builtins): No longer add END_BUILTINS
6367         to the function code for SPU MD builtins.
6368         (spu_expand_builtin): Update.
6369         * config/spu/spu-c.c (spu_resolve_overloaded_builtin): Update.
6370
6371 2010-10-01  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
6372
6373         * config/spu/spu.c (TARGET_EXCEPT_UNWIND_INFO): Set to
6374         sjlj_except_unwind_info.
6375
6376 2010-10-01  Tristan Gingold  <gingold@adacore.com>
6377
6378         * configure.ac: Define the nop insn for avr*-*-*
6379         * configure: Regenerate.
6380
6381 2010-10-01  Alan Modra  <amodra@gmail.com>
6382
6383         PR target/45807
6384         * config/rs6000/rs6000.c (rs6000_emit_prologue): Properly sign
6385         extend toc_restore_insn.
6386
6387 2010-09-30  Richard Guenther  <rguenther@suse.de>
6388
6389         PR tree-optimization/43959
6390         * function.c (gimplify_parameters): Use create_tmp_reg instead of
6391         create_tmp_var.
6392
6393 2010-09-30  Kaz Kojima  <kkojima@gcc.gnu.org>
6394
6395         * config/sh/sh.c (sh_expand_prologue): Set
6396         current_function_static_stack_size.
6397
6398 2010-09-30  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
6399
6400         * configure.ac: Check for Solaris 8 ld with .hidden support.
6401         * configure: Regenerate.
6402
6403 2010-09-30  Sebastian Pop  <sebastian.pop@amd.com>
6404
6405         PR middle-end/45758
6406         * graphite.c (graphite_initialize): Call scev_reset.
6407
6408 2010-09-30  Sebastian Pop  <sebastian.pop@amd.com>
6409
6410         * sese.h (scev_analyzable_p): Return false for real or floating
6411         point.  Only handle INTEGRAL_TYPE_P and POINTER_TYPE_P.
6412
6413 2010-09-30  Sebastian Pop  <sebastian.pop@amd.com>
6414
6415         * graphite-clast-to-gimple.c (compute_bounds_for_level): Free le
6416         and ps.
6417         * graphite-poly.c (pbb_number_of_iterations_at_time): Free le and
6418         domain.
6419         * graphite-sese-to-poly.c (add_upper_bounds_from_estimated_nit):
6420         Do not allocate ub_expr, it is passed in initialized.
6421
6422 2010-09-30  Andreas Simbuerger  <simbuerg@fim.uni-passau.de>
6423
6424         * graphite-clast-to-gimple.c (init_cloog_input_file): New.
6425         (build_cloog_prog): Dump CLooG input file when
6426         flag_graphite_dump_cloog is set.  This is disabled on trunk.
6427         * graphite-cloog-compat.h (cloog_program_dump_cloog): New.
6428
6429 2010-09-30  Sebastian Pop  <sebastian.pop@amd.com>
6430
6431         * graphite-clast-to-gimple.c (graphite_verify): Remove call to
6432         verify_dominators for CDI_POST_DOMINATORS.
6433         * sese.h: Remove comment about CDI_POST_DOMINATORS.
6434         (recompute_all_dominators): Remove call to free_dominance_info
6435         for CDI_POST_DOMINATORS.  Remove call to calculate_dominance_info
6436         for CDI_POST_DOMINATORS.
6437
6438 2010-09-30  Sebastian Pop  <sebastian.pop@amd.com>
6439
6440         * graphite-poly.c (pbb_number_of_iterations_at_time): Only iterate
6441         over pbb_dim_iter_domain.
6442
6443 2010-09-30  Sebastian Pop  <sebastian.pop@amd.com>
6444
6445         * graphite-flattening.c: Fix comments.
6446
6447 2010-09-30  Sebastian Pop  <sebastian.pop@amd.com>
6448
6449         * Makefile.in (OBJS-common): Add graphite-flattening.o.
6450         (graphite-flattening.o): New rule.
6451         * common.opt (floop-flatten): New flag.
6452         * doc/invoke.texi (-floop-flatten): Documented.
6453         * graphite-flattening.c: New.
6454         * graphite-poly.c (apply_poly_transforms): Call flatten_all_loops.
6455         * graphite-poly.h (flatten_all_loops): Declared.
6456         (lst_remove_loop_and_inline_stmts_in_loop_father): New.
6457         * tree-ssa-loop.c (gate_graphite_transforms): When flag_loop_flatten
6458         is set, also set flag_graphite.
6459
6460 2010-09-30  Sebastian Pop  <sebastian.pop@amd.com>
6461
6462         * graphite-poly.c (cloog_checksum): New.
6463         * graphite-poly.h (cloog_checksum): Declared.
6464
6465 2010-09-30  Sebastian Pop  <sebastian.pop@amd.com>
6466
6467         * graphite-poly.c (pbb_number_of_iterations): Removed.
6468         (pbb_number_of_iterations_at_time): Correctly compute the number
6469         of iterations in the transformed loop.
6470         * graphite-poly.h (pbb_number_of_iterations): Removed.
6471
6472 2010-09-30  Sebastian Pop  <sebastian.pop@amd.com>
6473
6474         * graphite-poly.h (lst_update_scattering_seq): Removed.
6475         (lst_update_scattering): Correctly handle outermost loop dewey
6476         renumbering.
6477
6478 2010-09-30  Sebastian Pop  <sebastian.pop@amd.com>
6479
6480         * graphite-blocking.c (pbb_strip_mine_profitable_p): Renamed
6481         lst_strip_mine_profitable_p.  Call lst_niter_for_loop.
6482         * graphite-poly.h (lst_niter_for_loop): New.
6483
6484 2010-09-30  Sebastian Pop  <sebastian.pop@amd.com>
6485
6486         * graphite-poly.c (apply_poly_transforms): Do not abort when the
6487         transform read from disk is not legal.  Call fatal_error instead.
6488
6489 2010-09-30  Sebastian Pop  <sebastian.pop@amd.com>
6490
6491         * graphite-poly.c (print_pbb_body): Add missing closing parenthesis.
6492         (print_scop_header): Removed.  Inlined in the only call place...
6493         (print_scop): ... here.
6494
6495 2010-09-30  Sebastian Pop  <sebastian.pop@amd.com>
6496
6497         * graphite-poly.h (lst_dewey_number): Use FOR_EACH_VEC_ELT.
6498
6499 2010-09-30  Sebastian Pop  <sebastian.pop@amd.com>
6500
6501         * graphite-poly.c (graphite_read_scop_file): Fix uninitialize warning.
6502
6503 2010-09-30  Sebastian Pop  <sebastian.pop@amd.com>
6504
6505         * graphite-dependences.c (dot_deps): Avoid set but not used warning.
6506         (dot_deps_stmt): Same.
6507         * graphite-poly.c (dot_lst): Same.
6508
6509 2010-09-30  Sebastian Pop  <sebastian.pop@amd.com>
6510
6511         * graphite-blocking.c (scop_do_strip_mine): Do not call
6512         graphite_legal_transform.
6513         (scop_do_block): Same.
6514
6515 2010-09-30  Vladimir Kargov  <kargov@gmail.com>
6516
6517         * graphite-scop-detection.c (graphite_can_represent_loop): Correct the
6518         description.
6519
6520 2010-09-30  Sebastian Pop  <sebastian.pop@amd.com>
6521
6522         * tree-scalar-evolution.c (instantiate_array_ref): New.
6523         (instantiate_scev_r): Also handle ARRAY_REFs.
6524
6525 2010-09-30  Sebastian Pop  <sebastian.pop@amd.com>
6526
6527         * tree-scalar-evolution.c (chrec_contains_symbols_defined_in_loop):
6528         Do not check for VAR_DECL, PARM_DECL, FUNCTION_DECL, LABEL_DECL,
6529         RESULT_DECL, and FIELD_DECL.  Return false for an
6530         SSA_NAME_IS_DEFAULT_DEF.
6531         (compute_scalar_evolution_in_loop): Do not further analyze the
6532         scalar evolution when no_evolution_in_loop_p returns true.
6533
6534 2010-09-30  Sebastian Pop  <sebastian.pop@amd.com>
6535
6536         * tree-chrec.h (evolution_function_is_affine_p): Do not check
6537         whether CHREC_LEFT is invariant.  A function is affine when
6538         CHREC_RIGHT is invariant.
6539
6540 2010-09-30  Sebastian Pop  <sebastian.pop@amd.com>
6541
6542         * graphite-sese-to-poly.c (reduction_phi_p): Remove check for
6543         is_gimple_reg.
6544         (rewrite_degenerate_phi): Same.
6545         (rewrite_reductions_out_of_ssa): Add check for is_gimple_reg.
6546
6547 2010-09-30  Vladimir Kargov  <kargov@gmail.com>
6548
6549         * graphite-scop-detection.c (graphite_can_represent_scev,
6550         graphite_can_represent_expr, stmt_has_simple_data_refs_p,
6551         graphite_can_represent_loop): Remove outermost_loop.
6552
6553 2010-09-30  Sebastian Pop  <sebastian.pop@amd.com>
6554
6555         PR middle-end/45229
6556         * graphite-sese-to-poly.c (rewrite_cross_bb_scalar_deps): Do not
6557         handle GIMPLE_CALLs with no LHS.
6558
6559 2010-09-30  Riyadh Baghdadi  <baghdadi.mr@gmail.com>
6560
6561         * graphite-poly.c (init_graphite_out_file): New.
6562         (init_graphite_in_file): New.
6563         (apply_poly_transforms): Updated to enable reading and writing of
6564         multiple scop files.
6565
6566 2010-09-30  Tobias Grosser  <grosser@fim.uni-passau.de>
6567
6568         * graphite-scop-detection.c (graphite_can_represent_scev): Remove
6569         redundant checks.
6570
6571 2010-09-30  Sebastian Pop  <sebastian.pop@amd.com>
6572
6573         * graphite-clast-to-gimple.c (precision_for_value): Adjust
6574         computation of precision by 1.
6575
6576 2010-09-30  Riyadh Baghdadi  <baghdadi.mr@gmail.com>
6577
6578         * graphite-cloog-util.c (openscop_read_cloog_matrix): New.
6579         (openscop_read_polyhedron_matrix): New.
6580         * graphite-cloog-util.h (openscop_read_polyhedron_matrix): Declared.
6581         (openscop_read_N_int): Same.
6582         * graphite-poly.c (openscop_read_N_int): New.
6583         (openscop_read_one_int): New.
6584         (openscop_read_N_string): New.
6585         (openscop_read_one_string): New.
6586         (openscop_read_powerset_matrix): New.
6587         (graphite_read_transforms): Remove.
6588         (graphite_read_scatt): New.
6589         (graphite_read_scop_file): New.
6590         (apply_poly_transforms): Updated to call graphite_read_scop_file.
6591
6592 2010-09-30  Andreas Simbuerger  <simbuerg@fim.uni-passau.de>
6593
6594         * graphite-poly.c: Change include order.
6595
6596 2010-09-30  Andreas Simbuerger  <simbuerg@fim.uni-passau.de>
6597
6598         * graphite-cloog-compat.h (cloog_matrix_ncolumns): New.
6599         (cloog_matrix_nrows): New.
6600
6601 2010-09-30  Riyadh Baghdadi  <baghdadi.mr@gmail.com>
6602
6603         * graphite-cloog-util.c (openscop_print_cloog_matrix): Remove spaces
6604         from matrix lines.
6605         * graphite-poly.c (openscop_print_scattering_function_1): Same.
6606         (print_scattering_function_1): Same.
6607         (openscop_print_pbb_domain): Same.
6608         (openscop_print_scop_context): Same.
6609         (print_scop_context): Same.
6610
6611 2010-09-30  Riyadh Baghdad  <baghdadi.mr@gmail.com>
6612
6613         * graphite-poly.c (openscop_print_pdr_polyhedron): Fix indentation.
6614         (openscop_print_pdr_polyhedron): Print pph.
6615
6616 2010-09-30  Sebastian Pop  <sebastian.pop@amd.com>
6617
6618         * graphite-clast-to-gimple.c (gcc_type_for_interval): Generate in
6619         priority signed types.
6620
6621 2010-09-30  Sebastian Pop  <sebastian.pop@amd.com>
6622
6623         * graphite-clast-to-gimple.c (max_signed_precision_type): Remove
6624         the call to lang_hooks.types.type_for_size.  Call
6625         build_nonstandard_integer_type.
6626
6627 2010-09-30  Riyadh Baghdadi  <baghdadi.mr@gmail.com>
6628
6629         * graphite-cloog-util.c (openscop_print_cloog_matrix): New.
6630         (openscop_print_polyhedron_matrix): New.
6631         * graphite-cloog-util.h (openscop_print_polyhedron_matrix): Declared.
6632         * graphite-poly.c (openscop_print_pdr_polyhedron): Same.
6633         (openscop_print_pdr_powerset): New.
6634         (openscop_print_powerset_matrix): New.
6635         (openscop_print_scattering_function_1): New.
6636         (print_scattering_function): Add support for scattering names and
6637         OpenScop format.
6638         (graphite_write_transforms): Remove.
6639         (print_pdr_access_layout): Updated to support OpenScop format.
6640         (print_pdr): Same.
6641         (openscop_print_pbb_domain): New.
6642         (print_pbb_body): Added a parameter to allow indicating that pbb_body
6643         is not provided.
6644         (print_pbb): Updated to call the new print_pbb_body.
6645         (openscop_print_scop_context): New.
6646         (print_scop_header): New.
6647         (print_scop): Updated to call print_scop_header.
6648         * graphite-poly.h: Document OpenScop format.
6649
6650 2010-09-30  Anatoly Sokolov  <aesok@post.ru>
6651
6652         * config/cris/m32c.c (cris_memory_move_cost): New.
6653         (cris_register_move_cost): Make static. Change arguments type from
6654         enum reg_class to reg_class_t.
6655         (TARGET_REGISTER_MOVE_COST, TARGET_MEMORY_MOVE_COST): Define.
6656         * config/cris/cris.h (REGISTER_MOVE_COST, MEMORY_MOVE_COST): Remove.
6657         * config/cris/cris-protos.h (cris_register_move_cost): Remove.
6658
6659 2010-09-30  Jakub Jelinek  <jakub@redhat.com>
6660
6661         PR target/45843
6662         * config/i386/i386.c (ix86_gimplify_va_arg): Use
6663         INTVAL (XEXP (slot, 1)) as prev_size.
6664
6665 2010-09-30  Michael Meissner  <meissner@linux.vnet.ibm.com>
6666
6667         PR target/45837
6668         * config/rs6000/aix.h (TARGET_AIX_OS): Define to be 1.
6669         * config/rs6000/rs6000.h (TARGET_AIX_OS): Define to be 0 if not
6670         defined.
6671         * config/rs6000/option-defaults.h (toplevel): Change #if
6672         TARGET_AIX to TARGET_AIX_OS to allow compiler to build after
6673         global option changes.
6674
6675 2010-09-30  Jakub Jelinek  <jakub@redhat.com>
6676
6677         * dwarf2out.c (mem_loc_descriptor): Handle IF_THEN_ELSE.
6678
6679         PR tree-optimization/31261
6680         * fold-const.c (fold_binary): Optimize ((A & N) + B) & M
6681         for constants M and N, M == (1LL << cst) - 1 && (N & M) == M.
6682
6683 2010-09-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6684
6685         PR bootstrap/45796
6686         * Makefile.in (build/gen%$(build_exeext)): Move rule after all
6687         special-casing for generators and turn into ...
6688         ((genprog:%=build/gen%$(build_exeext))): ... this static pattern
6689         rule, for better error messages in case of toplevel dependency errors.
6690         (genprog): Add hooks, rename to ...
6691         (genprogerr): ... this, and let genprog also contain check,
6692         checksum, condmd.
6693         ((genprog:%=build/gen%$(build_exeext))): Rename to ...
6694         ((genprogerr:%=build/gen%$(build_exeext))): ... this.
6695         (build/genhooks$(build_exeext)): Remove now-unneeded dependency.
6696
6697 2010-09-30  Jonathan Wakely  <jwakely.gcc@gmail.com>
6698             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6699
6700         * doc/install.texi: Suggest using LD_LIBRARY_PATH to find libs
6701         for GMP, MPFR and MPC.
6702
6703 2010-09-30  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
6704
6705         * config/sparc/sparc.opt (mimpure-text): Move ...
6706         * config/sol2.opt: ... here.  Correct description.
6707         * config.gcc (*-*-solaris2*): Add sol2.opt to extra_options.
6708         * doc/invoke.texi (Option Summary, SPARC Options): Move
6709         -mimpure-text, -mno-impure-text, -threads, -pthreads, -pthread ...
6710         (Option Summary, Solaris 2 Options): ... here.
6711         (Submodel Options, Solaris 2 Options): New menu entry.
6712         (SPARC Options): Move -mimpure-text, -threads, -pthreads, -pthread ...
6713         (Solaris 2 Options): ... here.
6714
6715 2010-09-30  Michael Eager  <eager@eagercon.com>
6716
6717         * extend.texi (interrupt_handler): Add MicroBlaze to list.
6718         (save_volatiles): Describe option for MicroBlaze.
6719         * invoke.texi: Add MicroBlaze Options.
6720         * contrib.texi: Add acknowledgment.
6721         * md.texi: Add MicroBlaze d and z constraints.
6722         * install.texi: Add microblaze-*-elf.
6723         * configure.ac: Add microblaze-*-* to target list.
6724         * configure: Regenerate.
6725         * config.gcc: Add microblaze*-*-*, microblaze*-linux*.
6726         * config/microblaze/microblaze-protos.h: New.
6727         * config/microblaze/crti.s: New.
6728         * config/microblaze/predicates.md: New.
6729         * config/microblaze/linux.h: New.
6730         * config/microblaze/microblaze.md: New.
6731         * config/microblaze/constraints.md: New.
6732         * config/microblaze/crtn.s: New.
6733         * config/microblaze/microblaze.opt: New.
6734         * config/microblaze/microblaze-c.c: New.
6735         * config/microblaze/t-microblaze: New.
6736         * config/microblaze/microblaze.c: New.
6737         * config/microblaze/microblaze.h: New.
6738
6739 2010-09-30  Iain Sandoe  <iains@gcc.gnu.org>
6740
6741         * c-parser.c (c_parser_objc_methodprotolist): Amend preceding comment,
6742         parse @optional/@required and set the flags as appropriate.
6743
6744 2010-09-30  Nathan Froyd  <froydnj@codesourcery.com>
6745
6746         * config/iq2000/t-iq2000 (TARGET_LIBGCC2_CFLAGS): Delete.
6747
6748 2010-09-30  Joseph Myers  <joseph@codesourcery.com>
6749
6750         * opt-functions.awk (static_var): Update comment.
6751         (var_ref): Return offsetof expression or -1, not variable address.
6752         * optc-gen.awk: Generate structure field initializers instead of
6753         static variables.  Expect -1 for missing variables instead of null
6754         pointer.  Add gcc_options parameters to generated functions.
6755         * opth-gen.awk: Generate structure fields for static variables.
6756         Add gcc_options parameters to generated functions.
6757         * common.opt (optimize, optimize_size): Add variables.
6758         * config/i386/i386-c.c (ix86_pragma_target_parse): Pass
6759         &global_options to cl_target_option_restore.
6760         * config/i386/i386.c (ix86_valid_target_attribute_p): Pass
6761         &global_options to cl_optimization_restore, cl_target_option_save
6762         and cl_target_option_restore.
6763         (ix86_set_current_function): Pass &global_options to
6764         cl_target_option_restore.
6765         * config/pdp11/pdp11.h (optimize): Remove.
6766         * config/rs6000/rs6000.h (optimize): Remove.
6767         * config/sh/sh.h (optimize): Remove.
6768         * config/xtensa/xtensa.h (optimize): Remove.
6769         * coretypes.h (struct gcc_options): Declare.
6770         * diagnostic.c (diagnostic_initialize): Initialize
6771         context->option_state.
6772         (diagnostic_report_diagnostic): Pass option_state to
6773         option_enabled hook.
6774         * diagnostic.h (diagnostic_context.option_enabled): Add void *
6775         parameter.
6776         (diagnostic_context.option_state): New field.
6777         * final.c (final_start_function, final, final_scan_insn): Rename
6778         optimize parameter to optimize_p.
6779         * flags.h (optimize, optimize_size): Remove.
6780         * function.c (invoke_set_current_function_hook): Pass
6781         &global_options to cl_optimization_restore.
6782         * gcc.c (driver_handle_option): Take gcc_options parameter.
6783         Assert that it is &global_options.
6784         (process_command): Pass &global_options to read_cmdline_option.
6785         * ipa-pure-const.c (suggest_attribute): Pass &global_options to
6786         option_enabled.
6787         * lto-opts.c (lto_reissue_options): Use option_flag_var.  Pass
6788         &global_options to set_option.
6789         * opts-common.c (handle_option, handle_generated_option,
6790         read_cmdline_option, set_option): Take explicit gcc_options
6791         parameters.  Use option_flag_var.
6792         (option_flag_var): New.
6793         * opts.c (common_handle_option, lang_handle_option,
6794         target_handle_option): Take gcc_options parameter.  Assert that it
6795         is &global_options.
6796         (read_cmdline_options): Pass &global_options to read_cmdline_option.
6797         (print_filtered_help): Use option_flag_var.  Pass &global_options
6798         to option_enabled.
6799         (common_handle_option): Use option_flag_var.
6800         (option_enabled): Take opts parameter.  Use option_flag_var.
6801         (get_option_state): Take gcc_options parameter.  Use
6802         option_flag_var.  Pass gcc_options parameter to option_enabled.
6803         (enable_warning_as_error): Pass &global_options to
6804         handle_generated_option.
6805         * opts.h (struct cl_option): Change flag_var to flag_var_offset.
6806         (cl_option_handler_func.handler): Take gcc_options parameter.
6807         (option_enabled, get_option_state, set_option, handle_option,
6808         handle_generated_option, read_cmdline_option): Take gcc_options
6809         parameters.
6810         * toplev.c (optimize, optimize_size): Remove.
6811         (print_switch_values): Pass &global_options to option_enabled.
6812         (option_affects_pch_p): Use option_flag_var.  Pass &global_options
6813         to get_option_state.
6814         (general_init): Initialize global_dc->option_state.
6815         * tree.c (build_optimization_node): Pass &global_options to
6816         cl_optimization_save.
6817         (build_target_option_node): Pass &global_options to
6818         cl_target_option_save.
6819
6820 2010-09-30  Martin Jambor  <mjambor@suse.cz>
6821
6822         * tree-sra.c (type_consists_of_records_p): Do not check for trailing
6823         zero sized bit-fields.
6824
6825 2010-09-30  Nicola Pero  <nicola.pero@meta-innovation.com>
6826
6827         * c-parser.c (c_lex_one_token): When finding a CPP_AT_NAME
6828         Objective-C token, map RID_CLASS to RID_AT_CLASS and similar.
6829         (c_parser_external_declaration): Use RID_AT_CLASS instead of RID_CLASS.
6830         (c_parser_objc_class_declaration): Same change.
6831         (c_parser_objc_try_catch_statement): Use RID_AT_TRY instead of
6832         RID_TRY and RID_AT_CATCH instead of RID_CATCH.
6833         (c_parser_objc_class_instance_variables): Use RID_AT_PRIVATE
6834         instead of RID_PRIVATE, RID_AT_PROTECTED instead of RID_PROTECTED
6835         and RID_AT_PUBLIC instead of RID_PUBLIC.
6836         (c_parser_statement_after_labels): Use RID_AT_TRY instead of
6837         RID_TRY and RID_AT_CATCH instead of RID_CATCH.
6838
6839 2010-09-30  Tom G. Christensen  <tgc@jupiterrise.com>
6840
6841         * doc/install.texi (Binaries): Update link to HP-UX porting centre.
6842         Add links to current providers of packages for Solaris and IRIX.
6843
6844 2010-09-29  Nicola Pero  <nicola.pero@meta-innovation.com>
6845
6846         Merge from 'apple/trunk' branch on FSF servers.
6847         * c-parser.c: Applied change originally in c-parse.in.
6848
6849         2005-10-04  Fariborz Jahanian  <fjahanian@apple.com>
6850
6851         Radar 4281748
6852         * c-decl.c (start_decl): Check for redeclaration of class name.
6853         * c-parse.in (after_type_declarator): Recognize CLASSNAME.
6854
6855 2010-09-29  Steve Ellcey  <sje@cup.hp.com>
6856
6857         * config/ia64/ia64.c (ia64_builtin_decl): New.
6858         (TARGET_BUILTIN_DECL): Define.
6859         (ia64_builtins): New.
6860         (ia64_init_builtins): Save decls in ia64_builtins.
6861
6862 2010-09-29  Bernd Schmidt  <bernds@codesourcery.com>
6863
6864         PR target/40457
6865         * postreload.c (move2add_use_add2_insn): Use full_costs for comparison.
6866         (move2add_use_add3_insn): Likewise.
6867         (reload_cse_move2add): Likewise.
6868         * rtlanal.c (get_full_rtx_cost): New function.
6869         * rtl.h (struct full_rtx_costs): New.
6870         (init_costs_to_max, init_costs_to_zero, costs_lt_p,
6871         costs_add_n_insns): New inline functions.
6872         (get_full_rtx_cost): Declare.
6873
6874         PR c/45054
6875         * reload1.c (replace_pseudos_in): Use eliminate_regs_1, allowing
6876         invariants.  Check for reg_equiv_invariant.
6877         (reload): Assert that spilled_pseudos is empty when returning.
6878
6879 2010-09-29  Kai Tietz  <kai.tietz@onevision.com>
6880
6881         * config/i386/mingw32.h (TARGET_64BIT): replaced by
6882         TARGET_64BIT_DEFAULT in #if check.
6883
6884 2010-09-29  Jack Howarth  <howarth@bromo.med.uc.edu>
6885
6886         * varasm.c (assemble_alias): Add error message for unsupported ifunc.
6887
6888 2010-09-29  Mike Stump  <mikestump@comcast.net>
6889
6890         * config/darwin.h (flag_mkernel): Remove.
6891         (flag_apple_kext): Likewise.
6892
6893 2010-09-29  Joseph Myers  <joseph@codesourcery.com>
6894             Jack Howarth  <howarth@bromo.med.uc.edu>
6895
6896         * config/darwin.opt (undefined): Add.
6897
6898 2010-09-29  Nathan Sidwell  <nathan@codesourcery.com>
6899
6900         PR testsuite/45664
6901         * configure.ac: Add --enable-indirect-function option.
6902         * config.gcc: Add default_gnu_indirect_function.
6903         * config.in (HAVE_GAS_INDIRECT_FUNCTION): Rename to ...
6904         (HAVE_GNU_INDIRECT_FUNCTION): ... this.
6905         * varasm.c (do_assemble_alias): Adjust for macro name change.
6906         * configure: Rebuilt.
6907         * doc/install.texi: Document --enable-indirect-function.
6908
6909 2010-09-29  Joseph Myers  <joseph@codesourcery.com>
6910
6911         * doc/options.texi (Variable, Var, Init): Update documentation
6912         without reference to VarExists.
6913         (VarExists): Remove.
6914         * common.opt, config/i386/i386.opt, config/linux.opt,
6915         config/rs6000/rs6000.opt, config/sh/sh.opt, config/spu/spu.opt:
6916         Don't use VarExists.
6917
6918 2010-09-29  Joseph Myers  <joseph@codesourcery.com>
6919
6920         * optc-gen.awk: Generate global_options initializer instead of
6921         individual variables.  Add x_ prefix to names of structure members.
6922         * opth-gen.awk: Generate gcc_options structure.  Add x_ prefix to
6923         names of structure members.
6924         * doc/tm.texi.in (HARD_FRAME_POINTER_IS_FRAME_POINTER,
6925         HARD_FRAME_POINTER_IS_ARG_POINTER): Document.
6926         * doc/tm.texi: Regenerate.
6927         * alias.c: Use HARD_FRAME_POINTER_IS_FRAME_POINTER
6928         * builtins.c: Use HARD_FRAME_POINTER_IS_ARG_POINTER.
6929         * c-parser.c (disable_extension_diagnostics,
6930         restore_extension_diagnostics): Update names of cpp_options members.
6931         * combine.c: Use HARD_FRAME_POINTER_IS_FRAME_POINTER
6932         * common.opt (fcompare-debug-second): Don't use Var.
6933         * config/alpha/alpha.h (target_flags): Remove.
6934         * config/arm/arm.h (HARD_FRAME_POINTER_IS_FRAME_POINTER,
6935         HARD_FRAME_POINTER_IS_ARG_POINTER): Define.
6936         * config/bfin/bfin.h (target_flags): Remove.
6937         * config/cris/cris.h (target_flags): Remove.
6938         * config/i386/i386-c.c (ix86_pragma_target_parse): Update names of
6939         cl_target_option members.
6940         * config/i386/i386.c (ix86_force_align_arg_pointer): Remove.
6941         (ix86_function_specific_print, ix86_valid_target_attribute_tree,
6942         ix86_can_inline_p): Update names of cl_target_option members.
6943         * config/i386/i386.h (ix86_isa_flags): Remove.
6944         * config/lm32/lm32.h (target_flags): Remove.
6945         * config/mcore/mcore.h (mcore_stack_increment): Remove.
6946         * config/mcore/mcore.md (addsi3): Remove extern declaration of
6947         flag_omit_frame_pointer.
6948         * config/mep/mep.h (target_flags): Remove.
6949         * config/mips/mips.h (HARD_FRAME_POINTER_IS_FRAME_POINTER,
6950         HARD_FRAME_POINTER_IS_ARG_POINTER): Define.
6951         * config/mmix/mmix.h (target_flags): Remove.
6952         * config/rs6000/rs6000.h (rs6000_xilinx_fpu, flag_pic,
6953         flag_expensive_optimizations): Remove.
6954         * config/s390/s390.h (flag_pic): Remove.
6955         * config/score/score-conv.h (target_flags): Remove.
6956         * config/sh/sh.h (sh_fixed_range_str): Remove.
6957         * config/spu/spu.h (target_flags, spu_fixed_range_string): Remove.
6958         * dbxout.c: Use HARD_FRAME_POINTER_IS_ARG_POINTER
6959         * df-scan.c: Use HARD_FRAME_POINTER_IS_FRAME_POINTER.
6960         * diagnostic.c (diagnostic_initialize): Update names of
6961         diagnostic_context members.
6962         * diagnostic.h (diagnostic_context): Rename inhibit_warnings and
6963         warn_system_headers.
6964         (diagnostic_report_warnings_p): Update for new names.
6965         * dwarf2out.c: Use HARD_FRAME_POINTER_IS_ARG_POINTER
6966         * emit-rtl.c: Use HARD_FRAME_POINTER_IS_FRAME_POINTER and
6967         HARD_FRAME_POINTER_IS_ARG_POINTER.
6968         * flags.h (flag_compare_debug): Declare.
6969         * ira.c: Use HARD_FRAME_POINTER_IS_FRAME_POINTER
6970         * opts.c (flag_compare_debug): Define.
6971         (common_handle_option): Update names of diagnostic_context
6972         members.  Handle -fcompare-debug-second.
6973         (fast_math_flags_struct_set_p): Update names of cl_optimization
6974         members.
6975         * reginfo.c: Use HARD_FRAME_POINTER_IS_FRAME_POINTER.
6976         * regrename.c: Use HARD_FRAME_POINTER_IS_FRAME_POINTER.
6977         * reload.c: Use HARD_FRAME_POINTER_IS_FRAME_POINTER.
6978         * reload1.c: Use HARD_FRAME_POINTER_IS_FRAME_POINTER.
6979         * resource.c: Use HARD_FRAME_POINTER_IS_FRAME_POINTER.
6980         * rtl.h (HARD_FRAME_POINTER_IS_FRAME_POINTER,
6981         HARD_FRAME_POINTER_IS_ARG_POINTER): Define and use.
6982         * sel-sched.c: Use HARD_FRAME_POINTER_IS_FRAME_POINTER
6983         * stmt.c: Use HARD_FRAME_POINTER_IS_ARG_POINTER.
6984
6985 2010-09-29  Hariharan Sandanagobalane  <hariharan@picochip.com>
6986
6987         * config/picochip/picochip.c (picochip_output_internal_label):
6988         This function can now be called for debug CFI labels, which can come
6989         in the middle of a vliw instruction.  Postpone until end of vliw.
6990
6991 2010-09-29  Richard Guenther  <rguenther@suse.de>
6992
6993         * tree.h (SCOPE_FILE_SCOPE_P): New macro.
6994         (DECL_FILE_SCOPE_P): Use it.
6995         (TYPE_FILE_SCOPE_P): New macro.
6996
6997 2010-09-29  Nicola Pero  <nicola.pero@meta-innovation.com>
6998
6999         * c-parser.c (c_lex_one_token): In Objective-C, when dealing with
7000         a CPP_NAME which is a reserved word, clearly separate cases for
7001         OBJC_IS_PQ_KEYWORD, OBJC_IS_AT_KEYWORD and OBJC_IS_CXX_KEYWORD.
7002
7003 2010-09-29  Nicola Pero  <nicola.pero@meta-innovation.com>
7004
7005         * c-parser.c (c_lex_one_token): In Objective-C, do not replace
7006         token->value with the canonical spelling.  Do exactly like C and
7007         C++ and leave it as it is.
7008
7009 2010-09-28  Richard Henderson  <rth@redhat.com>
7010
7011         * config/alpha/alpha.c (alpha_builtins): New.
7012         (alpha_builtin_decl, TARGET_BUILTIN_DECL): New.
7013         (alpha_builtin_function): New.
7014         (alpha_add_builtins, alpha_init_builtins): Use it.
7015
7016 2010-09-28  Nicola Pero  <nicola.pero@meta-innovation.com>
7017
7018         * doc/standards.texi (Standards): Expanded the section on
7019         Objective-C and Objective-C++.
7020
7021 2010-09-28  DJ Delorie  <dj@redhat.com>
7022
7023         PR target/45800
7024         * config/m32c/m32c.c (m32c_subreg): Force adjustment of subregs of
7025         volatile MEMs.
7026
7027 2010-09-28  Iain Sandoe  <iains@gcc.gnu.org>
7028
7029         * c-parser.c (c_parser_declaration_or_fndef): Diagnose incorrect prefix
7030         attributes on methods.
7031          (c_parser_objc_method_definition): Handle attributes.
7032         (c_parser_objc_methodproto): Likewise.
7033         (c_parser_objc_maybe_method_attributes): New.
7034         (c_parser_objc_method_decl): Handle attributes, add a diagnostic for a
7035         missing definition, similar to that in ObjC++.
7036
7037 2010-09-28  Richard Henderson  <rth@redhat.com>
7038
7039         * defaults.h (DWARF2_UNWIND_INFO): Don't depend on TARGET_UNWIND_INFO.
7040         (MUST_USE_SJLJ_EXCEPTIONS): Remove.
7041         (CONFIG_SJLJ_EXCEPTIONS): Remove.
7042         (STACK_OLD_CHECK_PROTECT): Use targetm.except_unwind_info.
7043         (STACK_CHECK_PROTECT): Likewise.
7044         * dwarf2out.c (DWARF2_UNWIND_INFO, DWARF2_FRAME_INFO): Poison.
7045         (dwarf2out_do_frame): Use debug_unwind_info and except_unwind_info.
7046         (dwarf2out_do_cfi_asm, dwarf2out_begin_prologue): Likewise.
7047         (dwarf2out_frame_init, dwarf2out_frame_finish): Likewise.
7048         (dwarf2out_assembly_start): Likewise.
7049         * except.c (init_eh): Use targetm.except_unwind_info.
7050         (finish_eh_generation, gate_convert_to_eh_region_ranges): Likewise.
7051         (output_one_function_exception_table): Likewise.
7052         * final.c: Unconditionally include dwarf2out.h.
7053         (final_start_function): Unconditionally call dwarf2out routines.
7054         (final_end_function, final_scan_insn): Likewise.
7055         * function.c (expand_function_end): Use targetm.except_unwind_info.
7056         * opts.c (decode_options): Use targetm.except_unwind_info.
7057         * system.h (USING_SJLJ_EXCEPTIONS, TARGET_UNWIND_INFO): Poison.
7058         * target.def (debug_unwind_info, except_unwind_info): New.
7059         * target.h (enum unwind_info_type): New.
7060         * targhooks.c (default_debug_unwind_info): New.
7061         (default_except_unwind_info): New.
7062         (dwarf2_except_unwind_info, sjlj_except_unwind_info): New.
7063         * targhooks.h: Declare them.
7064         * tree-tailcall.c: Include "target.h"
7065         (suitable_for_tail_call_opt_p): Use targetm.except_unwind_info.
7066         * Makefile.in (tree-tailcall.o): Update.
7067         * tree.c (build_common_builtin_nodes): Use targetm.except_unwind_info.
7068         (lhd_gcc_personality): Likewise.
7069
7070         * doc/tm.texi.in (TARGET_UNWIND_INFO): Remove.
7071         (TARGET_EXCEPT_UNWIND_INFO): New.
7072         (DWARF2_UNWIND_INFO): Update.
7073         (TARGET_DEBUG_UNWIND_INFO): New.
7074         * doc/tm.texi: Rebuild.
7075
7076         * c-family/c-cppbuiltin.c (c_cpp_builtins): Use
7077         targetm.except_unwind_info.
7078
7079         * config/arm/arm.c (TARGET_EXCEPT_UNWIND_INFO): New.
7080         (arm_except_unwind_info): New.
7081         (arm_compute_func_type): Use it.
7082         (arm_expand_prologue, thumb_pushpop): Likewise.
7083         (thumb1_expand_prologue, thumb1_output_function_prologue): Likewise.
7084         (arm_unwind_emit, arm_output_fn_unwind): Likewise.
7085         * config/arm/bpabi.h (ARM_UNWIND_INFO): Rename from TARGET_UNWIND_INFO.
7086         * config/arm/arm.h (ARM_UNWIND_INFO): Likewise.
7087         (DWARF2_UNWIND_INFO): Remove.
7088         (MUST_USE_SJLJ_EXCEPTIONS): Remove.
7089         (ARM_EABI_UNWIND_TABLES): Remove.
7090
7091         * config/ia64/ia64.c (ia64_debug_unwind_info): New.
7092         (TARGET_DEBUG_UNWIND_INFO, TARGET_EXCEPT_UNWIND_INFO): New.
7093         (ia64_except_unwind_info): New.
7094         (ia64_output_function_prologue): Use it.
7095         (ia64_add_bundle_selector_before): Likewise.
7096         (ia64_reorg, ia64_asm_unwind_emit): Likewise.
7097         * config/ia64/ia64.h (DWARF2_FRAME_INFO): Remove.
7098         (TARGET_UNWIND_INFO): Remove.
7099
7100         * config/pa/pa.c (pa_option_override): Use targetm.except_unwind_info.
7101
7102 2010-09-28  Iain Sandoe  <iains@gcc.gnu.org>
7103
7104         * c-parser.c (c_parser_objc_class_definition): Adjust prototype.
7105         (c_parser_objc_protocol_definition): Likewise.
7106         (c_parser_external_declaration): Provide dummy attribute arguments.
7107         (c_parser_declaration_or_fndef): Parse prefix attributes for ObjC.
7108         (c_parser_objc_class_definition): Handle attributes.
7109         (c_parser_objc_protocol_definition): Likewise.
7110
7111 2010-09-28  Tobias Burnus  <burnus@net-b.de>
7112
7113         PR fortran/40569
7114         PR fortran/40568
7115         * toplev.h (save_decoded_options, save_decoded_options_count):
7116         New global variables.
7117         * toplev.c (save_decoded_options, save_decoded_options_count):
7118         Export variables.
7119
7120 2010-09-28  Ian Lance Taylor  <iant@google.com>
7121
7122         * config/i386/i386.c (ix86_supports_split_stack): Test
7123         HAVE_GAS_CFI_PERSONALITY_DIRECTIVE rather than dwarf2out_do_cfi_asm.
7124
7125 2010-09-28  Ian Lance Taylor  <iant@google.com>
7126
7127         PR target/45815
7128         * opts.c (decode_options): Don't test whether the target supports
7129         split stack if flag_split_stack == 0.
7130
7131 2010-09-28  Jan Hubicka  <jh@suse.cz>
7132
7133         * builtin-attrs.def (ATTR_LEAF): New attribute.
7134         (ATTR_NOVOPS_LEAF_LIST, ATTR_LEAF_LIST, ATTR_NOTHROW_LEAF_LIST,
7135         ATTR_CONST_NOTHROW_LEAF_LIST, ATTR_PURE_NOTHROW_LEAF_LIST,
7136         ATTR_PURE_NOTHROW_NOVOPS_LEAF_LIST, ATTR_NORETURN_NOTHROW_LEAF_LIST,
7137         ATTR_MALLOC_NOTHROW_LEAF_LIST, ATTR_SENTINEL_NOTHROW_LEAF_LIST,
7138         ATTR_NOTHROW_NONNULL_LEAF, ATTR_CONST_NOTHROW_NONNULL_LEAF,
7139         ATTR_CONST_NOTHROW_TYPEGENERIC_LEAF, ATTR_PURE_NOTHROW_NONNULL_LEAF,
7140         ATTR_MALLOC_NOTHROW_NONNULL_LEAF): New attribute lists.
7141         * sync-builtins.def: Annotate all builtins by leaf.
7142         * omp-builtins.def: Annotate all builtins by leaf.
7143         * builtins.def: Annotate relevant builtins with leaf attribute.
7144         (ATTR_MATHFN_ERRNO, ATTR_MATHFN_FPROUNDING,
7145         ATTR_MATHFN_FPROUNDING_ERRNO, ATTR_MATHFN_FPROUNDING_STORE): Make
7146         leaf.
7147
7148 2010-09-28  Jan Hubicka  <jh@suse.cz>
7149
7150         * tree-ssa-ccp.c (fold_ctor_reference): New function.
7151         (fold_const_aggregate_ref): Use it.
7152         * fold-const.c (canonicalize_constructor_val): Check that we don't fold
7153         into external static.
7154
7155 2010-09-28  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
7156
7157         PR target/44452
7158         * config/i386/i386.opt (mvect8-ret-in-mem): Define.
7159         * config/i386/i386.c (ix86_target_string): Handle -mvect8-ret-in-mem.
7160         (ix86_solaris_return_in_memory): Remove.
7161         * config/i386/i386-protos.h (ix86_solaris_return_in_memory): Remove.
7162         * config/i386/sol2.h (SUBTARGET_RETURN_IN_MEMORY): Remove.
7163         (TARGET_SUBTARGET_DEFAULT): Redefine.
7164         * config/i386/sol2-10.h (TARGET_SUBTARGET_DEFAULT): Update comment.
7165         * config/i386/vx-common.h (SUBTARGET_RETURN_IN_MEMORY): Remove.
7166         (TARGET_SUBTARGET_DEFAULT): Redefine.
7167         * doc/invoke.texi (Option Summary, i386 and x86-64 Options): Add
7168         -mvect8-ret-in-mem.
7169         (i386 and x86-64 Options): Document -mvect8-ret-in-mem.
7170
7171 2010-09-29  Alan Modra  <amodra@gmail.com>
7172
7173         PR target/45807
7174         * config/rs6000/aix.h (SETUP_FRAME_ADDRESSES): Delete.
7175         * config/rs6000/linux64.h (SETUP_FRAME_ADDRESSES): Delete.
7176         * config/rs6000/rs6000-protos.h (rs6000_aix_emit_builtin_unwind_init):
7177         Delete.
7178         * config/rs6000/rs6000.c (rs6000_aix_emit_builtin_unwind_init): Delete.
7179         (rs6000_emit_prologue): Don't just create frame save info for r2,
7180         actually save r2.
7181
7182 2010-09-28  Richard Henderson  <rth@redhat.com>
7183
7184         * config/i386/cygming.h (ASM_OUTPUT_DWARF_OFFSET): Output 8 bytes
7185         when 8 bytes are requested.
7186
7187 2010-09-28  Tristan Gingold  <gingold@adacore.com>
7188
7189         * config/avr/avr.c (expand_prologue): Set
7190         current_function_static_stack_size.
7191
7192 2010-09-28  Tristan Gingold  <gingold@adacore.com>
7193
7194         * config/alpha/alpha.md: Change the initial condition of the
7195         probing loop.
7196
7197 2010-09-28  Uros Bizjak  <ubizjak@gmail.com>
7198
7199         * config/i386/sse.md (*avx_<umaxmin:code><mode>3):
7200         Split from *avx_<maxmin:code><mode>3.
7201         (*avx_<smaxmin:code><mode>3): Ditto.
7202         * config/i386/i386.md (maxmin): Remove code iterator.
7203
7204 2010-09-27  Ian Lance Taylor  <iant@google.com>
7205
7206         * config/i386/i386.c (ix86_supports_split_stack): -fsplit-stack
7207         requires assembler support for CFI directives.
7208
7209 2010-09-27  Richard Henderson  <rth@redhat.com>
7210
7211         * dwarf2out.c (dwarf2out_cfi_label): Use ASM_OUTPUT_DEBUG_LABEL.
7212
7213 2010-09-27  Hans-Peter Nilsson  <hp@axis.com>
7214
7215         * emit-rtl.c (reorder_insns_nobb) [ENABLE_CHECKING]: Sanity-check
7216         that AFTER is not in the range FROM..TO, inclusive.
7217
7218 2010-09-27  Hans-Peter Nilsson  <hp@axis.com>
7219             Bernd Schmidt  <bernds@codesourcery.com>
7220
7221         PR rtl-optimization/45792
7222         * cfgcleanup.c (try_head_merge_bb): New rtx vector nextptr.
7223         If not all insns are to be merged, for each edge, stash the
7224         next candidate after the to-be-merged insns before doing the
7225         merge, and use them for the retry at the new insertion point.
7226         Handle CC0 targets when retrying.
7227
7228 2010-09-27  Ian Lance Taylor  <iant@google.com>
7229
7230         * common.opt (fsplit-stack): New option.
7231         * opts.c (decode_options): Set flag_split_stack to final value.
7232         * target.def (supports_split_stack): New hook.
7233         * gcc.c (STACK_SPLIT_SPEC): Define.
7234         (LINK_COMMAND_SPEC): Use STACK_SPLIT_SPEC.
7235         * doc/invoke.texi (Option Summary): Mention -fsplit-stack.
7236         (Code Gen Options): Document -fsplit-stack.
7237         * doc/extend.texi (Function Attributes): Mention no_split_stack.
7238         (Function Attributes): Document no_split_stack.
7239         * doc/tm.texi.in (Stack Smashing Protection): Add @hook
7240         TARGET_SUPPORTS_SPLIT_STACK.
7241         * doc/tm.texi: Rebuild.
7242         * function.c (thread_prologue_and_epilogue_insns): If
7243         flag_split_stack, add split stack prologue.
7244         * explow.c (allocate_dynamic_stack_space): Support -fsplit-stack.
7245         * varasm.c (saw_no_split_stack): New static variable.
7246         (assemble_start_function): Set saw_no_split_stack if the function
7247         has the no_split_stack attribute.
7248         (file_end_indicate_split_stack): New function.
7249         * output.h (file_end_indicate_split_stack): Declare.
7250         * libgcc-std.ver (GCC_4.6.0): Add -fsplit-stack support variables
7251         and function.
7252         * doc/libgcc.texi (Miscellaneous routines): Document -fsplit-stack
7253         routines.
7254         * config/i386/i386.c (ix86_option_override_internal): Don't set
7255         expand_builtin_va_start to NULL if -fsplit-stack.
7256         (ix86_function_regparm): Reduce local regparm by 1 for 32-bit
7257         -fsplit-stack.
7258         (ix86_va_start): If -fsplit-stack, get overflow pointer from
7259         scratch register set by prologue.
7260         (ix86_code_end): If -fsplit-stack, call
7261         file_end_indicate_split_stack.
7262         (ix86_supports_split_stack): New static function.
7263         (SPLIT_STACK_AVAILABLE): Define.
7264         (split_stack_prologue_scratch_regno): New static function.
7265         (split_stack_fn): New static variable.
7266         (ix86_expand_split_stack_prologue): New function.
7267         (ix86_live_on_entry): New static function.
7268         (ix86_legitimate_address_p): Handle UNSPEC_STACK_CHECK.
7269         (output_pic_addr_const): Likewise.
7270         (i386_asm_output_addr_const_extra): Likewise.
7271         (ix86_expand_call): Change return type to rtx.  Return the new
7272         call instruction.
7273         (TARGET_SUPPORTS_SPLIT_STACK): Define.
7274         (TARGET_EXTRA_LIVE_ON_ENTRY): Define.
7275         * config/i386/i386.md (UNSPEC_STACK_CHECK): Define.
7276         (split_stack_prologue, split_stack_return): New insns.
7277         (split_stack_space_check): New insn.
7278         * config/i386/i386.h (struct machine_function): Add
7279         split_stack_varargs_pointer field.
7280         * config/i386/linux.h (TARGET_CAN_SPLIT_STACK): Define.
7281         (TARGET_THREAD_SPLIT_STACK_OFFSET): Define.
7282         * config/i386/linux64.h (TARGET_CAN_SPLIT_STACK): Define.
7283         (TARGET_THREAD_SPLIT_STACK_OFFSET): Define.
7284         * config/i386/i386-protos.h (ix86_expand_split_stack_prologue):
7285         Declare.
7286         (ix86_expand_call): Update declaration.
7287
7288 2010-09-27  Nicola Pero  <nicola.pero@meta-innovation.com>
7289
7290         * doc/objc.texi (Type encoding): Added the new 'long double' (D)
7291         code.  Added byref, which was missing in the list of codes.
7292         Explain that enumeration values are encoded as the integer type
7293         that the compiler uses to store them.  Explain and make examples
7294         of how 'const' interacts with pointers, and the complication of
7295         the encoding of 'const char *'.
7296         (Legacy type encoding): New subsection, explaining that GCC emits
7297         incorrect type encodings for the NeXT runtime for compatibility
7298         reasons.
7299         (@@encode): New subsection, explaining @encode and particularly
7300         that protocol qualifiers are not recognized inside an @encode()
7301         expression.
7302         (Method signatures): New subsection, explaining how method
7303         signatures are encoded.
7304
7305 2010-09-27  Nicola Pero  <nicola.pero@meta-innovation.com>
7306
7307         Merge from 'apple/trunk' branch on FSF servers.  Removed small
7308         change in build_conditional_expr that had been added when fixing
7309         PR objc/27377 and which did the same check in a less complete way.
7310
7311         2005-12-15  Fariborz Jahanian  <fjahanian@apple.com>
7312
7313         Radar 4229905
7314         * c-typeck.c (build_conditional_expr): Call objc_have_common_type when
7315         looking for objective-c common pointer types.
7316
7317         2005-06-22  Ziemowit Laski  <zlaski@apple.com>
7318
7319         Radar 4154928
7320         * c-typeck.c (build_conditional_expr): For two ObjC pointer types,
7321         use their ObjC common type.
7322
7323 2010-09-27  Richard Guenther  <rguenther@suse.de>
7324
7325         * dbxout.c (dbxout_symbol): Use DECL_FILE_SCOPE_P.
7326
7327 2010-09-27  Jie Zhang  <jie@codesourcery.com>
7328
7329         * print-tree.c (print_node): Print in-constant-pool.
7330
7331 2010-09-27  Uros Bizjak  <ubizjak@gmail.com>
7332
7333         * config/i386/i386.h (CLASS_MAX_NREGS): Also handle XCmode.
7334         (UNITS_PER_WORD): Define only when IN_LIBGCC2 is undefined.
7335         (MOVE_MAX_PIECES): Redefine using UNITS_PER_WORD.
7336         (ASM_OUTPUT_AVX_PREFIX): Simplify pointer addition.
7337
7338 2010-09-26  Uros Bizjak  <ubizjak@gmail.com>
7339
7340         * config/i386/i386.md (pro_epilogue_adjust_stack_<mode>_add): Merge
7341         from pro_epilogue_adjust_stack_<mode>_{1,2}.
7342         (pro_epilogue_adjust_stack_<mode>_add): Rename from
7343         pro_epilogue_adjust_stack_<mode>_3.
7344         * config/i386/i386.c (pro_epilogue_adjust_stack): Update for
7345         renamed pro_epilogue_adjust_stack_{si,di}_add.
7346         (ix86_expand_prologue): Use indirect functions.  Update for renamed
7347         pro_epilogue_adjust_stack_{si,di}_sub.
7348
7349 2010-09-26  Uros Bizjak  <ubizjak@gmail.com>
7350
7351         * config/i386/i386.md (movmsk_df): New insn.
7352         (signbitdf): Split out of signbit<mode>2.  Generate movmsk_df
7353         sequence for TARGET_SSE_MATH.
7354
7355 2010-09-26  Richard Sandiford  <rdsandiford@googlemail.com>
7356
7357         * config/mips/mips.c (mips_builtin_decls): Declare.
7358         (mips_init_builtins): Store function declarations in
7359         mips_builtin_decls.
7360         (mips_builtin_decl): New function.
7361         (TARGET_BUILTIN_DECL): Define.
7362
7363 2010-09-25  Kai Tietz  <kai.tietz@onevision.com>
7364             Richard Henderson  <rth@redhat.com>
7365
7366         * config/i386/cygwin.asm: Include auto-host.h.
7367         (cfi_startproc, cfi_endproc, cfi_adjust_cfa_offset,
7368         cfi_def_cfa_register, cfi_register, cfi_push, cfi_pop): New macros.
7369         (__chkstk, __alloca): Annotate for dwarf2 unwind info.  Drop
7370         alignment code from the 64-bit path.  Use gas local labels.
7371         * config/i386/i386.md (pro_epilogue_adjust_stack_<mode>_2): Macroize
7372         from _di_2.  Remove the useless constant integer argument.
7373         (pro_epilogue_adjust_stack_<mode>_3): New.
7374         (allocate_stack_worker_probe_<mode>): Macroize from
7375         allocate_stack_worker_{32,64}.  Use __chkstk_ms.  Update all users.
7376         * config/i386/i386.c (ix86_expand_prologue): Use __chkstk_ms;
7377         use gen_pro_epilogue_adjust_stack_*_3 and annotate it.
7378         (__chkstk_ms): New function.
7379         * config/i386/t-cygming (LIB1ASMFUNCS): Add _chkstk_ms.
7380         * config/i386/t-interix: Likewise.
7381         * configure.ac (HAVE_GAS_CFI_DIRECTIVE): Export for target.
7382         (HAVE_GAS_CFI_PERSONALITY_DIRECTIVE): Likewise.
7383         (HAVE_GAS_CFI_SECTIONS_DIRECTIVE): Likewise.
7384         * configure, config.in: Rebuild.
7385
7386 2010-09-25  Eric Botcazou  <ebotcazou@adacore.com>
7387
7388         * tree-inline.c (copy_bb): Use GSI_CONTINUE_LINKING when inserting new
7389         statements because of the return slot optimization.
7390
7391 2010-09-25  Anatoly Sokolov  <aesok@post.ru>
7392
7393         * config/avr/avr.h (CLASS_LIKELY_SPILLED_P): Remove.
7394         * config/avr/avr-protos.h (class_likely_spilled_p): Remove.
7395         * config/avr/avr.c (TARGET_CLASS_LIKELY_SPILLED_P): Define.
7396         (class_likely_spilled_p): Rename to...
7397         (avr_class_likely_spilled_p): ...this. Make static. Change argument
7398         type to reg_class_t.
7399
7400 2010-09-24  Jan Hubicka  <jh@suse.cz>
7401
7402         * lto-symtab.c (lto_symtab_entry_def): Add guessed field.
7403         (lto_symtab_resolve_symbols): Set it.
7404         (lto_symtab_merge_decls_1): Do not compute used_from_object_file;
7405         store resolution field in cgraph/varpool.
7406         * cgraph.c (cgraph_same_body_alias, cgraph_add_thunk): Return node.
7407         (cgraph_get_node_or_alias, cgraph_get_node_or_alias): Constify.
7408         (cgraph_dump_node): Drop used_from_object_file.
7409         (cgraph_clone_node, cgraph_create_virtual_clone): Likewise.
7410         (cgraph_function_body_availability): Use decl_replaceable_p.
7411         (cgraph_make_node_local): Set resolution to LDPR_PREVAILING_DEF_IRONLY.
7412         (cgraph_can_remove_if_no_direct_calls_and_refs): Use
7413         cgraph_used_from_object_file_p.
7414         (cgraph_will_be_removed_from_program_if_no_direct_calls): Use
7415         cgraph_used_from_object_file_p.
7416         (resolution_used_from_other_file_p): New functoin.
7417         (cgraph_used_from_object_file_p): New predicate.
7418         * cgraph.h: Include plugin-api.h
7419         (struct cgraph_local_info): Remove used_from_object_file.
7420         (struct cgraph_node): Add resolution field.
7421         (struct varpool_node): Likewise; remove used_from_object_file;
7422         reove const_value_known.
7423         (cgraph_get_node, cgraph_get_node_or_alias, cgraph_node,
7424         cgraph_same_body_alias, cgraph_add_thunk): Update prototypes.
7425         (resolution_used_from_other_file_p, cgraph_used_from_object_file_p,
7426         varpool_used_from_object_file_p): Declare.
7427         (varpool_get_node, varpool_extra_name_alias): Update prototype.
7428         * tree.h (DECL_REPLACEABLE_P): Remove.
7429         (decl_replaceable_p, decl_binds_to_current_def_p): Declare.
7430         * final.c (rest_of_clean_state): Use decl_binds_to_current_def_p.
7431         * lto-cgraph.c (lto_output_node, lto_output_varpool_node,
7432         input_overwrite_node, input_node, input_varpool_node): Stream
7433         resolution.
7434         * expr.c (expand_expr_real_1): Use const_value_known_p
7435         * ipa.c (ipa_discover_readonly_nonaddressable_var): Do not set
7436         const_value_known.
7437         (cgraph_externally_visible_p): Use cgraph_used_from_object_file_p.
7438         (function_and_variable_visibility): Set resolution for local vars
7439         and functions; use varpool_used_from_object_file_p.
7440         * varasm.c (resolution_to_local_definition_p, resolution_local_p): New
7441         static functions.
7442         (default_binds_local_p_1): Use resolutoin info.
7443         (decl_binds_to_current_def_p, decl_replaceable_p): New functions.
7444         * varpool.c (varpool_get_node): Constify.
7445         (const_value_known_p): Do not use vnode->const_value_known;
7446         use decl_replaceable_p.
7447         (varpool_finalize_decl): Do not set const_value_known.
7448         (cgraph_variable_initializer_availability): Use decl_replaceable_p
7449         (varpool_extra_name_alias): Return new node.
7450         (varpool_used_from_object_file_p): New function.
7451
7452 2010-09-24  Richard Henderson  <rth@redhat.com>
7453
7454         * config/ia64/ia64.c (ia64_dwarf_handle_frame_unspec): New.
7455         (TARGET_DWARF_HANDLE_FRAME_UNSPEC): New.
7456         (do_spill): Use REG_CFA_OFFSET.
7457         (ia64_expand_prologue): Use REG_CFA_ADJUST_CFA and REG_CFA_REGISTER
7458         as appropriate.
7459         (ia64_expand_epilogue): Likewise.
7460         (process_set): Split into ...
7461         (process_cfa_adjust_cfa): this,
7462         (process_cfa_register): this,
7463         (process_cfa_offset): and this new function.
7464         (ia64_asm_unwind_emit): Use them.  Expect REG_CFA_* notes
7465         instead of REG_FRAME_RELATED_EXPR.
7466
7467 2010-09-24  Olivier Hainque  <hainque@adacore.com>
7468
7469         * config/i386/vx-common.h (DBX_REGISTER_NUMBER): Reinstate.
7470
7471 2010-09-24  Jan Hubicka  <jh@suse.cz>
7472
7473         * doc/extend.texi: (attribute leaf): Document.
7474         * tree.c (local_define_builtin): Handle ECF_LEAF.
7475         (build_common_builtin_nodes): Set ECF_LEAF where needed.
7476         * tree.h (ECF_LEAF): New.
7477         * ipa-reference.c (propagate_bits): For leaf calls propagate ever
7478         overwrittable and unavailable functions.
7479         (ipa_init): Put all_module_statics into optimization_summary_obstack.
7480         (copy_global_bitmap): Do not copy all_module_statics.
7481         (read_write_all_from_decl): Use cgraph_node argument; handle ECF_LEAF.
7482         (propagate): Handle overwritable and unavailable leaf functions;
7483         initialize global info for overwritable and unavailable leaf functions;
7484         do not free all module statics.
7485         (ipa_reference_get_not_{read,written}_global): Leaf calls don't clobber
7486         local statics.
7487         * calls.c (flags_from_decl_or_type): Handle leaf.
7488         * tree-cfg.c (stmt_can_make_abnormal_goto): Leaf functions can't do
7489         abnormal gotos.
7490
7491 2010-09-24  Basile Starynkevitch  <basile@starynkevitch.net>
7492
7493         * gengtype.c: Reindented.
7494         * gengtype.h: Reindented.
7495         * gengtype-parse.c: Reindented.
7496
7497 2010-09-24  Jan Hubicka  <jh@suse.cz>
7498
7499         PR tree-optimization/45738
7500         PR tree-optimization/45741
7501         * expr.c (string_constant): Allow CONST_DECL too;
7502         check that DECL_INITIAL is set.
7503         * varpool.c (const_value_known_p): Only look into VAR_DECL
7504         and CONST_DECL.
7505
7506 2010-09-24  Joseph Myers  <joseph@codesourcery.com>
7507
7508         * common.opt (undef): New.
7509
7510 2010-09-24  Jakub Jelinek  <jakub@redhat.com>
7511
7512         PR middle-end/45234
7513         * rtl.h (enum global_rtl_index): Add
7514         GR_VIRTUAL_PREFERRED_STACK_BOUNDARY.
7515         (LAST_VIRTUAL_POINTER_REGISTER): Define.
7516         (virtual_preferred_stack_boundary_rtx,
7517         VIRTUAL_PREFERRED_STACK_BOUNDARY_REGNUM): Define.
7518         (LAST_VIRTUAL_REGISTER): Increase by one.
7519         (REGNO_PTR_FRAME_P): Use LAST_VIRTUAL_POINTER_REGISTER
7520         instead of LAST_VIRTUAL_REGISTER.
7521         * function.c (instantiate_new_reg): Handle
7522         virtual_preferred_stack_boundary_rtx.
7523         * emit-rtl.c (init_virtual_regs): Handle
7524         VIRTUAL_PREFERRED_STACK_BOUNDARY_REGNUM.
7525         (init_emit_regs): Initialize virtual_preferred_stack_boundary_rtx.
7526         * explow.c (round_push): If crtl->preferred_stack_boundary
7527         is smaller than MAX_SUPPORTED_STACK_ALIGNMENT, use
7528         virtual_preferred_stack_boundary_rtx alignment instead of
7529         crtl->preferred_stack_boundary alignment.
7530         (allocate_dynamic_stack_space): Use CONST_INT_P and REG_P
7531         macros.  Never decrease crtl->preferred_stack_boundary,
7532         use crtl->preferred_stack_boundary or MAX_SUPPORTED_STACK_ALIGNMENT
7533         instead of PREFERRED_STACK_BOUNDARY.  Don't modify
7534         stack_pointer_delta in dynamic allocation, even when size
7535         is constant.
7536         (probe_stack_range, anti_adjust_stack_and_probe): Use CONST_INT_P
7537         macro.
7538         * print-rtl.c (print_rtx): Handle
7539         VIRTUAL_PREFERRED_STACK_BOUNDARY_REGNUM.
7540         * config/alpha/alpha.h (NONSTRICT_REG_OK_FP_BASE_P): Use
7541         LAST_VIRTUAL_POINTER_REGISTER instead of LAST_VIRTUAL_REGISTER.
7542         * config/frv/frv.c (frv_emit_movsi): Likewise.
7543         * config/arm/arm.c (thumb1_legitimate_address_p): Likewise.
7544         * config/rs6000/rs6000.c (virtual_stack_registers_memory_p):
7545         Likewise.
7546
7547         Revert:
7548         2010-09-17  H.J. Lu  <hongjiu.lu@intel.com>
7549
7550         PR middle-end/45234
7551         * calls.c (expand_call): Make sure that all variable sized
7552         adjustments are multiple of preferred stack boundary after
7553         stack alignment.
7554
7555 2010-09-24  Iain Sandoe  <iains@gcc.gnu.org>
7556             Dominique Dhumieres  <dominiq@lps.ens.fr>
7557
7558         PR bootstrap/45751
7559         * config/darwin-driver.c (darwin_default_min_version):
7560         Adjust size passed to memcpy in two places.
7561
7562 2010-09-24  Richard Guenther  <rguenther@suse.de>
7563
7564         * c-decl.c (pop_scope): Always set file-scope DECL_CONTEXT.
7565         Make sure to not call set_type_context with error_mark_node.
7566         * langhooks.c (lhd_set_decl_assembler_name): Use DECL_FILE_SCOPE_P.
7567
7568 2010-09-24  Richard Guenther  <rguenther@suse.de>
7569
7570         * Makefile.in (OBJS-onestep): Remove.
7571         (ALL_HOST_BACKEND_OBJS): Remove libbackend.o.
7572         (libbackend.a): Remove onestep support.
7573         (libbackend.o): Remove.
7574         * configure.ac (--enable-intermodule): Remove.
7575         * configure: Regenerate.
7576
7577 2010-09-24  Bernd Schmidt  <bernds@codesourcery.com>
7578
7579         * cfgcleanup.c (flow_find_head_matching_sequence): Terminate when
7580         reaching the end of a block if it occurs at a DEBUG_INSN.
7581
7582 2010-09-09  Tristan Gingold  <gingold@adacore.com>
7583
7584         PR target/44242
7585         * config/vms/vms-crt0-64.c: Removed.
7586         * config/vms/vms-crt0.c: Removed.
7587         * config/vms/vms-psxcrt0-64.c: Removed.
7588         * config/vms/vms-psxcrt0.c: Removed.
7589         * config/vms/vms-ucrt0.c: New file.
7590         * config/vms/t-vms64: Removed.
7591         * config/vms/t-vms (VMS_EXTRA_PARTS): Uncomment it.  Remove DECC.
7592         Use $(GCC_FOR_TARGET) to build pcrt0.o and vcrt0.o
7593         * config.gcc (alpha-dec-vms): Use t-vms.
7594
7595 2010-09-24  Nicola Pero  <nicola.pero@meta-innovation.com>
7596
7597         * doc/invoke.texi (-fno-nil-receivers): Tidied up line to remove
7598         underfull hbox in DVI output.
7599         (-fobjc-class-cxx-cdtors): Same change.
7600         (-fobjc-exceptions): Tidied up documentation.  Explain what the
7601         option does, but moved the (lenghty) description of the exception
7602         syntax into objc.texi.
7603         (-fobjc-gc): Explain that the option is not useful with the GNU
7604         runtime.
7605         (-fzero-link): Explain that the GNU runtime always works in
7606         "zero-link" mode.
7607         * doc/objc.texi: All sections: simplified @node declarations
7608         removing specification of next, previous, up node.
7609         (Objective-C): Updated introduction.
7610         (Garbage Collection): Updated.  The bohem-gc library is now
7611         included in gcc itself.  Mention that this section only applies to
7612         the GNU Objective-C runtime.
7613         (compatibility_alias): Small tidy up.
7614         (Exceptions): New section mostly containing text previously in the
7615         description of the -fobjc-exception command-line option.
7616         (Synchronization): Same.
7617
7618 2010-09-24  Uros Bizjak  <ubizjak@gmail.com>
7619
7620         * config/i386/i386.md (ix86_code_end): Move the initialization of
7621         xops array near the consumer.  Use AX_REG and SP_REG instead of
7622         numerical constants.
7623
7624 2010-09-24  Nicola Pero  <nicola.pero@meta-innovation.com>
7625
7626         * c-typeck.c (convert_arguments): Use warning 'too many arguments to
7627         method [methodname]' for an Objective-C method instead of the less
7628         satisfactory 'too many arguments to function' (with no method name).
7629
7630 2010-09-23  Eric Botcazou  <ebotcazou@adacore.com>
7631
7632         * tree-flow.h (execute_update_addresses_taken): Remove parameter.
7633         * tree-ssa.c (maybe_optimize_var): Tweak comment and dump messages.
7634         (execute_update_addresses_taken): Remove parameter.  Execute the
7635         optimization unconditionally.
7636         * passes.c (execute_function_todo): Call execute_update_addresses_taken
7637         unconditionally if TODO_rebuild_alias is set, else only when optimizing
7638         if TODO_update_address_taken is set.
7639
7640 2010-09-23  Anatoly Sokolov  <aesok@post.ru>
7641
7642         * config/arm/arm.h (OUTPUT_ADDR_CONST_EXTRA): Remove.
7643         * config/arm/arm-protos.h (arm_output_addr_const_extra): Remove.
7644         * config/arm/arm.c (TARGET_ASM_OUTPUT_ADDR_CONST_EXTRA): Define.
7645         (arm_output_addr_const_extra): Make static.
7646
7647 2010-09-23  Uros Bizjak  <ubizjak@gmail.com>
7648
7649         * config/i386/i386.md (UNSPECV_NOPS): Rename from UNSPEC_NOPS and
7650         define as unspec_volatile.
7651         ("nops"): Define as unspec_volatile. Use fputs to write to
7652         asm_out_file directly.  Output NOPs on separate lines using while loop.
7653         * config/i386/i386.c (ix86_code_end): Use fputs to write to
7654         asm_out_file directly.  Output NOPs on separate lines using while loop.
7655
7656 2010-09-23  Richard Guenther  <rguenther@suse.de>
7657
7658         PR tree-optimization/45565
7659         * cgraphunit.c (cgraph_redirect_edge_call_stmt_to_callee):
7660         Make sure to adjust the fndecl before replacing the stmt.
7661
7662 2010-09-23  Richard Guenther  <rguenther@suse.de>
7663
7664         PR middle-end/45750
7665         * gimplify.c (gimplify_expr): Properly pass on GS_ERROR when
7666         gimplifying MEM_REF.
7667
7668 2010-09-23  Alan Modra  <amodra@gmail.com>
7669
7670         * config/rs6000/rs6000.c (toc_relative_ok): Delete.
7671         (rs6000_emit_move): Use SYMBOL_REF_LOCAL_P instead.
7672
7673 2010-09-23  Bernd Schmidt  <bernds@codesourcery.com>
7674
7675         PR rtl-optimization/44374
7676         * basic-block.h (enum bb_flags): Add BB_MODIFIED.
7677         * df-core.c (df_set_bb_dirty): Set it.
7678         * ifcvt.c (find_memory): Remove function.
7679         (dead_or_predicable): Use can_move_insns_across.
7680         * df.h (can_move_insns_across): Declare function.
7681         * cfgcleanup.c (block_was_dirty): New static variable.
7682         (try_crossjump_bb, try_forward_edges): Test BB_MODIFIED flag rather
7683         than df_get_bb_dirty.
7684         (try_head_merge_bb): New static function.
7685         (try_optimize_cfg): Call it.  Call df_analyze if block_was_dirty
7686         is set.
7687         * df-problems.c: Include "target.h"
7688         (df_simulate_find_uses): New static function.
7689         (MEMREF_NORMAL, MEMREF_VOLATILE): New macros.
7690         (find_memory, find_memory_store): New static functions.
7691         (can_move_insns_across): New function.
7692         * Makefile.in (df-problems.o): Update dependencies.
7693
7694 2010-09-22  Eric Botcazou  <ebotcazou@adacore.com>
7695
7696         PR java/44095
7697         * config/sparc/linux.h (ASM_SPEC): Pass -K PIC if -findirect-dispatch
7698         is specified and the suffix of the file isn't ".c".
7699         * config/sparc/linux64.h (ASM_SPEC): Likewise.
7700
7701 2010-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7702
7703         * doc/contrib.texi (Contributors): Allow URL to wrap in PDF output.
7704         * doc/cppopts.texi: Fix markup of index entry.
7705         * doc/extend.texi (Constructing Calls): Fix markup of
7706         __builtin_va_arg_pack and __builtin_va_arg_pack_len definition.
7707         (Conditionals, C++ Comments, Pragmas, Unnamed Fields, Thread-Local)
7708         (Vague Linkage, C++ Attributes): Fix markup of index entries and
7709         keywords.
7710         * doc/invoke.texi (Option Summary): Fix spacing.  Rewrap to
7711         avoid long lines.
7712         (C Dialect Options, C++ Dialect Options, Warning Options)
7713         (Debugging Options, Spec Files, Darwin Options)
7714         (i386 and x86-64 Options, MIPS Options)
7715         (RS/6000 and PowerPC Options, Code Gen Options): Fix markup of
7716         index entries, avoid abbreviations, allow URLs to wrap, avoid
7717         long lines, avoid overlong pages from long @itemx lists.
7718         * doc/objc.texi (Garbage Collection): Allow URLs to wrap.
7719         * doc/standards.texi (Standards): Likewise.
7720         * doc/trouble.texi (Incompatibilities): Fix markup of index entry.
7721
7722 2010-09-22  Joseph Myers  <joseph@codesourcery.com>
7723
7724         * opts-common.c (prune_options): Make static.  Work with decoded
7725         options.
7726         (decode_cmdline_options_to_array): Call prune_options.  Don't
7727         resize option array here.
7728         * opts.h (prune_options): Remove prototype.
7729         * gcc.c (process_command): Take decoded options; don't call
7730         decode_cmdline_options_to_array here.  Use decoded options for argv[0].
7731         (main): Call decode_cmdline_options_to_array here instead of
7732         prune_options.  Update call to process_command.
7733         * config/darwin-driver.c: Include opts.h.
7734         (darwin_default_min_version): Work with decoded options.  Don't
7735         handle -b or -V here.
7736         * config/darwin.h (darwin_default_min_version): Update prototype.
7737         (GCC_DRIVER_HOST_INITIALIZATION): Update call to
7738         darwin_default_min_version.
7739         * config/i386/cygwin.h (mingw_scan): Update prototype.
7740         (GCC_DRIVER_HOST_INITIALIZATION): Update call to mingw_scan.
7741         * config/i386/cygwin1.c: Include opts.h.
7742         (mingw_scan): Work with decoded options.
7743         * config/i386/t-cygwin (cygwin1.o): Update dependencies.
7744         * config/t-darwin (darwin-driver.o): Update dependencies.
7745
7746 2010-09-22  Joseph Myers  <joseph@codesourcery.com>
7747
7748         * common.opt (-assemble, -compile, -coverage, -debug, -dump,
7749         -dump=, -dumpbase, -dumpdir, -entry, -entry=, -extra-warnings,
7750         -for-assembler, -for-assembler=, -for-linker, -for-linker=,
7751         -force-link, -force-link=, -language, -language=,
7752         -library-directory, -library-directory=, -no-canonical-prefixes,
7753         -no-standard-libraries, -no-warnings, -optimize, -output,
7754         -output=, -pass-exit-codes, -pedantic, -pedantic-errors, -pie,
7755         -pipe, -prefix, -prefix=, -preprocess, -print-file-name,
7756         -print-file-name=, -print-libgcc-file-name,
7757         -print-multi-directory, -print-multi-lib,
7758         -print-multi-os-directory, -print-prog-name, -print-prog-name=,
7759         -print-search-dirs, -print-sysroot, -print-sysroot-headers-suffix,
7760         -profile, -save-temps, -shared, -specs, -specs=, -static,
7761         -symbolic, -time, -verbose, -param=, -sysroot, coverage, e, u,
7762         symbolic): New.
7763         (fhelp, fhelp=, ftarget-help, fversion): Make into aliases.
7764         * gcc.c (A Short Introduction to Adding a Command-Line Option):
7765         Remove comment.
7766         (cc1_options): Correct specs for passing down --help,
7767         --target-help and --help=*.  Add spec for passing down --version.
7768         (struct option_map, option_map, target_option_translations,
7769         translate_options): Remove.
7770         (driver_handle_option): Handle OPT__version, OPT__help, OPT__help_
7771         and OPT__target_help instead of OPT_fversion, OPT_fhelp,
7772         OPT_fhelp_ and OPT_ftarget_help.
7773         (process_command): Don't call translate_options.  Call
7774         decode_cmdline_options_to_array before checking for
7775         -no-canonical-prefixes using decoded options.
7776         * opts-common.c (tm.h): Update comment on #include.
7777         (find_opt): Allow abbreviations of long options.
7778         (struct option_map, option_map): New.
7779         (decode_cmdline_option): Use them instead of hardcoding -Wno, -fno
7780         and -mno handling.
7781         (target_option_translations): New.
7782         (decode_cmdline_options_to_array): Handle
7783         TARGET_OPTION_TRANSLATE_TABLE in driver.
7784         * opts.c (common_handle_option): Don't handle OPT_fhelp,
7785         OPT_ftarget_help, OPT_fhelp_ or OPT_fversion.
7786
7787 2010-09-22  Richard Guenther  <rguenther@suse.de>
7788
7789         * tree-inline.c (optimize_inline_calls): Schedule cleanups
7790         only if we inlined something.  Block compaction and conditional
7791         folding are done by cfg cleanup.  Schedule update-address-taken.
7792         (tree_function_versioning): Remove redundant call to number_blocks.
7793         * tree-optimize.c (execute_cleanup_cfg_post_optimizing): Conditional
7794         folding is done by cfg cleanup.
7795         * passes.c (init_optimization_passes): Remove update-address-taken
7796         pass after IPA inlining.
7797
7798 2010-09-22  Chung-Lin Tang  <cltang@codesourcery.com>
7799
7800         * postreload.c (move2add_note_store): Add reg_symbol_ref[] checks
7801         to update conditions. Fix reg_mode[] check.
7802
7803 2010-09-22  Hariharan Sandanagobalane  <hariharan@picochip.com>
7804
7805         * config/picochip/picochip.md (movhicc): Use expand to check whether
7806         movhicc is available and split it after reload.
7807
7808 2010-09-22  Richard Guenther  <rguenther@suse.de>
7809
7810         * tree-ssanames.c (release_dead_ssa_names): Do not remove
7811         callee edges here.
7812         * passes.c (init_optimization_passes): Remove early CFG cleanup.
7813         * tree-optimize.c (execute_cleanup_cfg_pre_ipa): Remove.
7814         (pass_cleanup_cfg): Likewise.
7815         (execute_fixup_cfg): Cleanup.
7816         * tree-pass.h (pass_cleanup_cfg): Remove.
7817
7818 2010-09-22  Martin Jambor  <mjambor@suse.cz>
7819
7820         * gimple-fold.c (fold_gimple_call): New parameter inplace, do not fold
7821         builtins if it is true.
7822         (fold_stmt_1): Call, fold_gimple_call always, pass inplace as a
7823         parameter.
7824
7825 2010-09-22  Martin Jambor  <mjambor@suse.cz>
7826
7827         * tree-sra.c (struct access): New field grp_no_warning.
7828         (create_access_replacement): Set TREE_NO_WARNING according to
7829          grp_no_warning.
7830         (create_artificial_child_access): Use build_ref_for_model and set
7831         grp_no_warning if build_user_friendly_ref_for_offset fails.
7832         (propagate_subaccesses_across_link): Likewise.
7833
7834 2010-09-22  Eric Botcazou  <ebotcazou@adacore.com>
7835
7836         PR target/35664
7837         * config/sparc/constraints.md ('e'): Return NO_REGS if !TARGET_FPU.
7838         ('f'): Likewise.
7839
7840 2010-09-22  Tristan Gingold  <gingold@adacore.com>
7841
7842         * config/alpha/alpha.c (alpha_use_linkage): Initialize target field.
7843
7844 2010-09-22  Uros Bizjak  <ubizjak@gmail.com>
7845
7846         * config/i386/i386.h (MAX_STRINGOP_ALGS): Fix typo in the name.
7847         * config/i386/i386.c (decide_alg): Update for rename.
7848
7849 2010-09-22  Jakub Jelinek  <jakub@redhat.com>
7850
7851         PR rtl-optimization/45739
7852         * simplify-rtx.c (simplify_binary_operation_1): Optimize even
7853         vector mode | CONST0_RTX (mode) and ^ CONST0_RTX (mode).
7854
7855 2010-09-21  Anatoly Sokolov  <aesok@post.ru>
7856
7857         * config/rs6000/rs6000.h (OUTPUT_ADDR_CONST_EXTRA): Remove macros.
7858         * config/rs6000/rs6000-protos.h (rs6000_output_addr_const_extra):
7859         Remove.
7860         * config/rs6000/rs6000.c (rs6000_output_addr_const_extra): Make static.
7861         (TTARGET_ASM_OUTPUT_ADDR_CONST_EXTRA): Define.
7862
7863 2010-09-21  Nicola Pero  <nicola.pero@meta-innovation.com>
7864
7865         PR objc/23710
7866         * c-parser.c (c_parser_objc_method_definition): Check the return
7867         value of objc_start_method_definition and if false is returned,
7868         parse the method definition but emit no code.
7869
7870 2010-09-21  Nicola Pero  <nicola.pero@meta-innovation.com>
7871
7872         PR objc/25965
7873         * c-decl.c (detect_field_duplicates): If compiling Objective-C,
7874         call objc_get_interface_ivars ().
7875
7876 2010-09-21  Kai Tietz  <kai.tietz@onevision.com>
7877
7878         PR target/45694
7879         * config/i386/i386.c (ix86_expand_prologue): Save r10 in case that
7880         static chain-register is used for 64-bit.
7881
7882 2010-09-21  Richard Guenther  <rguenther@suse.de>
7883
7884         * dwarf2out.c (is_cu_die): New function.
7885         (add_pubtype): Use it.
7886         (gen_subprogram_die): Likewise.
7887         (gen_struct_or_union_type_die): Likewise.
7888         (dwarf2out_finish): Likewise.
7889         (comp_unit_die): Rename to ...
7890         (single_comp_unit_die): ... this.
7891         (comp_unit_die): New function lazily constructing and
7892         returning single_comp_unit_die.
7893         (is_cxx, is_fortran, is_ada, debug_dwarf, break_out_comdat_types,
7894         base_type_die, subrange_type_die, modified_type_die,
7895         lower_bound_default, add_bound_info, add_prototyped_attribute,
7896         dwarf2out_vms_debug_main_pointer, scope_die_for, retry_incomplete_types,
7897         dwarf2out_abstract_function, gen_type_die_with_usage, get_context_die,
7898         force_decl_die, gen_namespace_die, dwarf2out_decl,
7899         dwarf2out_start_source_file, dwarf2out_end_source_file,
7900         prune_unused_types, dwarf2out_finish): Use it.
7901         (gen_compile_unit_die): For GNU GIMPLE derive DW_AT_language from
7902         the global list of translation-unit decls.
7903         (dwarf2out_init): Do not create single_comp_unit_die here.
7904         (force_decl_die): Handle TRANSLATION_UNIT_DECL.
7905
7906 2010-09-21  Richard Guenther  <rguenther@suse.de>
7907
7908         * dwarf2out.c (dwarf2out_decl): Do not always generate a DIE
7909         for bool for C++.
7910
7911 2010-09-21  Bernd Schmidt  <bernds@codesourcery.com>
7912
7913         * config/arm/iterators.md (qhs_extenddi_op): New mode_attr.
7914         (qhs_extenddi_cstr): Likewise.
7915         * config/arm/arm.md (zero_extend<mode>di2, extend<mode>di2): Use
7916         them for the source operand.
7917
7918 2010-09-21  Uros Bizjak  <ubizjak@gmail.com>
7919
7920         * config/i386/i386.c (ix86_split_ashl): Rename single_width variable
7921         to half_width.  Use GET_MODE_BITSIZE to calculate mode size.
7922         (ix86_split_ashr): Ditto.
7923         (ix86_split_lshr): Ditto.
7924
7925 2010-09-21  Richard Guenther  <rguenther@suse.de>
7926
7927         PR tree-optimization/45580
7928         * tree-ssa-propagate.c (substitute_and_fold): Always replace
7929         regular uses.
7930         * gimple-fold.c (gimple_fold_obj_type_ref): For a BINFO without
7931         virtuals fold the call into a regular indirect one.
7932
7933 2010-09-20  Eric Botcazou  <ebotcazou@adacore.com>
7934
7935         PR rtl-optimization/42775
7936         * cfgrtl.c (rest_of_pass_free_cfg): Recompute notes if delay slot
7937         scheduling is enabled.
7938
7939 2010-09-20  Jakub Jelinek  <jakub@redhat.com>
7940
7941         PR rtl-optimization/45728
7942         * expr.c (expand_expr_real_1): If op0 isn't REG or MEM, try
7943         gen_lowpart_common first and if that fails, force_reg first
7944         before calling gen_lowpart.
7945
7946         PR middle-end/45678
7947         * cfgexpand.c (expand_one_stack_var_at): Use
7948         crtl->max_used_stack_slot_alignment as max_align, instead
7949         of maximum of that and PREFERRED_STACK_BOUNDARY.
7950         Don't call update_stack_alignment.
7951
7952 2010-09-20  Eric Botcazou  <ebotcazou@adacore.com>
7953
7954         * langhooks.h (struct lang_hooks_for_types): Remove hash_types field.
7955         * langhooks-def.h (LANG_HOOKS_HASH_TYPES): Delete.
7956         (LANG_HOOKS_FOR_TYPES_INITIALIZER): Remove LANG_HOOKS_HASH_TYPES.
7957         * system.h (LANG_HOOKS_HASH_TYPES): Poison.
7958         * tree.c (type_hash_canon): Do not test lang_hooks.types.hash_types.
7959         (build_nonstandard_integer_type): Likewise.
7960         (build_range_type_1): New function, built from...
7961         (build_range_type): ...this.  Call build_range_type_1.
7962         (build_nonshared_range_type): New function.
7963         (build_array_type_1): New function, built from...
7964         (build_array_type: ...this.  Call build_array_type_1.
7965         (build_nonshared_array_type): New function.
7966         * tree.h (build_nonshared_range_type): Declare.
7967         (build_nonshared_array_type): Likewise.
7968
7969 2010-09-20  Anatoly Sokolov  <aesok@post.ru>
7970
7971         * config/arm/arm.h (CLASS_LIKELY_SPILLED_P): Remove.
7972         * config/arm/arm.c (TARGET_CLASS_LIKELY_SPILLED_P): Define.
7973         (arm_class_likely_spilled_p): New function.
7974
7975 2010-09-20  Uros Bizjak  <ubizjak@gmail.com>
7976
7977         * config/i386/i386.c (ix86_expand_ashl_const): Rewrite using
7978         indirect functions.
7979         (ix86_split_ashl): Ditto.
7980         (ix86_split_ashr): Ditto.
7981         (ix86_split_lshr): Ditto.
7982         (ix86_adjust_counter): Ditto.
7983
7984 2010-09-20  Nicola Pero  <nicola.pero@meta-innovation.com>
7985
7986         * c-family/c-common.h (constant_string_class): Documented with
7987         comment identical to the one already in c-common.c.
7988
7989 2010-09-20  Jakub Jelinek  <jakub@redhat.com>
7990
7991         * dwarf2out.c (any_cfis_emitted): New static variable.
7992         (add_fde_cfi): Set it.
7993         (dwarf2out_frame_debug): Clear it before processing,
7994         if it is set afterwards, flush any queued reg saves.
7995
7996         PR debug/45124
7997         * dwarf2out.c (add_accessibility_attribute): Assume
7998         DW_ACCESS_private as the default for dwarf_version > 2
7999         and DW_TAG_class_type parent.
8000         (gen_inheritance_die): Assume DW_ACCESS_public as the default
8001         for dwarf_version > 2 and parent other than DW_TAG_class_type.
8002
8003 2010-09-20  Rafael Carre  <rafael.carre@gmail.com>
8004
8005         PR target/45726
8006         * arm.md (arm_movt): Only enable on machines with MOVT.
8007
8008 2010-09-20  Jie Zhang  <jie@codesourcery.com>
8009
8010         * config/arm/arm.c (arm_address_offset_is_imm): New.
8011         (arm_early_store_addr_dep): New.
8012         (arm_early_load_addr_dep): New.
8013         * config/arm/arm-protos.h (arm_early_store_addr_dep): Declare.
8014         (arm_early_load_addr_dep): Declare.
8015         (arm_address_offset_is_imm): Declare.
8016         * config/arm/cortex-m4.md: New file.
8017         * config/arm/cortex-m4-fpu.md: New file.
8018         * config/arm/arm.md: Include cortex-m4.md and cortex-m4-fpu.md.
8019         (attr generic_sched): Exclude cortexm4.
8020         (attr generic_vfp): Exclude cortexm4.
8021
8022 2010-09-20  Richard Guenther  <rguenther@suse.de>
8023
8024         PR middle-end/45704
8025         * gimplify.c (gimplify_modify_expr_rhs): Preserve volatileness.
8026
8027 2010-09-20  Jan Hubicka  <jh@suse.cz>
8028
8029         PR tree-optimize/45605
8030         * cgraph.h (const_value_known_p): Declare.
8031         (varpool_decide_const_value_known): Remove.
8032         * tree-ssa-ccp.c (get_base_constructor): Use it.
8033         * lto-cgraph.c (compute_ltrans_boundary): Likewise.
8034         * expr.c (string_constant): Likewise.
8035         * tree-ssa-loop-ivcanon.c (constant_after_peeling): Likewise.
8036         * ipa.c (ipa_discover_readonly_nonaddressable_var,
8037         function_and_variable_visibility): Likewise.
8038         * gimplify.c (gimplify_call_expr): Likewise.
8039         * gimple-fold.c (get_symbol_constant_value): Likewise.
8040         * varpool.c (varpool_decide_const_value_known): Replace by...
8041         (const_value_known_p): ... this one; handle other kinds of DECLs
8042         too and work for automatic vars.
8043         (varpool_finalize_decl): Use const_value_known_p.
8044
8045 2010-09-20  Rafael Carre  <rafael.carre@gmail.com>
8046
8047         PR target/45726
8048         * arm.md (arm_movtas_ze): Only enable on machine with MOVT.
8049
8050 2010-09-20  Richard Guenther  <rguenther@suse.de>
8051
8052         PR tree-optimization/45705
8053         * tree-ssa-dom.c (optimize_stmt): Perform redundant store elimination.
8054
8055 2010-09-20  Jakub Jelinek  <jakub@redhat.com>
8056
8057         PR rtl-optimization/45695
8058         * combine.c (try_combine): When splitting a two set pattern,
8059         make sure the pattern which will be put into i2 doesn't use REGs
8060         or MEMs set by insns in between i2 and i3.
8061
8062 2010-09-19  Jan Hubicka  <jh@suse.cz>
8063
8064         PR lto/44246
8065         * lto-cgraph.c (input_cgraph_1, input_varpool_1): Avoid
8066         processing same node twice.
8067
8068 2010-09-19  Anatoly Sokolov  <aesok@post.ru>
8069
8070         * config/bfin/bfin.h (CLASS_LIKELY_SPILLED_P): Remove.
8071         * config/bfin/bfin.c (TARGET_CLASS_LIKELY_SPILLED_P): Define.
8072         (bfin_class_likely_spilled_p): New function
8073
8074 2010-09-19  Ira Rosen  <irar@il.ibm.com>
8075
8076         PR tree-optimization/45714
8077         * tree-vect-stmts.c (vect_transform_stmt): Use a dummy statement
8078         created in vectorizable_call instead of the original statement in
8079         def stmt updates.
8080
8081 2010-09-19  Uros Bizjak  <ubizjak@gmail.com>
8082
8083         * config/i386/i386-protos.h (split_double_mode): New prototype.
8084         (split_di, split_ti): Remove prototypes.
8085         * config/i386/i386.c (split_double_mode): New function.
8086         (split_di, split_ti): Remove.
8087         (ix86_expand_branch): Use split_double_mode.
8088         (ix86_split_to_parts): Ditto.
8089         (ix86_split_ashl): Ditto.
8090         (ix86_split_ashr): Ditto.
8091         (ix86_split_lshr): Ditto.
8092         (ix86_force_to_memory): Ditto.
8093         * config/i386/i386.md: Use split_double_mode in double-mode splitters.
8094
8095 2010-09-18  Jan Hubicka  <jh@suse.cz>
8096
8097         PR tree-optimization/45453
8098         * cgraphunit.c (cgraph_finalize_function): Consider comdat & external
8099         virtual functions are reachable.
8100         * ipa-inline.c (cgraph_clone_inlined_nodes): Likewise.
8101         * ipa.c (cgraph_remove_unreachable_nodes): Likewise.
8102         * ipa-prop.c (ipa_modify_formal_parameters): Clear DECL_VIRTUAL_P
8103         when modifying function.
8104
8105 2010-09-18  Jan Hubicka  <jh@suse.cz>
8106
8107         PR tree-optimization/45605
8108         * cgraphunit.c (cgraph_analyze_functions): Allocate bitmap obstack.
8109         * gimple-fold.c (static_object_in_other_unit_p): New function.
8110         (canonicalize_constructor_val): Use it.
8111         (get_symbol_constant_value): Be reaqdy for canonicalize_constructor_val
8112         returning NULL.
8113         (gimple_fold_obj_type_ref_known_binfo): Use
8114         static_object_in_other_unit_p.
8115
8116 2010-09-18  Richard Guenther  <rguenther@suse.de>
8117
8118         PR tree-optimization/45709
8119         * tree-inline.c (copy_phis_for_bb): Delay commit of edge
8120         insertions until after all PHI nodes of the block are processed.
8121
8122 2010-09-18  Tijl Coosemans  <tijl@coosemans.org>
8123
8124         * config/i386/freebsd.h (SUBTARGET32_DEFAULT_CPU): Add.
8125
8126 2010-09-18  Kai Tietz  <kai.tietz@onevision.com>
8127
8128         * config.gcc (*-w64-mingw*): Correct typo about t-dfprules.
8129
8130 2010-09-18  Richard Guenther  <rguenther@suse.de>
8131
8132         PR tree-optimization/45709
8133         * tree-inline.c (copy_phis_for_bb): Fixup new_edge when we splitted it.
8134
8135 2010-09-17  Sebastian Pop  <sebastian.pop@amd.com>
8136
8137         * graphite-dependences.c (dot_deps): Add DEBUG_FUNCTION.
8138         (dot_deps_stmt): Same.
8139         * graphite-poly.c (dot_lst): Same.
8140         * graphite-scop-detection.c (dot_all_scops): Same.
8141         (dot_scop): Same.
8142
8143 2010-09-17  Sebastian Pop  <sebastian.pop@amd.com>
8144
8145         Revert:
8146         2009-12-16  Ben Elliston  <bje@au.ibm.com>
8147
8148         * tree-data-ref.c (dot_rdg_1): Added back.
8149         (dot_rdg): Same.  Added "#if 0" around system call.
8150
8151 2010-09-17  H.J. Lu  <hongjiu.lu@intel.com>
8152             Richard Henderson  <rth@redhat.com>
8153
8154         * config/i386/i386.c (initial_ix86_tune_features): Add
8155         X86_TUNE_PAD_SHORT_FUNCTION.
8156         (ix86_code_end): Pad with 8 NOPs for TARGET_PAD_SHORT_FUNCTION.
8157         (ix86_count_insn): New.
8158         (ix86_pad_short_function): Likewise.
8159         (ix86_reorg): Support TARGET_PAD_SHORT_FUNCTION.
8160
8161         * config/i386/i386.h (ix86_tune_indices): Add
8162         X86_TUNE_PAD_SHORT_FUNCTION.
8163         (TARGET_PAD_SHORT_FUNCTION): New.
8164
8165         * config/i386/i386.md (UNSPEC_NOPS): New.
8166         (nops): Likewise.
8167
8168 2010-09-17  H.J. Lu  <hongjiu.lu@intel.com>
8169
8170         PR middle-end/45234
8171         * calls.c (expand_call): Make sure that all variable sized
8172         adjustments are multiple of preferred stack boundary after
8173         stack alignment.
8174
8175 2010-09-17  DJ Delorie  <dj@redhat.com>
8176
8177         * config/rx/rx.c (rx_print_operand): If __builtin_rx_setpsw() is
8178         passed an invalid value, print an error instead of ICEing.
8179         (valid_psw_flag): New.
8180         (rx_expand_builtin): Call it for setpsw/clrpsw.
8181         (rx_expand_builtin_mvtipl): Pass an integer to IN_RANGE, not an RTX.
8182
8183         * config/rx/rx.md (bitclr): Don't mark the output as early-clobber.
8184         (bitclr_in_memory): Likewise.
8185         (clrspw, setpsw, mvfc, mvtc, mvtipl): Make volatile.
8186
8187 2010-09-17  H.J. Lu  <hongjiu.lu@intel.com>
8188
8189         PR middle-end/45678
8190         * cfgexpand.c (update_stack_alignment): New.
8191         (get_decl_align_unit): Use it.
8192         (expand_one_stack_var_at): Call update_stack_alignment.
8193
8194 2010-09-17  Richard Guenther  <rguenther@suse.de>
8195
8196         * lto-streamer-in.c (lto_input_ts_translation_unit_decl_tree_pointers):
8197         Properly copy the read string.
8198
8199 2010-09-17  Joseph Myers  <joseph@codesourcery.com>
8200
8201         * doc/options.texi (Variable): Document.
8202         * optc-gen.awk, opth-gen.awk: Handle Variable records.  Don't
8203         generate target_flags declarations explicitly.  Don't define
8204         VarExists variables for the driver.
8205         * common.opt (target_flags): New Variable record.
8206         (flag_dump_unnumbered, flag_dump_unnumbered_links,
8207         flag_var_tracking, flag_var_tracking_assignments,
8208         flag_var_tracking_assignments_toggle): Don't mark variables with
8209         VarExists.
8210         * config/i386/i386.c (ix86_isa_flags): Don't define here.
8211         * config/i386/i386.opt (ix86_isa_flags): Define here.
8212         * config/mcore/mcore.c (mcore_stack_increment): Don't define here.
8213         * config/mcore/mcore.opt (mcore_stack_increment): Don't mark with
8214         VarExists.
8215         * flags.h (flag_dump_unnumbered, flag_var_tracking): Remove.
8216         * print-rtl.c (flag_dump_unnumbered, flag_dump_unnumbered_links):
8217         Only define for generator programs.
8218         * rtlanal.c (target_flags): Remove.
8219         * toplev.c (flag_var_tracking, flag_var_tracking_assignments,
8220         flag_var_tracking_assignments_toggle): Remove.
8221
8222 2010-09-17  Michael Matz  <matz@suse.de>
8223
8224         PR tree-optimization/43432
8225         * tree-vect-data-refs.c (vect_analyze_data_ref_access):
8226         Accept backwards consecutive accesses.
8227         (vect_create_data_ref_ptr): If step is negative generate
8228         decreasing IVs.
8229         * tree-vect-stmts.c (vectorizable_store): Reject negative steps.
8230         (perm_mask_for_reverse, reverse_vec_elements): New functions.
8231         (vectorizable_load): Handle loads with negative steps when easily
8232         possible.
8233
8234 2010-09-03  Jan Hubicka  <jh@suse.cz>
8235
8236         * lto-cgraph.c (compute_ltrans_boundary): Use const_value_known.
8237
8238 2010-09-03  Naveen H.S  <naveen.S@kpitcummins.com>
8239
8240         * config/v850/v850.c (v850_function_value_regno_p): Make static.
8241         Adjust comments. Declare.
8242         (TARGET_FUNCTION_VALUE_REGNO_P): Define.
8243         * config/v850/v850.h (FUNCTION_VALUE_REGNO_P): Delete.
8244
8245 2010-09-17  Richard Guenther  <rguenther@suse.de>
8246
8247         * common.opt (combine): Remove.
8248         * gcc.c (default_compilers): Remove specs testing combine.
8249         The C compilers no longer can combine.
8250         (option_map): Remove -combine.
8251         (display_help): Remove -combine.
8252         (driver_handle_option): Remove OPT_combine handling.
8253         (compile_input_file_p): Remove.
8254         (do_spec): Remove code concerning combine.
8255         (main): Likewise.
8256         * doc/invoke.texi: Remove traces of -combine.
8257         * lto-wrapper.c (run_gcc): Do not pass -combine to the compiler driver.
8258
8259 2010-09-17  Richard Guenther  <rguenther@suse.de>
8260
8261         PR middle-end/45678
8262         * builtins.c (fold_builtin_memory_op): Always properly adjust
8263         alignment of memory accesses.
8264
8265 2010-09-16  Jan Hubicka  <jh@suse.cz>
8266
8267         * lto-cgraph.c (input_overwrite_node): Do not set DECL_EXTERNAL when
8268         processing clone.
8269
8270 2010-09-16  H.J. Lu  <hongjiu.lu@intel.com>
8271
8272         * config/i386/i386-protos.h (ix86_split_idivmod): New prototype.
8273
8274         * config/i386/i386.c (predict_jump): Add prototype.
8275         (flag_opts): Add -m8bit-idiv.
8276         (ix86_split_idivmod): New.
8277
8278         * config/i386/i386.md (UNSPEC_DIV_ALREADY_SPLIT): New.
8279         Add 2 splitters for SI/DI mode divide.
8280         (divmod<mode>4_1): New pattern.
8281         (udivmod<mode>4_1): Likewise.
8282         (testdi_ccno_1): Likewise.
8283
8284         * config/i386/i386.opt (m8bit-idiv): New.
8285
8286         * doc/invoke.texi: Document -m8bit-idiv.
8287
8288 2010-09-16  Reza Yazdani  <reza.yazdani@amd.com>
8289
8290         PR bootstrap/45680
8291         * config/i386/i386.c (min_insn_size): Moved out of the
8292         ASM_OUTPUT_MAX_SKIP_PAD ifdef.
8293
8294 2010-09-16  Jan Hubicka  <jh@suse.cz>
8295
8296         * lto-cgraph.c (lto_output_node): Fix handling of clones.
8297         * ipa.c (cgraph_remove_unreachabloe_nodes): Fix handling of
8298         unreachable clones with reachable clones.
8299         * tree-inline.c (copy_bb): Fix sanity checking when producing
8300         unreachable clone.
8301
8302 2010-09-16  Anatoly Sokolov  <aesok@post.ru>
8303
8304         * config/m32r/m32r.c (TARGET_MEMORY_MOVE_COSTS): Remove.
8305         (TARGET_MEMORY_MOVE_COST): Define.
8306         (m32r_function_arg): Annotate argument 'type' with ATTRIBUTE_UNUSED.
8307
8308 2010-09-16  Alexander Monakov  <amonakov@ispras.ru>
8309
8310         * sel-sched.c (move_cond_jump): Use tidy_control_flow instead of
8311         maybe_tidy_empty_bb.
8312
8313         Revert:
8314         2010-09-06  Alexander Monakov  <amonakov@ispras.ru>
8315         * sel-sched-ir.c (maybe_tidy_empty_bb): Export.
8316
8317 2010-09-16  Joseph Myers  <joseph@codesourcery.com>
8318
8319         * target.def (target_option.optimization): New hook.
8320         * doc/tm.texi.in (OPTIMIZATION_OPTIONS): Change to
8321         TARGET_OPTION_OPTIMIZATION hook.
8322         * doc/tm.texi: Regenerate.
8323         * hooks.c (hook_void_int_int): New.
8324         * hooks.h (hook_void_int_int): Declare.
8325         * opts.c: Don't include tm_p.h.
8326         (decode_options): Use targetm.target_option.optimization instead
8327         of OPTIMIZATION_OPTIONS.
8328         * system.h (OPTIMIZATION_OPTIONS): Poison.
8329         * config/arm/arm-protos.h (arm_optimization_options): Remove.
8330         * config/arm/arm.c (TARGET_OPTION_OPTIMIZATION): Define.
8331         (arm_optimization_options): Rename to arm_option_optimization.
8332         Make static.
8333         * config/arm/arm.h (OPTIMIZATION_OPTIONS): Remove.
8334         * config/cris/cris.c (TARGET_OPTION_OPTIMIZATION): Define.
8335         (cris_option_optimization): New.
8336         * config/cris/cris.h (OPTIMIZATION_OPTIONS): Remove.
8337         * config/crx/crx.c (TARGET_OPTION_OPTIMIZATION): Define.
8338         (crx_option_optimization): New.
8339         * config/crx/crx.h (OPTIMIZATION_OPTIONS): Remove.
8340         * config/frv/frv-protos.h (frv_optimization_options): Remove.
8341         * config/frv/frv.c (TARGET_OPTION_OPTIMIZATION): Define.
8342         (frv_optimization_options): Rename to frv_option_optimization.
8343         Make static.
8344         * config/frv/frv.h (OPTIMIZATION_OPTIONS): Remove.
8345         * config/h8300/h8300.c (h8300_option_optimization): New.
8346         (TARGET_OPTION_OPTIMIZATION): Define.
8347         * config/h8300/h8300.h (OPTIMIZATION_OPTIONS): Remove.
8348         * config/i386/i386-protos.h (optimization_options): Remove.
8349         * config/i386/i386.c (optimization_options): Rename to
8350         ix86_option_optimization.  Make static.
8351         (TARGET_OPTION_OPTIMIZATION): Define.
8352         * config/i386/i386.h (OPTIMIZATION_OPTIONS): Remove.
8353         * config/ia64/ia64-protos.h (ia64_optimization_options): Remove.
8354         * config/ia64/ia64.c (TARGET_OPTION_OPTIMIZATION): Define.
8355         (ia64_optimization_options): Rename to ia64_option_optimization.
8356         Make static.  Call SUBTARGET_OPTIMIZATION_OPTIONS.
8357         * config/ia64/ia64.h (OPTIMIZATION_OPTIONS): Remove.  Remove
8358         commented-out definition.
8359         * config/ia64/vms.h (SUBTARGET_OPTIMIZATION_OPTIONS): Define
8360         instead of OPTIMIZATION_OPTIONS.
8361         * config/m32r/m32r.c (TARGET_OPTION_OPTIMIZATION): Define.
8362         (m32r_option_optimization): New.
8363         * config/m32r/m32r.h (OPTIMIZATION_OPTIONS): Remove.
8364         * config/m68hc11/m68hc11-protos.h (m68hc11_optimization_options):
8365         Remove.
8366         * config/mcore/mcore.c (TARGET_OPTION_OPTIMIZATION): Define.
8367         (mcore_option_optimization): New.
8368         * config/mcore/mcore.h (OPTIMIZATION_OPTIONS): Remove.
8369         * config/mep/mep-protos.h (mep_optimization_options): Remove.
8370         * config/mep/mep.c (TARGET_OPTION_OPTIMIZATION): Define.
8371         (mep_optimization_options): Rename to mep_option_optimization.
8372         Make static.  Take unused level and size parameters.
8373         * config/mep/mep.h (OPTIMIZATION_OPTIONS): Remove.
8374         * config/mmix/mmix.c (TARGET_OPTION_OPTIMIZATION): Define.
8375         (mmix_option_optimization): New.
8376         * config/mmix/mmix.h (OPTIMIZATION_OPTIONS): Remove.
8377         * config/pdp11/pdp11.c (TARGET_OPTION_OPTIMIZATION): Define.
8378         (pdp11_option_optimization): New.
8379         * config/pdp11/pdp11.h (OPTIMIZATION_OPTIONS): Remove.
8380         * config/rs6000/rs6000-protos.h (optimization_options): Remove.
8381         * config/rs6000/rs6000.c (TARGET_OPTION_OPTIMIZATION): Define.
8382         (optimization_options): Rename to rs6000_option_optimization.
8383         Make static.
8384         * config/rs6000/rs6000.h (OPTIMIZATION_OPTIONS): Remove.
8385         * config/rx/rx-protos.h (rx_set_optimization_options): Remove.
8386         * config/rx/rx.c (rx_set_optimization_options): Rename to
8387         rx_option_optimization.  Make static.  Take unused level and size
8388         parameters.
8389         (TARGET_OPTION_OPTIMIZATION): Define.
8390         * config/rx/rx.h (OPTIMIZATION_OPTIONS): Remove.
8391         * config/s390/s390-protos.h (optimization_options): Remove.
8392         * config/s390/s390.c (optimization_options): Rename to
8393         s390_option_optimization.  Make static.  Don't mark size parameter
8394         unused.
8395         (TARGET_OPTION_OPTIMIZATION): Define.
8396         * config/s390/s390.h (OPTIMIZATION_OPTIONS): Remove.
8397         * config/sh/sh-protos.h (sh_optimization_options): Remove.
8398         * config/sh/sh.c (TARGET_OPTION_OPTIMIZATION): Define.
8399         (sh_optimization_options): Rename to sh_option_optimization.  Make
8400         static.  Don't mark parameters unused.
8401         * config/sh/sh.h (OPTIMIZATION_OPTIONS): Remove.
8402         * config/spu/spu-protos.h (spu_optimization_options): Remove.
8403         * config/spu/spu.c (TARGET_OPTION_OPTIMIZATION): Define.
8404         (spu_optimization_options): Rename to spu_option_optimization.
8405         Make static.
8406         * config/spu/spu.h (OPTIMIZATION_OPTIONS): Remove.
8407         * config/v850/v850.c (TARGET_OPTION_OPTIMIZATION): Define.
8408         (v850_option_optimization): New.
8409         * config/v850/v850.h (OPTIMIZATION_OPTIONS): Remove.
8410         * config/xtensa/xtensa.c (TARGET_OPTION_OPTIMIZATION): Define.
8411         (xtensa_option_optimization): New.
8412         * config/xtensa/xtensa.h (OPTIMIZATION_OPTIONS): Remove.
8413
8414 2010-09-16  Joseph Myers  <joseph@codesourcery.com>
8415
8416         * doc/tm.texi.in (OVERRIDE_OPTIONS): Remove documentation.
8417         (C_COMMON_OVERRIDE_OPTIONS): Don't refer to OVERRIDE_OPTIONS.
8418         * doc/tm.texi: Regenerate.
8419         * system.h (OVERRIDE_OPTIONS): Poison.
8420         * target.def (override): Default to hook_void_void.
8421         * targhooks.c (default_target_option_override): Remove.
8422         * genmodes.c, machmode.def: Update comments mentioning
8423         OVERRIDE_OPTIONS.
8424         * config/alpha/alpha-modes.def: Update comment mentioning
8425         alpha_override_options.
8426         * config/alpha/alpha-protos.h (override_options): Remove.
8427         * config/alpha/alpha.c (override_options): Rename to
8428         alpha_option_override.  Call SUBTARGET_OVERRIDE_OPTIONS.  Make static.
8429         (TARGET_OPTION_OVERRIDE): Define.
8430         * config/alpha/alpha.h (OVERRIDE_OPTIONS): Remove.
8431         * config/alpha/vms.h (SUBTARGET_OVERRIDE_OPTIONS): Define instead
8432         of OVERRIDE_OPTIONS.
8433         * config/arc/arc-protos.h (arc_init): Remove.
8434         * config/arc/arc.c (TARGET_OPTION_OVERRIDE): Define.
8435         (arc_init): Rename to arc_option_override.  Make static.
8436         * config/arc/arc.h (ARC_EXTENSION_CPU): Correct comment.
8437         (OVERRIDE_OPTIONS): Remove.
8438         * config/arm/arm-protos.h (arm_override_options): Remove.
8439         * config/arm/arm.c (TARGET_OPTION_OVERRIDE): Define.
8440         (arm_override_options): Rename to arm_option_override.  Make
8441         static.  Call SUBTARGET_OVERRIDE_OPTIONS.
8442         * config/arm/arm.h (OVERRIDE_OPTIONS): Remove.
8443         * config/arm/arm.md: Update comment referring to arm_override_options.
8444         * config/arm/vxworks.h (SUBTARGET_OVERRIDE_OPTIONS): Define
8445         instead of OVERRIDE_OPTIONS.
8446         * config/avr/avr-protos.h (avr_override_options): Remove.
8447         * config/avr/avr.c (TARGET_OPTION_OVERRIDE): Define.
8448         (avr_override_options): Rename to avr_option_override.  Make static.
8449         * config/avr/avr.h (OVERRIDE_OPTIONS): Remove.
8450         * config/bfin/bfin-protos.h (override_options): Remove (twice).
8451         * config/bfin/bfin.c (override_options): Rename to
8452         bfin_option_override.  Make static.
8453         (TARGET_OPTION_OVERRIDE): Define.
8454         * config/bfin/bfin.h (OVERRIDE_OPTIONS): Remove.
8455         * config/cris/cris-protos.h (cris_override_options): Remove.
8456         * config/cris/cris.c (TARGET_OPTION_OVERRIDE): Define.
8457         (cris_override_options): Rename to cris_option_override.  Make static.
8458         * config/cris/cris.h (OVERRIDE_OPTIONS): Remove.
8459         * config/frv/frv-protos.h (frv_override_options): Remove.
8460         * config/frv/frv.c (TARGET_OPTION_OVERRIDE): Define.
8461         (frv_override_options): Rename to frv_option_override.  Make static.
8462         * config/frv/frv.h (OVERRIDE_OPTIONS): Remove.
8463         * config/h8300/h8300-protos.h (h8300_init_once): Remove.
8464         * config/h8300/h8300.c (h8300_init_once): Rename to
8465         h8300_option_override.  Make static.
8466         (TARGET_OPTION_OVERRIDE): Define.
8467         * config/h8300/h8300.h (OVERRIDE_OPTIONS): Remove.
8468         * config/i386/i386-protos.h (override_options): Remove.
8469         * config/i386/i386.c (override_options): Rename to
8470         ix86_option_override_internal.  Make static.  Comments referring
8471         to this function and callers changed.
8472         (ix86_option_override): New.
8473         (TARGET_OPTION_OVERRIDE): Define.
8474         * config/i386/i386.h (OVERRIDE_OPTION): Remove.
8475         * config/i386/linux64.h (DEFAULT_PCC_STRUCT_RETURN): Update comment.
8476         * config/ia64/ia64.c (ia64_file_start): Update comment referring
8477         to ia64_override_options.
8478         * config/iq2000/iq2000-protos.h (override_options): Remove.
8479         * config/iq2000/iq2000.c (TARGET_OPTION_OVERRIDE): Define.
8480         (override_options): Rename to iq2000_option_override.  Make static.
8481         * config/iq2000/iq2000.h (OVERRIDE_OPTIONS): Remove.
8482         * config/lm32/lm32-protos.h (lm32_override_options): Remove.
8483         * config/lm32/lm32.c (TARGET_OPTION_OVERRIDE): Define.
8484         (lm32_override_options): Rename to lm32_option_override.  Make static.
8485         * config/lm32/lm32.h (OVERRIDE_OPTIONS): Remove.
8486         * config/m32r/m32r.c (TARGET_OPTION_OVERRIDE): Define.
8487         (m32r_option_override): New.
8488         (m32r_init): Update comment.
8489         * config/m32r/m32r.h (OVERRIDE_OPTIONS): Remove.
8490         * config/m68hc11/m68hc11-protos.h (m68hc11_override_options): Remove.
8491         * config/m68hc11/m68hc11.c (TARGET_OPTION_OVERRIDE): Define.
8492         (m68hc11_override_options): Rename to m68hc11_option_override.
8493         Make static.  Return void.
8494         * config/m68hc11/m68hc11.h (OVERRIDE_OPTIONS): Remove.
8495         * config/m68k/m68k-protos.h (override_options): Remove.
8496         * config/m68k/m68k.c (TARGET_OPTION_OVERRIDE): Define.
8497         (override_options): Rename to m68k_option_override.  Make static.
8498         * config/m68k/m68k.h (OVERRIDE_OPTIONS): Remove.
8499         * config/mcore/mcore-protos.h (mcore_override_options): Remove.
8500         * config/mcore/mcore.c (TARGET_OPTION_OVERRIDE): Define.
8501         (mcore_override_options): Rename to mcore_option_override.  Make
8502         static.
8503         * config/mcore/mcore.h (OVERRIDE_OPTIONS): Remove.
8504         * config/mep/mep-protos.h (mep_override_options): Remove.
8505         * config/mep/mep.c (TARGET_OPTION_OVERRIDE): Define.
8506         (mep_override_options): Rename to mep_option_override.  Make static.
8507         * config/mep/mep.h (OVERRIDE_OPTIONS): Remove.
8508         * config/mmix/mmix-protos.h (mmix_override_options): Remove.
8509         * config/mmix/mmix.c (TARGET_OPTION_OVERRIDE): Define.
8510         (mmix_override_options): Rename to mmix_option_override.  Make static.
8511         * config/mmix/mmix.h (OVERRIDE_OPTIONS): Remove.
8512         * config/mn10300/mn10300-protos.h (mn10300_override_options): Remove.
8513         * config/mn10300/mn10300.c (TARGET_OPTION_OVERRIDE): Define.
8514         (mn10300_override_options): Rename to mn10300_option_override.
8515         Make static.
8516         * config/mn10300/mn10300.h (OVERRIDE_OPTIONS): Remove.
8517         * config/moxie/moxie-protos.h (moxie_override_options): Remove.
8518         * config/moxie/moxie.c (moxie_override_options): Rename to
8519         moxie_option_override.  Make static.
8520         (TARGET_OPTION_OVERRIDE): Define.
8521         * config/moxie/moxie.h (OVERRIDE_OPTIONS): Remove.
8522         * config/picochip/picochip-protos.h (picochip_override_options):
8523         Remove.  Update comment referring to picochip_override_options.
8524         * config/picochip/picochip.c (TARGET_OPTION_OVERRIDE): Define.
8525         (picochip_override_options): Rename to picochip_option_override.
8526         Make static.  Update comment and definition of
8527         TARGET_OVERRIDE_OPTIONS_AFTER_CHANGE.
8528         * config/picochip/picochip.h (OVERRIDE_OPTIONS): Remove.
8529         * config/rs6000/aix43.h (SUBTARGET_OVERRIDE_OPTIONS): Update comment.
8530         * config/rs6000/aix51.h (SUBTARGET_OVERRIDE_OPTIONS): Update comment.
8531         * config/rs6000/aix52.h (SUBTARGET_OVERRIDE_OPTIONS): Update comment.
8532         * config/rs6000/aix53.h (SUBTARGET_OVERRIDE_OPTIONS): Update comment.
8533         * config/rs6000/aix61.h (SUBTARGET_OVERRIDE_OPTIONS): Update comment.
8534         * config/rs6000/linux64.h (OPTION_TARGET_CPU_DEFAULT): Define
8535         instead of OVERRIDE_OPTIONS.
8536         * config/rs6000/rs6000-modes.def: Update comment referring to
8537         rs6000_override_options.
8538         * config/rs6000/rs6000-protos.h (rs6000_override_options): Remove.
8539         * config/rs6000/rs6000.c (TARGET_OPTION_OVERRIDE): Define.
8540         (rs6000_override_options): Rename to
8541         rs6000_option_override_internal.  Make static.  Commented
8542         referring to rs6000_override_options and OVERRIDE_OPTIONS updated.
8543         (rs6000_option_override): New.
8544         * config/rs6000/rs6000.h (OPTION_TARGET_CPU_DEFAULT): Define
8545         instead of OVERRIDE_OPTIONS.
8546         * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Update comment.
8547         * config/s390/s390-protos.h (override_options): Remove.
8548         * config/s390/s390.c (override_options): Rename to
8549         s390_option_override.  Make static.
8550         (TARGET_OPTION_OVERRIDE): Define.
8551         * config/s390/s390.h (OVERRIDE_OPTIONS): Remove.
8552         * config/score/score-protos.h (score_override_options): Remove.
8553         * config/score/score.c (TARGET_OPTION_OVERRIDE): Define.
8554         (score_override_options): Rename to score_option_override.  Make
8555         static.
8556         * config/score/score.h (OVERRIDE_OPTIONS): Remove.
8557         Update comment referring to override_options.
8558         * config/score/score3.c (score3_override_options): Rename to
8559         score3_option_override.
8560         * config/score/score3.h (score3_override_options): Rename to
8561         score3_option_override.
8562         * config/score/score7.c (score7_override_options): Rename to
8563         score7_option_override.
8564         * config/score/score7.h (score7_override_options): Rename to
8565         score7_option_override.
8566         * config/sh/sh.c: Update comments referring to OVERRIDE_OPTIONS.
8567         * config/sparc/sparc.c (TARGET_OPTION_OVERRIDE): Define.
8568         (sparc_override_options): Rename to sparc_option_override.  Make
8569         static.  Call SUBTARGET_OVERRIDE_OPTIONS.
8570         * config/sparc/sparc.h (OVERRIDE_OPTIONS): Remove.
8571         * config/sparc/vxworks.h (SUBTARGET_OVERRIDE_OPTIONS): Define
8572         instead of OVERRIDE_OPTIONS.
8573         * config/spu/spu-protos.h (spu_override_options): Remove.
8574         * config/spu/spu.c (TARGET_OPTION_OVERRIDE): Define.
8575         (spu_override_options): Rename to spu_option_override.  Make
8576         static.
8577         * config/spu/spu.h (OVERRIDE_OPTIONS): Remove.
8578         * config/vax/elf.h (SUBTARGET_OVERRIDE_OPTIONS): Define instead of
8579         OVERRIDE_OPTIONS.
8580         * config/vax/vax-protos.h (override_options): Remove.
8581         * config/vax/vax.c (TARGET_OPTION_OVERRIDE): Define.
8582         (override_options): Rename to vax_option_override.  Make static.
8583         Call SUBTARGET_OVERRIDE_OPTIONS.
8584         * config/vax/vax.h (OVERRIDE_OPTIONS): Remove.
8585         * config/vxworks.c: Update comment referring to OVERRIDE_OPTIONS.
8586         * config/vxworks.h: Update comment referring to OVERRIDE_OPTIONS.
8587         * config/xtensa/xtensa-protos.h (override_options): Remove.
8588         * config/xtensa/xtensa.c (TARGET_OPTION_OVERRIDE): Define.
8589         (override_options): Rename to xtensa_option_override.  Make static.
8590         * config/xtensa/xtensa.h (OVERRIDE_OPTIONS): Remove.
8591
8592 2010-09-16  Richard Guenther  <rguenther@suse.de>
8593
8594         PR tree-optimization/45623
8595         * tree-ssa-structalias.c (get_constraint_for_ptr_offset): Adjust.
8596         (get_constraint_for_component_ref): If computing a constraint
8597         for the rhs handle type punning through unions.
8598         (get_constraint_for_address_of): Adjust.
8599         (get_constraint_for_1): Likewise.
8600         (get_constraint_for): Likewise.
8601         (get_constraint_for_rhs): New function.
8602         (do_structure_copy): Adjust.
8603         (make_constraint_to): Likewise.
8604         (handle_const_call): Likewise.
8605         (find_func_aliases): Likewise.
8606         (process_ipa_clobber): Likewise.
8607         (create_variable_info_for): Likewise.
8608
8609 2010-09-16  Ira Rosen  <irar@il.ibm.com>
8610
8611         * tree-vectorizer.c: Fix documentation.
8612         * tree-vectorizer.h (vinfo_for_stmt): Add documentation.
8613         (set_vinfo_for_stmt, get_earlier_stmt, get_later_stmt,
8614         is_pattern_stmt_p, is_loop_header_bb_p,
8615         stmt_vinfo_set_inside_of_loop_cost,
8616         stmt_vinfo_set_outside_of_loop_cost, vect_pow2, aligned_access_p,
8617         known_alignment_for_access_p): Likewise.
8618         * tree-vect-loop.c: Fix documentation.
8619         (vect_get_cost): Start function name from new line.
8620         * tree-vect-data-refs.c: Fix documentation.
8621         * tree-vect_stmts.c: Likewise.
8622         (vect_create_vectorized_promotion_stmts): Always free vec_tmp.
8623         (vectorizable_store): Free vec_oprnds if allocated.
8624         (vectorizable_condition): Initialize several variables to avoid
8625         warnings.
8626         * tree-vect-slp.c: Fix documentation.
8627
8628 2010-09-16  Richard Guenther  <rguenther@suse.de>
8629
8630         * tree.c (tree_node_structure_for_code): TRANSLATION_UNIT_DECL
8631         is TS_TRANSLATION_UNIT_DECL.
8632         (initialize_tree_contains_struct): Adjust.
8633         (all_translation_units): New global vector.
8634         (build_translation_unit_decl): New function.
8635         * tree.h (TRANSLATION_UNIT_LANGUAGE): New macro.
8636         (struct tree_translation_unit_decl): New.
8637         (all_translation_units): Declare.
8638         (union tree_node): Add translation_unit_decl member.
8639         (build_translation_unit_decl): Declare.
8640         * treestruct.def (TS_TRANSLATION_UNIT_DECL): New.
8641         * lto-streamer-out.c (pack_ts_translation_unit_decl_value_fields):
8642         New function.
8643         (pack_value_fields): Call it.
8644         (lto_output_tree_ref): Handle references to TRANSLATION_UNIT_DECL.
8645         (lto_output_ts_translation_unit_decl_tree_pointers): New function.
8646         (lto_output_tree_pointers): Call it.
8647         * lto-streamer-in.c (lto_input_tree_ref): Handle references
8648         to TRANSLATION_UNIT_DECL.
8649         (unpack_ts_translation_unit_decl_value_fields): New function.
8650         (unpack_value_fields): Call it.
8651         (lto_input_ts_translation_unit_decl_tree_pointers): New function.
8652         (lto_input_tree_pointers): Call it.
8653         * lto-streamer.c (check_handled_ts_structures): Adjust.
8654         * lto-streamer.h (enum LTO_tags): Add LTO_translation_unit_decl_ref.
8655         * c-decl.c (all_translation_units): Remove.
8656         (pop_scope): Use build_translation_unit_decl.
8657         (collect_all_refs): Adjust.
8658         (for_each_global_decl): Likewise.
8659         (c_write_global_declarations): Likewise.
8660
8661 2010-09-16  Jakub Jelinek  <jakub@redhat.com>
8662
8663         PR bootstrap/45686
8664         * fold-const.c (fold_checksum_tree): Change slot from const void **
8665         to void **, use CONST_CAST_TREE to store into *slot.
8666
8667 2010-09-16  Uros Bizjak  <ubizjak@gmail.com>
8668
8669         * config/i386/i386.md: Remove unneeded empty conditions and
8670         preparation statements from expanders.
8671         * config/i386/mmx.md: Ditto.
8672         * config/i386/sse.md: Ditto.
8673
8674 2010-09-16  Uros Bizjak  <ubizjak@gmail.com>
8675
8676         * config/i386/i386.h (PUSH_ROUNDING): Redefine using UNITS_PER_WORD.
8677
8678 2010-09-15  Eric Botcazou  <ebotcazou@adacore.com>
8679
8680         PR rtl-optimization/45593
8681         * reorg.c (relax_delay_slots): Use emit_copy_of_insn_after to re-emit
8682         insns that were in delay slots as stand-alone insns.
8683
8684 2010-09-15  Ian Lance Taylor  <iant@google.com>
8685
8686         * incpath.c (remove_duplicates): If name is not a directory, issue
8687         a warning rather than an error.
8688
8689 2010-09-15  Martin Jambor  <mjambor@suse.cz>
8690
8691         PR middle-end/45644
8692         * tree-sra.c (create_access): Check for bit-fields directly.
8693
8694 2010-09-15  Jakub Jelinek  <jakub@redhat.com>
8695
8696         PR tree-optimization/45633
8697         * tree-cfg.c (verify_gimple_assign_binary): Allow
8698         MINUS_EXPR with lhs and rhs1 pointer vector and
8699         rhs2 sizetype vector.
8700         * expr.c (expand_expr_real_2) <case PLUS_EXPR>: For pointer
8701         or vector pointer use TER to optimize pointer subtraction.
8702
8703 2010-09-15  Jie Zhang  <jie@codesourcery.com>
8704
8705         * config/arm/vfp.md (cmpsf_trap_vfp): Change type from
8706         fcmpd to fcmps.
8707
8708 2010-09-15  Ian Lance Taylor  <iant@google.com>
8709
8710         * config/i386/i386.md (truncxf<mode>2): Fix indentation.
8711
8712 2010-09-15  Ian Lance Taylor  <iant@google.com>
8713
8714         * function.c (get_arg_pointer_save_area): Set
8715         arg_pointer_save_area_init to true.
8716
8717 2010-09-15  Martin Jambor  <mjambor@suse.cz>
8718
8719         * tree-sra.c (generate_subtree_copies): Updated comment.
8720         (handle_unscalarized_data_in_subtree): Removed parameter lhs which is
8721         obtained from the statement iterator instead.
8722         (load_assign_lhs_subreplacements): Removed parameters lhs and
8723         right_offset, which is obtained from top_racc instead.  Parameter lacc
8724         is now expected to be the root of the processed tree rather than root's
8725         first child.  Updated all callers.
8726
8727 2010-09-15  Joseph Myers  <joseph@codesourcery.com>
8728
8729         * config/pdp11/pdp11.c (register_move_cost): Rename to
8730         pdp11_register_move_cost.
8731         * config/pdp11/pdp11-protos.h (register_move_cost): Rename to
8732         pdp11_register_move_cost.
8733         * config/pdp11/pdp11.h (REGISTER_MOVE_COST): Call
8734         pdp11_register_move_cost instead of register_move_cost.
8735
8736 2010-09-15  Tejas Belagod  <tejas.belagod@arm.com>
8737
8738         * config/arm/neon.md (vec_pack_trunc_<mode>): Instruction
8739         pattern for vmovn. Expansion in case of non
8740         -mvectorize-with-neon-quad.
8741         (neon_vec_pack_trunc_<mode>): Instruction pattern for vmovn for
8742         non- -mvectorize-with-neon-quad case.
8743         (move_lo_quad_<mode>): New expansion to vmov into low part.
8744         (move_hi_quad_<mode>): New expansion to vmov into high part.
8745         (move_lo_quad_v4si): Refactor to move_lo_quad_<mode> expansion.
8746         (move_lo_quad_v4sf): Likewise.
8747         (move_lo_quad_v8hi): Likewise.
8748         (neon_move_lo_quad_<mode>): Instruction pattern for vmov into
8749         low part.
8750         (neon_move_hi_quad_<mode>): Instruction pattern for vmov into
8751         high part.
8752         * config/arm/iterators.md (ANY128): New mode iterator.
8753         (V_narrow_pack): New mode attribute.
8754         (V_HALF): Add attribute.
8755         (V_DOUBLE): Add attribute.
8756         (V_mode_nunits): Add attribute.
8757
8758 2010-09-15  Eric Botcazou  <ebotcazou@adacore.com>
8759
8760         * config/alpha/alpha.c (alpha_expand_prologue): If stack checking
8761         is enabled, probe up to frame_size + STACK_CHECK_PROTECT bytes.
8762
8763 2010-09-15  Olivier Hainque  <hainque@adacore.com>
8764             Jose Ruiz  <ruiz@adacore.com>
8765
8766         * config/alpha/osf5.h (MD_UNWIND_SUPPORT): Define.
8767         * config/alpha/osf5-unwind.h: New file.
8768
8769 2010-09-14  H.J. Lu  <hongjiu.lu@intel.com>
8770
8771         PR bootstrap/45672
8772         * config/mips/mips.c (mips_units_per_simd_word): Correct return type.
8773         * config/rs6000/rs6000.c (rs6000_units_per_simd_word): Likewise.
8774         * config/sparc/sparc.c (sparc_units_per_simd_word): Likewise.
8775
8776 2010-09-15  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
8777
8778         * c-lang.h (struct lang_type): Add variable_size GTY option.
8779
8780 2010-09-14  H.J. Lu  <hongjiu.lu@intel.com>
8781
8782         PR bootstrap/45672
8783         * config/rs6000/rs6000.c (TARGET_VECTORIZE_UNITS_PER_SIMD_WORD): New.
8784
8785 2010-09-14  H.J. Lu  <hongjiu.lu@intel.com>
8786
8787         * config/i386/i386.c (ix86_lea_for_add_ok): Return false if
8788         result isn't used in memory address.
8789
8790 2010-09-14  H.J. Lu  <hongjiu.lu@intel.com>
8791
8792         * defaults.h (UNITS_PER_SIMD_WORD): Removed.
8793         * config/arm/arm.h (UNITS_PER_SIMD_WORD): Likewise.
8794         * config/i386/i386.h (UNITS_PER_SIMD_WORD): Likewise.
8795         * config/mips/mips.h (UNITS_PER_SIMD_WORD): Likewise.
8796         * config/rs6000/rs6000.h (UNITS_PER_SIMD_WORD): Likewise.
8797         * config/sparc/sparc.h (UNITS_PER_SIMD_WORD): Likewise.
8798
8799         * target.def: Add units_per_simd_word to vectorize.
8800
8801         * targhooks.c (default_units_per_simd_word): New.
8802         * targhooks.h (default_units_per_simd_word): Likewise.
8803         * config/arm/arm.c (arm_units_per_simd_word): Likewise.
8804         (TARGET_VECTORIZE_UNITS_PER_SIMD_WORD): Likewise.
8805         * config/mips/mips.c (mips_units_per_simd_word): Likewise.
8806         (TARGET_VECTORIZE_UNITS_PER_SIMD_WORD): Likewise.
8807         * config/rs6000/rs6000.c (rs6000_units_per_simd_word): Likewise.
8808         (TARGET_VECTORIZE_UNITS_PER_SIMD_WORD): Likewise.
8809         * config/sparc/sparc.c (sparc_units_per_simd_word): Likewise.
8810         (TARGET_VECTORIZE_UNITS_PER_SIMD_WORD): Likewise.
8811
8812         * tree-vect-loop.c: Replace UNITS_PER_SIMD_WORD with
8813         TARGET_VECTORIZE_UNITS_PER_SIMD_WORD in comments.
8814
8815         * tree-vect-stmts.c: Don't include "tm_p.h".
8816         (get_vectype_for_scalar_type): Replace UNITS_PER_SIMD_WORD
8817         with targetm.vectorize.units_per_simd_word.
8818
8819         * system.h (UNITS_PER_SIMD_WORD): Poisoned.
8820
8821         * config/i386/i386-protos.h (ix86_units_per_simd_word): Removed.
8822
8823         * config/i386/i386.c (ix86_units_per_simd_word): Make it static.
8824         (TARGET_VECTORIZE_UNITS_PER_SIMD_WORD): New.
8825
8826         * doc/tm.texi.in: Remove UNITS_PER_SIMD_WORD.  Add
8827         TARGET_VECTORIZE_UNITS_PER_SIMD_WORD.
8828
8829         * doc/tm.texi: Regenerated.
8830
8831 2010-09-14  H.J. Lu  <hongjiu.lu@intel.com>
8832
8833         * tree-vect-stmts.c: Include "tm_p.h".
8834
8835         * config/i386/i386-protos.h (ix86_units_per_simd_word): Moved
8836         out of RTX_CODE.
8837
8838 2010-09-14  Martin Jambor  <mjambor@suse.cz>
8839
8840         * tree-sra.c (build_ref_for_offset): Loc made a parameter.  Set the
8841         location of generated statement.  Changed all callers.
8842         (build_ref_for_model): New parameter loc which used to set location of
8843         all generated expressions.  Changed all callers.
8844         (generate_subtree_copies): Likewise.
8845         (init_subtree_with_zero): Likewise.
8846         (sra_modify_expr): Set locations of all generated statements and
8847         expressions to the location the original statement.
8848         (handle_unscalarized_data_in_subtree): Likewise.
8849         (load_assign_lhs_subreplacements): Likewise.
8850         (sra_modify_constructor_assign): Likewise.
8851         (sra_modify_assign): Likewise.
8852
8853 2010-09-14  Eric Botcazou  <ebotcazou@adacore.com>
8854
8855         PR target/45277
8856         PR target/45363
8857         PR target/45407
8858         * doc/install.texi (sparc*-*-*): New section.
8859         (sparc-sun-solaris2*): Mention MPC alongside GMP and MPFR.
8860
8861 2010-09-14  Jakub Jelinek  <jakub@redhat.com>
8862
8863         PR middle-end/45567
8864         * builtins.c (expand_builtin_interclass_mathfn, expand_builtin_cexpi,
8865         expand_builtin_powi): Remove subtarget argument, pass NULL_RTX instead.
8866         (expand_builtin): Adjust caller.
8867         (expand_builtin_unop): Only use subtarget if it has the right mode.
8868
8869 2010-09-14  Tristan Gingold  <gingold@adacore.com>
8870
8871         * configure.ac (plugins): Fix typos.
8872         * configure: Regenerate.
8873
8874 2010-09-14  Jakub Jelinek  <jakub@redhat.com>
8875
8876         PR debug/45660
8877         * dwarf2out.c (gen_decl_die): Call gen_type_die for origin before
8878         gen_type_die for function/method return type.
8879
8880 2010-09-14  Ira Rosen  <irar@il.ibm.com>
8881
8882         PR tree-optimization/45470
8883         * tree-vect-data-refs.c (vect_analyze_data_refs): Fail if a statement
8884         can throw an exception.
8885         * tree-vect-stmts.c (vectorizable_call): Likewise.
8886
8887 2010-09-14  DJ Delorie  <dj@redhat.com>
8888
8889         PR target/44749
8890         * config/mep/mep-protos.h (mep_save_register_info,
8891         mep_reinit_regs, mep_init_regs): Declare.
8892
8893         * config/mep/mep.c: Move all target definitions to the end of the
8894         file to avoid the need for duplicate declarations.
8895         (mep_save_register_info, mep_reinit_regs, mep_init_regs): New.
8896         (mep_reorg_erepeat): Remove unused variables.
8897         (mep_expand_builtin): Likewise.
8898
8899         * config/mep/mep-pragma.c: Don't include rtl.h.
8900         (INVALID_REGNUM): New.
8901         (mep_pragma_coprocessor_which): Call mep-specific rtl-layer bridge
8902         functions.
8903         (mep_pragma_coprocessor_subclass): Rename "class" to "rclass".
8904         Avoid enum/integer math.
8905
8906 2010-09-13  Joseph Myers  <joseph@codesourcery.com>
8907
8908         PR target/44749
8909         * config/mep/t-mep (GTM_H): Add insn-constants.h.
8910         * config/mep/mep.c (mep_conditional_register_usage): Take no
8911         parameters.
8912         * config/mep/mep-protos.h (mep_conditional_register_usage): Update
8913         prototype.
8914         * config/mep/mep-pragma.c (CONDITIONAL_REGISTER_USAGE): Update
8915         call to mep_conditional_register_usage.
8916
8917 2010-09-13  Eric Botcazou  <ebotcazou@adacore.com>
8918
8919         PR debug/43937
8920         * varasm.c (output_constant_def_contents): Set TREE_ASM_WRITTEN on
8921         the DECL as well.
8922
8923 2010-09-13  Jakub Jelinek  <jakub@redhat.com>
8924
8925         PR rtl-optimization/45617
8926         * combine.c (simplify_comparison): Optimize (X >> N) {>,>=,<,<=} C
8927         even if low N bits of X aren't known to be zero.
8928
8929 2010-09-13  H.J. Lu  <hongjiu.lu@intel.com>
8930
8931         * config/i386/i386-protos.h (ix86_units_per_simd_word): New.
8932
8933         * config/i386/i386.c (initial_ix86_tune_features): Add
8934         X86_TUNE_VECTORIZE_DOUBLE.
8935         (ix86_units_per_simd_word): New.
8936
8937         * config/i386/i386.h (ix86_tune_indices): Add
8938         X86_TUNE_VECTORIZE_DOUBLE.
8939         (TARGET_VECTORIZE_DOUBLE): New.
8940         (UNITS_PER_SIMD_WORD): Defined with ix86_units_per_simd_word.
8941
8942 2010-09-13  Pat Haugen  <pthaugen@us.ibm.com>
8943
8944         * tree-ssa-ter.c (temp_expr_table_d): Add call_cnt field.
8945         (new_temp_expr_table): Allocate call_cnt vector.
8946         (free_temp_expr_table): Free it.
8947         (process_replaceable): Add call_cnt parm and set in vector.
8948         (find_replaceable_in_bb): Skip replacement if def/use span a call.
8949         (debug_ter): Dump call_cnt value, remove stderr uses.
8950
8951 2010-09-13  Jan Hubicka  <jh@suse.cz>
8952
8953         * tree.c (build_zero_cst): New.
8954         * tree.h (build_zero_cst): Declare.
8955         * tree-ssa-ccp.c (get_constant_value): Accept general operands.
8956         (get_base_constructor): Break out from ...
8957         (fold_const_aggregate_ref): Here; handle empty constructors.
8958
8959 2010-09-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
8960
8961         * config/arm/arm.md: (define_attr "conds"): Update comment.
8962         * config/arm/sync.md (arm_sync_compare_and_swapsi): Change
8963         conds attribute to clob.
8964         (arm_sync_compare_and_swapsi): Likewise.
8965         (arm_sync_compare_and_swap<mode>): Likewise.
8966         (arm_sync_lock_test_and_setsi): Likewise.
8967         (arm_sync_lock_test_and_set<mode>): Likewise.
8968         (arm_sync_new_<sync_optab>si): Likewise.
8969         (arm_sync_new_nandsi): Likewise.
8970         (arm_sync_new_<sync_optab><mode>): Likewise.
8971         (arm_sync_new_nand<mode>): Likewise.
8972         (arm_sync_old_<sync_optab>si): Likewise.
8973         (arm_sync_old_nandsi): Likewise.
8974         (arm_sync_old_<sync_optab><mode>): Likewise.
8975         (arm_sync_old_nand<mode>): Likewise.
8976
8977 2010-09-13  Olivier Hainque  <hainque@adacore.com>
8978
8979         * fwprop.c (forward_propagate_and_simplify): Only attach a
8980         REG_EQUAL note to an insn if the destination is a register.
8981         * gcse.c (try_replace_reg): Likewise.
8982
8983 2010-09-13  Richard Guenther  <rguenther@suse.de>
8984
8985         PR tree-optimization/45611
8986         * tree-ssa-loop-ivopts.c (rewrite_use_nonlinear_expr): Fix typo.
8987         (copy_ref_info): Likewise.
8988
8989 2010-09-13  Alexandre Oliva  <aoliva@redhat.com>
8990
8991         PR debug/45604
8992         PR debug/45419
8993         PR debug/45408
8994         * tree-pretty-print.c (dump_generic_node): Disregard top-level
8995         types of MEM_REF pointer types to the same type.
8996
8997 2010-09-13  Hans-Peter Nilsson  <hp@axis.com>
8998
8999         PR rtl-optimization/41087
9000         * ifcvt.c (noce_get_condition): Don't allow conditions with
9001         side-effects.
9002
9003 2010-09-12  Anatoly Sokolov  <aesok@post.ru>
9004
9005         * config/frv/frv.h (REGISTER_MOVE_COST, MEMORY_MOVE_COST): Remove.
9006         * config/frv/frv-protos.h (frv_register_move_cost): Remove.
9007         * config/frv/frv.c (frv_register_move_cost): Make static. Change
9008         arguments type to reg_class_t. Add mode argument.
9009         (frv_memory_move_cost): New.
9010         (TARGET_REGISTER_MOVE_COSTS, TARGET_MEMORY_MOVE_COSTS): Define.
9011
9012 2010-09-12  Bernd Schmidt  <bernds@codesourcery.com>
9013
9014         * config/arm/arm.md (arm_ashldi3_1bit, arm_ashrdi3_1bit,
9015         arm_lshrdi3_1bit): Put earlyclobber on the right alternative.
9016
9017 2010-09-10  Jan Hubicka  <jh@suse.cz>
9018
9019         * tree-ssa-ccp.c (fold_const_aggregate_ref): Do not check STATIC flag.
9020
9021 2010-09-10  Richard Guenther  <rguenther@suse.de>
9022
9023         * tree.c (make_vector_type): Do not set TYPE_DEBUG_REPRESENTATION_TYPE.
9024         * tree.h (TYPE_DEBUG_REPRESENTATION_TYPE): Remove.
9025         * lto-streamer-out.c (lto_output_ts_type_tree_pointers): Do
9026         not stream TYPE_DEBUG_REPRESENTATION_TYPE.
9027         * lto-streamer-in.c (lto_input_ts_type_tree_pointers): Likewise.
9028
9029 2010-09-10  Richard Guenther  <rguenther@suse.de>
9030
9031         * dwarf2out.c (gen_array_type_die): Output DW_TAG_subrange_type
9032         for VECTOR_TYPEs using TYPE_VECTOR_SUBPARTS.
9033         * dbxout.c (dbxout_type): Manually deal with VECTOR_TYPE
9034         using TYPE_VECTOR_SUBPARTS, not TYPE_DEBUG_REPRESENTATION_TYPE.
9035
9036 2010-09-10  H.J. Lu  <hongjiu.lu@intel.com>
9037
9038         PR middle-end/45634
9039         * tree-ssa-ccp.c (fold_const_aggregate_ref): Check that result
9040         of string folding is of integral type.
9041
9042 2010-09-10  Ryan Mansfield  <rmansfield@qnx.com>
9043
9044         * doc/invoke.texi (-x): Fix typo.
9045
9046 2010-09-10  Richard Guenther  <rguenther@suse.de>
9047
9048         PR debug/44115
9049         * tree.c (free_lang_data_in_decl): Do not clear DECL_DEBUG_EXPR.
9050         * lto-streamer-out.c (lto_output_ts_decl_common_tree_pointers):
9051         Output DECL_DEBUG_EXPR.
9052         * lto-streamer-in.c (lto_input_ts_decl_common_tree_pointers):
9053         Input DECL_DEBUG_EXPR.
9054
9055 2010-09-10  Richard Guenther  <rguenther@suse.de>
9056
9057         * tree.c (type_hash_eq): For ARRAY_TYPEs also compare TYPE_SIZE.
9058         (build_index_type): Implement in terms of build_range_type.
9059         (build_range_type): Do not allow NULL_TREE type, improve
9060         hashing to cover more cases.  Set TYPE_STRUCTURAL_EQUALITY_P
9061         if we didn't hash.
9062         * c-decl.c (grokdeclarator): When modifying TYPE_SIZE manually
9063         create a distinct copy of the type.
9064
9065 2010-09-10  Kai Tietz  <kai.tietz@onevision.com>
9066
9067         * configure: Regenerated.
9068         * config.gcc: Add for x86_64 and i?86 mingw t-dfprule.
9069
9070 2010-09-10  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
9071
9072         * config/arm/neon-schedgen.ml (allCores): Add support for Cortex-A9.
9073         * config/arm/cortex-a9-neon.md: New and partially generated.
9074         * config/arm/cortex-a9.md (cortex_a9_dp): Adjust for Neon.
9075
9076 2010-09-10  Richard Guenther  <rguenther@suse.de>
9077
9078         * tree.h (build_index_2_type): Remove.
9079         * tree.c (build_index_2_type): Remove.
9080
9081 2010-09-10  Jakub Jelinek  <jakub@redhat.com>
9082
9083         PR bootstrap/45630
9084         * dwarf2out.c (get_ref_die_offset_label): Use %ld instead of
9085         HOST_WIDE_INT_PRINT_DEC to print ref->die_offset.
9086         (implicit_ptr_descriptor): Return NULL if dwarf_strict.
9087
9088 2010-09-10  Martin Jambor  <mjambor@suse.cz>
9089
9090         PR tree-optimization/44972
9091         * tree-sra.c: Include toplev.h.
9092         (build_ref_for_offset): Entirely reimplemented.
9093         (build_ref_for_model): New function.
9094         (build_user_friendly_ref_for_offset): New function.
9095         (analyze_access_subtree): Removed build_ref_for_offset check.
9096         (propagate_subaccesses_across_link): Likewise.
9097         (create_artificial_child_access): Use
9098         build_user_friendly_ref_for_offset.
9099         (propagate_subaccesses_across_link): Likewise.
9100         (ref_expr_for_all_replacements_p): Removed.
9101         (generate_subtree_copies): Updated comment.  Use build_ref_for_model.
9102         (sra_modify_expr): Use build_ref_for_model.
9103         (load_assign_lhs_subreplacements): Likewise.
9104         (sra_modify_assign): Removed ref_expr_for_all_replacements_p checks,
9105         checks for return values of build_ref_for_offset.
9106         * ipa-cp.c (ipcp_lattice_from_jfunc): No need to check return value of
9107         build_ref_for_offset.
9108         * ipa-prop.h: Include gimple.h
9109         * ipa-prop.c (ipa_compute_jump_functions): Update to look for MEM_REFs.
9110         (ipa_analyze_indirect_call_uses): Update comment.
9111         * Makefile.in (tree-sra.o): Add $(GIMPLE_H) to dependencies.
9112         (IPA_PROP_H): Likewise.
9113
9114 2010-09-10  Martin Jambor  <mjambor@suse.cz>
9115
9116         PR tree-optimization/44972
9117         * ipa-prop.c (ipa_modify_call_arguments): Build MEM_REF instead of
9118         calling build_ref_for_offset.
9119
9120 2010-09-09  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
9121
9122         * config/arm/bpabi.h (BE8_LINK_SPEC): Handle Cortex-a15.
9123         * config/arm/arm-cores.def (cortex-a15): New core. Treat it as a v7-a.
9124         * config/arm/arm-tune.md: Regenerate.
9125         * doc/invoke.texi (ARM Options): Document it.
9126
9127 2010-09-09  Reza Yazdani  <reza.yazdani@amd.com>
9128
9129         * config/i386/i386.c: Include sched-int.h.
9130         (TARGET_SCHED_DISPATCH): Defined.
9131         (TARGET_SCHED_DISPATCH_DO): Defined.
9132         (DISPATCH_WINDOW_SIZE): Defined.
9133         (MAX_DISPATCH_WINDOWS): Defined.
9134         (MAX_INSN): Defined.
9135         (MAX_IMM): Defined.
9136         (MAX_IMM_SIZE): Defined.
9137         (MAX_IMM_32): Defined.
9138         (MAX_IMM_64): Defined.
9139         (MAX_LOAD): Defined.
9140         (MAX_STORE): Defined.
9141         (BIG): Defined.
9142         (dispatch_group): New.
9143         (num_allowable_groups): New.
9144         (group_name): New.
9145         (sched_insn_info_s): New.
9146         (dispatch_windows_s): New.
9147         (imm_info_s): New.
9148         (dispatch_window_list): New.
9149         (dispatch_window_list1): New.
9150         (get_mem_group): New.
9151         (is_cmp): New.
9152         (dispatch_violation): New.
9153         (is_branch): New.
9154         (is_prefetch): New.
9155         (init_window): New.
9156         (allocate_window): New.
9157         (init_dispatch_sched): New.
9158         (is_end_basic_block): New.
9159         (process_end_window): New.
9160         (allocate_next_window): New.
9161         (find_constant_1): New.
9162         (find_constant): New.
9163         (get_num_immediates): New.
9164         (has_immediate): New.
9165         (get_insn_path): New.
9166         (get_insn_group): New.
9167         (count_num_restricted): New.
9168         (fits_dispatch_window): New.
9169         (add_insn_window): New.
9170         (add_to_dispatch_window): New.
9171         (debug_dispatch_window_file): New.
9172         (debug_dispatch_window): New.
9173         (debug_insn_dispatch_info_file): New.
9174         (debug_ready_dispatch): New.
9175         (do_dispatch): New.
9176         (has_dispatch): New.
9177         * config/i386/i386.h (debug_ready_dispatch): Declared.
9178         (debug_dispatch_window): Declared.
9179         * config/i386/i386.opt (mdispatch-scheduler): New flag.
9180         * doc/tm.texi.in (TARGET_SCHED_DISPATCH): New.
9181         (TARGET_SCHED_DISPATCH_DO): New.
9182         * doc/tm.texi: Regererated.
9183         * haifa-sched.c (choose_ready): Call targetm.sched.dispatch and
9184         ready_remove_first_dispatch
9185         (schedule_block): Call targetm.sched.dispatch and
9186         targetm.sched.dispatch_do.
9187         (sched_init): Call targetm.sched.dispatch and
9188         targetm.sched.dispatch_do.
9189         (ready_remove_first_dispatch): New.
9190         (number_in_ready): New.
9191         (get_ready_element): New.
9192         * hooks.c (hook_bool_rtx_int_false): New.
9193         (hook_void_rtx_int): New.
9194         * hooks.h (hook_bool_rtx_int_false): Declared.
9195         (hook_void_rtx_int): Declared.
9196         * sched-int.h (IS_DISPATCH_ON): Defined.
9197         (IS_CMP): Defined.
9198         (DISPATCH_VIOLATION): Defined.
9199         (FITS_DISPATCH_WINDOW): Defined.
9200         (DISPATCH_INIT): Defined.
9201         (ADD_TO_DISPATCH_WINDOW): Defined.
9202         (get_ready_element): Declared.
9203         (number_in_ready): Declared.
9204         * target.def (dispatch): Defined.
9205         (dispatch_do): Defined.
9206
9207 2010-09-09  Vladimir Makarov  <vmakarov@redhat.com>
9208
9209         PR middle-end/45312
9210         * reload1.c (merge_assigned_reloads): Remove.
9211         (reload_as_needed): Don't call it.
9212
9213 2010-09-09  Anatoly Sokolov  <aesok@post.ru>
9214
9215         * config/m32r/m32r.c (m32r_mode_dependent_address_p): New functions.
9216         (TARGET_MODE_DEPENDENT_ADDRESS_P): Define.
9217         * config/m32r/m32r.h: (GO_IF_MODE_DEPENDENT_ADDRESS): Remove.
9218
9219 2010-09-09  Matthias Klose  <doko@ubuntu.com>
9220
9221         PR bootstrap/43847
9222         * configure.ac (--enable-plugin): Enhance for cross builds.
9223         * configure: Regenerate.
9224
9225 2010-09-09  Jan Hubicka  <jh@suse.cz>
9226
9227         PR tree-optimization/45598
9228         * tree-ssa-ccp.c (fold_const_aggregate_ref): Check that result of
9229         string folding is of integral type.
9230
9231 2010-09-09  Nathan Sidwell  <nathan@codesourcery.com>
9232
9233         * configure.ac (gnu_indirect_function): New test.
9234         * configure: Rebuilt.
9235         * config.in (HAVE_GAS_INDIRECT_FUNCTION): New.
9236         * defaults.h (IFUNC_ASM_TYPE): Provide default.
9237
9238         * doc/extend.texi (Function Attributes): Document ifunc.
9239         * varasm.c (do_assemble_alias): Deal with ifuncs too.
9240
9241 2010-09-09  Hariharan Sandanagobalane  <hariharan@picochip.com>
9242
9243         * config/picochip/picochip.c (picochip_reorg): Check for note_p for
9244         epilogue instruction move.
9245
9246 2010-09-09  Jan Hubicka  <jh@suse.cz>
9247
9248         * collect2.c (maybe_run_lto_and_relink): Rewrite code producing ld
9249         command line to allow more partitions than input files.
9250
9251 2010-09-09  Vladimir Makarov  <vmakarov@redhat.com>
9252
9253         PR middle-end/44554
9254         * ira.c (ira): Switch off sharing spill slots if setjmp is called.
9255
9256 2010-09-09  Vladimir Makarov  <vmakarov@redhat.com>
9257
9258         PR middle-end/40386
9259         * ira.c (pseudo_for_reload_consideration_p): Don't use
9260         flag_ira_share_spill_slots.
9261
9262 2010-09-09  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
9263
9264         * config/s390/s390.c (legitimate_reload_constant_p): Accept floating-
9265         point zero operands that fit into a single GPR.
9266         (s390_preferred_reload_class): Ensure we only return general-purpose
9267         register classes.
9268         * config/s390/s390.md ("*mov<mode>_64dfp"): Use lghi to load
9269         floating-point zero operands into GPRs.
9270         ("*mov<mode>_64"): Likewise.
9271         ("mov<mode>"): Likewise using lhi.
9272
9273 2010-09-09  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
9274
9275         * config/s390/s390.c (s390_symref_operand_p): Return false for
9276         literal pool references.
9277         (s390_check_qrst_address): Update caller.
9278
9279 2010-09-09  Uros Bizjak  <ubizjak@gmail.com>
9280
9281         * config/i386/predicates.md (ext_register_operand): Check that
9282         SUBREG_REG is really a register before looking for REGNO.
9283         (reg_not_xmm0_operand): Handle SUBREGs correctly.
9284         (nonimm_not_xmm0_operand): Call reg_not_xmm0_operand.
9285
9286 2010-09-09  Jakub Jelinek  <jakub@redhat.com>
9287
9288         * rtl.def (DEBUG_IMPLICIT_PTR): New rtl code.
9289         * rtl.h (DEBUG_IMPLICIT_PTR_DECL): Define.
9290         * rtl.c (rtx_equal_p_cb, rtx_equal_p): Handle DEBUG_IMPLICIT_PTR.
9291         * print-rtl.c (print_rtx): Likewise.
9292         * cselib.c (rtx_equal_for_cselib_p, cselib_hash_rtx): Likewise.
9293         * cfgexpand.c (expand_debug_expr): Generate DEBUG_IMPLICIT_PTR
9294         for ADDR_EXPR with non-addressable object.
9295         * dwarf2out.c (enum dw_val_class): Add dw_val_class_decl_ref.
9296         (struct dw_val_struct): Add v.val_decl_ref.
9297         (dwarf_stack_op_name, output_loc_operands, output_loc_operands_raw):
9298         Handle DW_OP_GNU_implicit_pointer.
9299         (size_of_loc_descr): Likewise.  Fix up DW_OP_call_ref size.
9300         (get_ref_die_offset_label): New function.
9301         (implicit_ptr_descriptor): New function.
9302         (mem_loc_descriptor): Handle DEBUG_IMPLICIT_PTR.
9303         (loc_descriptor): Likewise.
9304         (gen_variable_die): Put even definitions into decl_die_table.
9305         (resolve_addr_in_expr): Resolve still unresolved
9306         DW_OP_GNU_implicit_pointer operands, if it can't be resolved
9307         return false.
9308         (dwarf2out_finish): Call output_location_lists after outputting
9309         .debug_info and .debug_abbrev instead of before.
9310
9311 2010-09-09  Roland McGrath  <roland@redhat.com>
9312
9313         * dwarf2out.c (DWARF_REF_SIZE): Define.
9314         (size_of_loc_descr): Use it for DW_OP_call_ref.
9315
9316 2010-09-09  Alan Modra  <amodra@gmail.com>
9317
9318         * doc/invoke.text: Reinstate mcmodel=medium.
9319         * config/rs6000/linux64.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Set
9320         CMODEL_MEDIUM as default.
9321         * config/rs6000/rs6000.h (enum rs6000_cmodel): Add CMODEL_MEDIUM.
9322         * config/rs6000/rs6000.c (rs6000_handle_option): Add mcmodel=medium.
9323         (toc_relative_ok, offsettable_ok_by_alignment): New functions.
9324         (rs6000_emit_move): Reinstate mcmodel=medium optimization.
9325
9326 2010-09-08  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
9327
9328         PR target/45250
9329         * config/pa/pa.md (nonlocal_goto): Restore hard frame pointer using
9330         hard_frame_pointer_rtx instead of virtual_stack_vars_rtx.
9331         (builtin_longjmp): Likewise.
9332         (allocate_stack): Use hard_frame_pointer_rtx instead of
9333         frame_pointer_rtx.
9334         * config/pa/pa-protos.h (pa_initial_elimination_offset): Declare.
9335         * config/pa/pa.c (pa_internal_arg_pointer): Declare.
9336         (pa_can_eliminate): Likewise.
9337         (TARGET_INTERNAL_ARG_POINTER): Define.
9338         (TARGET_CAN_ELIMINATE): Define.
9339         (hppa_expand_prologue): Use hard frame pointer instead of soft frame
9340         pointer.
9341         (hppa_expand_epilogue, pa_eh_return_handler_rtx): Likewise.
9342         (pa_internal_arg_pointer, pa_can_eliminate,
9343         pa_initial_elimination_offset): New.
9344         * config/pa/pa.h (FRAME_POINTER_REGNUM): Set to new general register.
9345         (HARD_FRAME_POINTER_REGNUM): Set to register three.
9346         (INITIAL_FRAME_POINTER_OFFSET): Delete.
9347         (ELIMINABLE_REGS, INITIAL_ELIMINATION_OFFSET, DWARF_FRAME_REGISTERS):
9348         Define.
9349         (DWARF_ALT_FRAME_RETURN_COLUMN, REGNO_OK_FOR_INDEX_P,
9350         REGNO_OK_FOR_BASE_P): Update to include soft frame pointer.
9351         * config/pa/pa32-regs.h (FIRST_PSEUDO_REGISTER): Increase by one.
9352         (FIXED_REGISTERS, CALL_USED_REGISTERS, REG_ALLOC_ORDER,
9353         REG_CLASS_CONTENTS, REGNO_REG_CLASS, REGISTER_NAMES): Update to include
9354         new soft frame pointer.
9355         * config/pa/pa64-regs.h: Likewise.
9356
9357 2010-09-08  Uros Bizjak  <ubizjak@gmail.com>
9358
9359         * config/i386/i386.h (EH_RETURN_DATA_REGNO) Use DX_REG instead of
9360         numerical constant.
9361         (EH_RETURN_STACKADJ_RTX): Use CX_REG insted of numerical constant.
9362
9363 2010-09-08  Alexandre Oliva  <aoliva@redhat.com>
9364
9365         PR debug/45531
9366         * cfglayout.c (fixup_reorder_chain): Skip debug insns.
9367
9368 2010-09-08  Alexandre Oliva  <aoliva@redhat.com>
9369
9370         PR debug/45419
9371         PR debug/45408
9372         * tree-pretty-print.c (dump_generic_node): Disregard top-level
9373         qualifiers in otherwise equal MEM_REF pointer types.
9374         * fold-const.c (operand_equal_p): Compare pointer type of MEM_REFs.
9375         * tree.c (iterative_hash_expr): Hash the pointer type of MEM_REFs.
9376
9377 2010-09-08  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
9378
9379         PR target/44392
9380         * config/arm/arm.md (bswapsi2): Handle condition correctly
9381         for armv6 and optimize_size.
9382
9383 2010-09-08  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
9384
9385         PR other/18555
9386         * doc/cppopts.texi (-isysroot): Document Darwin behaviour.
9387
9388 2010-09-08  Uros Bizjak  <ubizjak@gmail.com>
9389
9390         * config/i386/i386-protos.h (ix86_can_use_return_insn_p,
9391         symbolic_reference_mentioned_p, ix86_expand_movmem, ix86_expand_setmem,
9392         ix86_expand_strlen, legitimate_pic_address_disp_p,
9393         ix86_binary_operator_ok, ix86_unary_operator_ok, ix86_match_ccmode,
9394         ix86_expand_int_movcc, ix86_expand_fp_movcc, ix86_expand_int_addcc,
9395         ix86_check_movabs, ix86_secondary_memory_needed): Change function
9396         prototype to bool.
9397         * config/i386/i386.c (return_in_memory_32, return_in_memory_64,
9398         return_in_memory_ms_64, ix86_check_movabs,
9399         symbolic_reference_mentioned_p, ix86_can_use_return_insn_p,
9400         legitimate_pic_address_disp_p, ix86_binary_operator_ok,
9401         ix86_unary_operator_ok, ix86_match_ccmode, ix86_expand_int_movcc,
9402         ix86_expand_fp_movcc, ix86_expand_int_addcc, ix86_expand_movmem,
9403         ix86_expand_setmem, ix86_expand_strlen, inline_secondary_memory_needed,
9404         ix86_secondary_memory_needed): Change to bool.  Return
9405         "true" and "false" values.
9406         * config/i386/i386.md: Return "true" and "false" values.
9407
9408 2010-09-08  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
9409
9410         * doc/sourcebuild.texi (Effective-Target Keywords): Document
9411         run_expensive_tests.
9412
9413 2010-09-08  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
9414
9415         * toplev.c (output_stack_usage): Use lbasename instead of basename.
9416
9417 2010-09-08  Martin Jambor  <mjambor@suse.cz>
9418
9419         PR other/45443
9420         * doc/invoke.texi: Add -fipa-cp-clone to list of switches turned on
9421         at -O3.
9422
9423 2010-09-08  Richard Guenther  <rguenther@suse.de>
9424
9425         * gimple.c (gimple_types, type_hash_cache): Move to GC memory.
9426         (visit): Adjust.
9427         (iterative_hash_gimple_type): Likewise.
9428         (gimple_type_hash): Likewise.
9429         (gimple_register_type): Likewise.
9430         (print_gimple_types_stats): Likewise.
9431         (free_gimple_type_tables): Likewise.
9432
9433 2010-09-08  Michael Matz  <matz@suse.de>
9434
9435         PR tree-optimization/43430
9436         * tree-vect-stmts.c (vectorizable_condition): Support multiple
9437         copies for conditional statements if it's not part of a reduction.
9438
9439 2010-09-08  Michael Matz  <matz@suse.de>
9440
9441         PR tree-optimization/33244
9442         * tree-ssa-sink.c (statement_sink_location): Don't sink into
9443         empty loop latches.
9444
9445 2010-09-08  Richard Guenther  <rguenther@suse.de>
9446
9447         PR tree-optimization/45578
9448         * tree-ssa-loop-ivopts.c (rewrite_use_nonlinear_expr):
9449         Be more careful when transfering alignment information to
9450         the new induction variable.
9451         (copy_ref_info): Likewise.
9452
9453 2010-09-08  Richard Guenther  <rguenther@suse.de>
9454
9455         * tree.h (TYPE_ORIG_SIZE_TYPE): Remove.
9456         * c-typeck.c (comptypes_internal): Remove TYPE_ORIG_SIZE_TYPE checks.
9457
9458 2010-09-08  Arnaud Charlet  <charlet@adacore.com>
9459
9460         * c-tree.h, c-decl.c (build_enumerator): Add location parameter.
9461         * c-parser.c (c_parser_enum_specifier): Adjust call to build_enumerator.
9462
9463 2010-09-08  Kenneth Zadeck  <zadeck@naturalbridge.com>
9464
9465         PR doc/45587
9466         * doc/md.texi: Fixed modes on several standard pattern names.
9467
9468 2010-09-08  Mingjie Xing  <mingjie.xing@gmail.com>
9469
9470         * config/mips/loongson.md (loongson_psll<V_suffix>): Rename to...
9471         (ashl<mode>3): ...this.
9472         (loongson_psra<V_suffix>): Rename to...
9473         (ashr<mode>3): ...this.
9474         (loongson_psrl<V_suffix>): Rename to...
9475         (lshr<mode>3): ...this.
9476         * config/mips/mips.c (CODE_FOR_loongson_psllh): Define.
9477         (CODE_FOR_loongson_psllw): Define.
9478         (CODE_FOR_loongson_psrlh): Define.
9479         (CODE_FOR_loongson_psrlw): Define.
9480         (CODE_FOR_loongson_psrah): Define.
9481         (CODE_FOR_loongson_psraw): Define.
9482
9483 2010-09-07  Richard Henderson  <rth@redhat.com>
9484
9485         * tree-vect-data-refs.c: Include tm_p.h.
9486         * Makefile.in (tree-vect-data-refs.o): Update deps.
9487         * config/i386/i386-protos.h (ix86_cfun_abi, ix86_function_type_abi):
9488         Move delarations outside #ifdef RTX_CODE.
9489
9490 2010-09-07  Richard Henderson  <rth@redhat.com>
9491
9492         * final.c (rest_of_handle_final): Unconditionally do
9493         output_function_exception_table before assemble_end_function.
9494
9495 2010-09-07  Jan Hubicka  <jh@suse.cz>
9496
9497         * tree-inline.c (tree_inlinable_function_p): Do not test
9498         DECL_REPLACEABLE_P.
9499         * ipa-inline.c (cgraph_default_inline_p, update_caller_keys,
9500         update_callee_keys, cgraph_decide_inlining): Test function availability.
9501         * cif-code.def (OVERWRITABLE): New code.
9502
9503 2010-09-07  H.J. Lu  <hjl.tools@gmail.com>
9504             Jack Howarth  <howarth@bromo.med.uc.edu>
9505
9506         PR target/36502
9507         PR target/42313
9508         PR target/44651
9509         * config/i386/darwin.h (STACK_BOUNDARY): Redefine as 128 for
9510         profiling or 64-bit MS_ABI and as BITS_PER_WORD otherwise.
9511         (PREFERRED_STACK_BOUNDARY): Replace STACK_BOUNDARY with 128 in
9512         MAX macro.
9513
9514 2010-09-07  H.J. Lu  <hongjiu.lu@intel.com>
9515
9516         * unwind-dw2-fde-glibc.c: Include <elf.h> for DT_CONFIG.
9517         Include <link.h> only if USE_PT_GNU_EH_FRAME is defined.
9518
9519 2010-09-07  H.J. Lu  <hongjiu.lu@intel.com>
9520
9521         * config.gcc: Don't append t-android for Android targets.
9522
9523         * config/t-android: Removed.
9524
9525 2010-09-07  Richard Henderson  <rth@redhat.com>
9526
9527         * target.def (TARGET_ASM_EMIT_EXCEPT_PERSONALITY): New hook.
9528         * doc/tm.texi.in: Add doc marker.
9529         * doc/tm.texi: Rebuild.
9530         * except.c (switch_to_exception_section): Always build.
9531         (output_one_function_exception_table): Move section switch,
9532         personality output, and label output ...
9533         (output_function_exception_table): ... here.  Use the new
9534         personality hook.
9535
9536         * config/ia64/ia64.c (ia64_asm_emit_except_personality,
9537         ia64_asm_init_sections, TARGET_ASM_EMIT_EXCEPT_PERSONALITY,
9538         TARGET_ASM_INIT_SECTIONS): New.
9539         (ia64_asm_unwind_emit): Rename from process_for_unwind_directive,
9540         make static.
9541         (TARGET_ASM_UNWIND_EMIT): Update to match.
9542         * config/ia64/ia64-protos.h (process_for_unwind_directive): Remove.
9543
9544         * config/arm/arm.c (arm_asm_emit_except_personality): New.
9545         (arm_asm_init_sections): New.
9546         (TARGET_ASM_EMIT_EXCEPT_PERSONALITY, TARGET_ASM_INIT_SECTIONS): New.
9547
9548 2010-09-07  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
9549
9550         * config/arm/arm.md: Remove unused variable.
9551
9552 2010-09-07  Anatoly Sokolov  <aesok@post.ru>
9553
9554         * config/m32r/m32r.h (REGISTER_MOVE_COST, MEMORY_MOVE_COST): Remove.
9555         * config/m32r/m32r.c (TARGET_MEMORY_MOVE_COSTS): Define.
9556         (m32r_memory_move_cost): New function.
9557
9558 2010-09-07  H.J. Lu  <hongjiu.lu@intel.com>
9559
9560         * config.gcc: Append t-android for Android targets.
9561
9562         * config/t-android: New.
9563
9564 2010-09-07  Richard Henderson  <rth@redhat.com>
9565
9566         * target.def (unwind_emit_before_insn): New hook.
9567         * doc/tm.texi.in: Add @hook marker for it.
9568         * doc/tm.texi: Rebuild.
9569         * final.c (final_scan_insn): Respect unwind_emit_before_insn.
9570
9571 2010-09-07  Martin Jambor  <mjambor@suse.cz>
9572
9573         PR fortran/43665
9574         * ipa-cp.c (ipcp_versionable_function_p): Return false if there
9575         are any type attributes.
9576
9577 2010-09-07  Jan Hubicka  <jh@suse.cz>
9578
9579         * tree-ssa-ccp.c (fold_const_aggregate_ref): Fix handling of
9580         array_ref_low_bound in string access folding.
9581
9582 2010-09-07  Uros Bizjak  <ubizjak@gmail.com>
9583
9584         PR target/45206
9585         * config/i386/i386.c (ix86_expand_epilogue): Mark SP as valid after
9586         eh_return fixup sequence.
9587
9588 2010-09-07  Jan Hubicka  <jh@suse.cz>
9589
9590         * gimple-fold.c (maybe_fold_reference): Verify that operand is
9591         gimple_min_invariant.
9592
9593 2010-09-07  Richard Guenther  <rguenther@suse.de>
9594
9595         PR middle-end/45569
9596         * tree-eh.c (operation_could_trap_helper_p): Neither COMPLEX_EXPR
9597         nor CONSTRUCTOR can trap.
9598         * tree-complex.c (update_complex_assignment): Update EH info.
9599
9600 2010-09-07  Richard Guenther  <rguenther@suse.de>
9601
9602         PR middle-end/45569
9603         * tree-cfg.c (build_gimple_cfg): Remove redundant stmt verification.
9604         * passes.c (execute_function_todo): Do not verify anything if
9605         we saw errors.
9606
9607 2010-09-07  Richard Guenther  <rguenther@suse.de>
9608
9609         * tree-pretty-print.c (dump_generic_node): Dump void types as void.
9610
9611 2010-09-07  Bernd Schmidt  <bernds@codesourcery.com>
9612
9613         PR target/43137
9614         * config/arm/iterators.md (qhs_zextenddi_cond, qhs_sextenddi_cond):
9615         New define_mode_attrs.
9616         * config/arm/arm.md (zero_extendsidi2, arm_zero_extendsidi2,
9617         arm_exxtendsidi2, arm_extendsidi2): Delete patterns.
9618         (zero_extend<mode>di2, extend<mode>di2 and related splits): New.
9619         (thumb1_zero_extendhisi2): Remove code to handle LABEL_REFs.
9620         Remove pool_range attribute.
9621         (arm_zero_extendhisi2, arm_zero_extendhisi2_v6, arm_zero_extendqisi2,
9622         arm_zero_extendqisi2_v6, thumb1_zero_extendqisi2_v6): Remove
9623         pool_range and neg_pool_range attributes.
9624         * config/arm/thumb2.md (thumb2_zero_extendsidi2,
9625         thumb2_zero_extendhidi2, thumb2_zero_extendqidi2, thumb2_extendsidi2,
9626         thumb2_extendhidi2, thumb2_extendqidi2): Delete.
9627
9628 2010-09-06  H.J. Lu  <hongjiu.lu@intel.com>
9629
9630         * config/i386/linux-unwind.h (x86_fallback_frame_state): Properly
9631         check glibc.
9632
9633 2010-09-06  Uros Bizjak  <ubizjak@gmail.com>
9634
9635         PR target/22152
9636         * config/i386/mmx.md (*mov<mode>_internal_rex64,
9637         *mov<mode>_internal_avx, *mov<mode>_internal,
9638         *movv2sf_internal_rex64_avx, *movv2sf_internal_rex64,
9639         *movv2sf_internal_avx, *movv2sf_internal): Split out !y-!y alternative.
9640
9641 2010-09-06  Mark Mitchell  <mark@codesourcery.com>
9642
9643         * c-typeck.c (do_warn_double_promotion): Remove.
9644         * doc/invoke.texi (-Wdouble-promotion): Note available for C++ and
9645         Objective-C++ too.
9646
9647 2010-09-06  Anatoly Sokolov  <aesok@post.ru>
9648
9649         * config/frv/frv.h (CLASS_LIKELY_SPILLED_P): Remove.
9650         * config/frv/frv-protos.h (frv_class_likely_spilled_p): Remove.
9651         * config/frv/frv.c (frv_class_likely_spilled_p): Make static. Change
9652         argument type to reg_class_t. Change result type to bool.
9653         (TARGET_CLASS_LIKELY_SPILLED_P): Define.
9654
9655 2010-09-06  Nicola Pero  <nicola.pero@meta-innovation.com>
9656
9657         PR libobjc/19850
9658         * gthr-posix.h (__gthread_objc_thread_detach): Use
9659         _objc_thread_attribs when detaching a thread.
9660         * gthr-posix95.h (__gthread_objc_thread_detach): Same change.
9661
9662 2010-09-06  H.J. Lu  <hongjiu.lu@intel.com>
9663
9664         PR target/45524
9665         * configure.ac (enable_decimal_float): Set to $default_decimal_float.
9666         * configure: Regenerated.
9667
9668 2010-09-06  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
9669
9670         * combine.c (try_combine): Set subst_low_luid to i0.
9671
9672 2010-09-06  Richard Guenther  <rguenther@suse.de>
9673
9674         * tree.def (MISALIGNED_INDIRECT_REF): Remove.
9675         * tree.h (INDIRECT_REF_P): Only check for INDIRECT_REF.
9676         (build_aligned_type): Declare.
9677         * tree.c (check_qualified_type): Also compare TYPE_ALIGN.
9678         (check_aligned_type): New function.
9679         (build_aligned_type): Likewise.
9680         * expr.c (expand_assignment): Handle misaligned stores via
9681         TARGET_MEM_REF and MEM_REF using movmisalign_optab.
9682         (expand_expr_real_1): Likewise.
9683         (safe_from_p): Remove MISALIGNED_INDIRECT_REF handling.
9684         * tree-vect-stmts.c (vectorizable_store): Do not build
9685         MISALIGNED_INDIRECT_REF but initialize alignment information.
9686         (vectorizable_load): Likewise.
9687         * builtins.c (get_object_alignment): Remove MISALIGNED_INDIRECT_REF
9688         handling.
9689         * cfgexpand.c (expand_debug_expr): Likewise.
9690         * dwarf2out.c (loc_list_from_tree): Likewise.
9691         * fold-const.c (maybe_lvalue_p): Likewise.
9692         (operand_equal_p): Likewise.
9693         (build_fold_addr_expr_with_type_loc): Likewise.
9694         * gimplify.c (gimplify_addr_expr): Likewise.
9695         (gimplify_expr): Likewise.
9696         * tree-cfg.c (verify_types_in_gimple_min_lval): Likewise.
9697         (verify_gimple_assign_single): Likewise.
9698         * tree-dump.c (dequeue_and_dump): Likewise.
9699         (tree_could_trap_p): Likewise.
9700         * tree-predcom.c (ref_at_iteration): Likewise.
9701         * tree-pretty-print.c (dump_generic_node): Likewise.
9702         (op_code_prio): Likewise.
9703         (op_symbol_code): Likewise.
9704         * tree-ssa-ccp.c (get_value_from_alignment): Likewise.
9705         * tree-ssa-loop-im.c (for_each_index): Likewise.
9706         (gen_lsm_tmp_name): Likewise.
9707         * tree-ssa-loop-ivopts.c (idx_find_step): Likewise.
9708         (find_interesting_uses_address): Likewise.
9709         * tree-ssa-loop-prefetch.c (idx_analyze_ref): Likewise.
9710         * tree-ssa-operands.c (get_expr_operands): Likewise.
9711         * tree-ssa-pre.c (create_component_ref_by_pieces_1): Likewise.
9712         * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Likewise.
9713         (ao_ref_init_from_vn_reference): Likewise.
9714         * tree.c (staticp): Likewise.
9715         (build1_stat): Likewise.
9716         (reference_alias_ptr_type): Likewise.
9717         * emit-rtl.c (set_mem_attributes_minus_bitpos): Likewise.
9718         * config/rs6000/rs6000.c (rs6000_check_sdmode): Remove
9719         MISALIGNED_INDIRECT_REF handling.
9720
9721 2010-09-06  Richard Guenther  <rguenther@suse.de>
9722
9723         PR tree-optimization/45534
9724         * tree-ssa-address.c (create_mem_ref_raw): Add verify parameter.
9725         (create_mem_ref): Do verify the created TARGET_MEM_REF is valid
9726         on the target.
9727         (maybe_fold_tmr): Do not verify the created TARGET_MEM_REF is
9728         valid on the target.
9729
9730 2010-09-06  Andreas Schwab  <schwab@redhat.com>
9731
9732         * configure.ac: Quote argument of AC_MSG_WARN.
9733         * configure: Regenerate.
9734
9735 2010-09-06  Alexander Monakov  <amonakov@ispras.ru>
9736
9737         * sel-sched.c (move_cond_jump): Correct arguments to
9738         maybe_tidy_empty_bb.
9739         * sel-sched-ir.c (maybe_tidy_empty_bb): Export.
9740
9741 2010-09-06  Andrey Belevantsev  <abel@ispras.ru>
9742
9743         PR rtl-optimization/44919
9744         * sel-sched.c (move_cond_jump): Remove assert, check that
9745         the several blocks case can only happen with mutually exclusive
9746         insns instead.  Rewrite the movement code to support moving through
9747         several basic blocks.
9748
9749 2010-09-06  Uros Bizjak  <ubizjak@gmail.com>
9750
9751         * config/i386/i386.md (iptrsize): New mode attribute.
9752         (tp_seg): Ditto.
9753         (*load_tp_<mode>): Macroize insn from *load_tp_{si,di} using P
9754         mode iterator.
9755         (*add_tp_<mode>): Ditto from *add_tp_{si,di}.
9756         (stack_protect_set_<mode>): Ditto from stack_protect_set_{si,di}.
9757         (stack_protect_test_<mode>): Ditto from stack_protect_test_{si,di}.
9758         (stack_tls_protect_set_<mode>): Ditto from
9759         stack_tls_protect_set_{si,di}.  Use %@ to output segment register
9760         of thread base pointer load.
9761         (stack_tls_protect_test_<mode>): Ditto from
9762         stack_tls_protect_test_{si,di}.  Use %@ to output segment register
9763         of thread base pointer load.
9764         (stack_protect_set): Rewrite using indirect functions.
9765         (stack_protect_test): Ditto.
9766         * config/i386/i386.c (ix86_print_operand_punct_valid): Add '@'.
9767         (ix86_print_operand): Handle '@'.
9768
9769 2010-09-05  Giuseppe Scrivano  <gscrivano@gnu.org>
9770
9771         * tree-tailcall.c (process_assignment): Handle NEGATE_EXPR and
9772         MINUS_EXPR.
9773
9774 2010-09-05  Mark Mitchell  <mark@codesourcery.com>
9775
9776         * doc/invoke.texi: Document -Wdouble-promotion.
9777         * c-typeck.c (convert_arguments): Check for implicit conversions
9778         from float to double.
9779         (do_warn_double_promotion): New function.
9780         (build_conditional_expr): Use it.
9781         (build_binary_op): Likewise.
9782
9783 2010-09-05  Richard Guenther  <rguenther@suse.de>
9784
9785         PR tree-optimization/45535
9786         * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Properly
9787         handle TMR_INDEX2.  Make sure TMR_INDEX is not NULL before
9788         dereferencing it.
9789         (indirect_refs_may_alias_p): Likewise.
9790
9791 2010-09-05  Naveen H.S  <naveen.S@kpitcummins.com>
9792
9793         * config/sh/sh.c (sh_option_override): Make static.
9794         Adjust comments.  Declare.
9795         (sh_function_value_regno_p): Likewise.
9796         (sh_register_move_cost): Modify the arguments, make static.
9797         Adjust comments.  Declare.
9798         (TARGET_OPTION_OVERRIDE, TARGET_REGISTER_MOVE_COST
9799         TARGET_FUNCTION_VALUE_REGNO_P): Define.
9800         * config/sh/sh.h (OVERRIDE_OPTIONS, FUNCTION_VALUE_REGNO_P
9801         REGISTER_MOVE_COST): Delete.
9802         * config/sh/sh-protos.h (sh_override_options): Delete.
9803         (sh_register_move_cost): Delete.
9804         (sh_function_value_regno_p): Delete.
9805
9806 2010-09-04  Anatoly Sokolov  <aesok@post.ru>
9807
9808         * config/m32r/m32r.c (m32r_function_value, m32r_libcall_value,
9809         m32r_function_value_regno_p): New functions.
9810         (TARGET_FUNCTION_VALUE, TARGET_LIBCALL_VALUE,
9811         TARGET_FUNCTION_VALUE_REGNO_P): Declare.
9812         * config/m32r/m32r.h: (FUNCTION_VALUE, LIBCALL_VALUE,
9813         FUNCTION_VALUE_REGNO_P): Remove.
9814
9815 2010-09-04  Jan Hubicka  <jh@suse.cz>
9816
9817         * gimple-fold.c (maybe_fold_reference): Use fold_const_aggregate_ref.
9818         * tree-ssa-ccp.c (fold_const_aggregate_ref): Use
9819         fold_read_from_constant_string.
9820
9821         * gimple.h (canonicalize_constructor_val): Declare.
9822         * gimple-fold.c (canonicalize_constructor_val): New function.
9823         (get_symbol_constant_value):Use it.
9824         * tree-ssa-ccp.c (fold_const_aggregate_ref): Likewise.
9825
9826 2010-09-04  Jan Hubicka  <jh@suse.cz>
9827
9828         * tree-switch-conversion.c (build_one_array): Set constructor to be
9829         static.
9830         * varpool.c (varpool_finalize_decl): Compute const_value_known.
9831
9832 2010-09-04  Richard Guenther  <rguenther@suse.de>
9833
9834         PR bootstrap/45519
9835         * tree-flow.h (force_gimple_operand_1): Declare.
9836         (force_gimple_operand_gsi_1): Likewise.
9837         * gimplify.c (force_gimple_operand_1): New worker taking a
9838         gimple predicate for ...
9839         (force_gimple_operand): ... which now wraps it.
9840         (force_gimple_operand_gsi_1, force_gimple_operand_gsi): Likewise.
9841         * tree-ssa-loop-ivopts.c (find_interesting_uses_address): Revert
9842         last change.
9843         * tree-ssa-address.c (gimplify_mem_ref_parts): Use
9844         force_gimple_operand_gsi_1 with is_gimple_mem_ref_addr.
9845         (create_mem_ref): Likewise.
9846
9847 2010-09-04  Uros Bizjak  <ubizjak@gmail.com>
9848
9849         * config/i386/predicates.md (sse_reg_operand): New predicate.
9850         * config/i386/i386.md (TFmode push splitter): Use sse_reg_operand
9851         predicate for operand 1.
9852         (XFmode push splitter): Use fp_register_operand predicate
9853         for operand 1.
9854         (*dummy_extendsfdf2, *dummy_extendsfxf2): Remove disabled patterns.
9855         (SF-DF float_extend push splitter): Add reload_completed insn
9856         predicate.
9857         ({SF,DF}-XF float_extend_push splitter): Macroize splitter using
9858         MODEF mode macro.  Add reload_completed insn predicate.
9859
9860 2010-09-04  Paolo Bonzini  <bonzini@gnu.org>
9861
9862         * df.h (enum df_ref_class): Remove DF_REF_EXTRACT.
9863         (struct df_extract_ref): Remove.
9864         (union df_ref_d): Remove extract_ref member.
9865         (df_ref_create): Remove last three arguments.
9866         (DF_REF_LOC): Remove DF_REF_EXTRACT case.
9867         * df-scan.c (df_ref_record): Remove last three arguments, do not
9868         pass them to df_ref_create_structure.
9869         (df_uses_record): Remove first and last three arguments.  Replace
9870         first argument with DF_REF_REGULAR, adjust calls to remove the
9871         width, offset and mode.  Always call recursively on the second
9872         and third argument of ZERO_EXTRACT and SIGN_EXTRACT.
9873         (df_ref_create_structure): Remove first argument.
9874         (struct df_scan_problem_data): Remove ref_extract_pool.
9875         (df_scan_free_internal): Do not free it.
9876         (df_scan_alloc): Do not allocate it.
9877         (df_ref_create): Remove last three arguments, do not pass them to
9878         df_ref_create_structure.
9879         (df_free_ref): Remove DF_REF_EXTRACT case.
9880         (df_notes_rescan): Adjust call to df_uses_record.
9881         (df_ref_equal_p, df_ref_compare, df_ref_create_structure):
9882         Remove DF_REF_EXTRACT case.
9883         (df_def_record_1): Do not special case class for a ZERO_EXTRACT lhs.
9884         Adjust calls to df_ref_record, using DF_REF_REGULAR for all REG
9885         and SUBREG definitions.
9886         (df_get_conditional_uses): Remove references to width/offset/mode,
9887         adjust call to df_ref_create_structure.
9888         (df_get_call_refs, df_insn_refs_collect, df_bb_refs_collect,
9889         df_entry_block_defs_collect, df_exit_block_uses_collect): Adjust
9890         calls to df_uses_record and df_ref_record.
9891         * fwprop.c (update_df): Remove references to width/offset/mode,
9892         adjust call to df_ref_create.
9893
9894 2010-09-03  Jan Hubicka  <jh@suse.cz>
9895
9896         * ipa.c (build_cdtor): Take VECtor as argument; fix array walk.
9897         (build_cdtor_fns): Update use of build_cdtor.
9898
9899 2010-09-03  Joseph Myers  <joseph@codesourcery.com>
9900
9901         * doc/options.texi (SeparateAlias): Document.
9902         * opt-functions.awk (switch_flags): Handle SeparateAlias.
9903         * opth-gen.awk: Generate enumeration names for options marked
9904         SeparateAlias, but not for those marked Ignore.
9905         * opts-common.c (generate_canonical_option): Don't output separate
9906         argument for options marked CL_SEPARATE_ALIAS.
9907         (decode_cmdline_option): Handle CL_SEPARATE_ALIAS.
9908         * opts.h (CL_SEPARATE_ALIAS): New.
9909         (CL_PARAMS, CL_WARNING, CL_OPTIMIZATION, CL_DRIVER, CL_TARGET,
9910         CL_COMMON): Adjust definitions.
9911         * config/i386/darwin.opt, config/mips/sde.opt: New.
9912         * common.opt (fdump-final-insns): New.
9913         * config.gcc (i[34567]86-*-darwin*, x86_64-*-darwin*): Add
9914         i386/darwin.opt.
9915         (mips*-sde-elf*): Add mips/sde.opt.
9916         * config/mips/sde.h (DRIVER_SELF_SPECS): Don't handle
9917         -mno-data-in-code and -mcode-xonly here.
9918         * defaults.h (DEFAULT_SWITCH_TAKES_ARG): Add 'd'.
9919         * gcc.c (option_map): Add "j" to --dump entry.
9920         (translate_options): Don't translate -d to -foutput-class-dir= here.
9921
9922 2010-09-03  Sebastian Pop  <sebastian.pop@amd.com>
9923
9924         * tree-data-ref.c (dr_may_alias_p): Replace !DR_IS_READ with
9925         DR_IS_WRITE.
9926         (compute_all_dependences): Same.
9927         (create_rdg_edge_for_ddr): Same.
9928         * tree-data-ref.h (DR_IS_WRITE): New.
9929         (ddr_is_anti_dependent): Replace !DR_IS_READ with DR_IS_WRITE.
9930         * tree-if-conv.c (write_memrefs_written_at_least_once): Same.
9931         (write_memrefs_written_at_least_once): Same.
9932         * tree-predcom.c (suitable_component_p): Same.
9933         (determine_roots_comp): Same.
9934         (execute_load_motion): Same.
9935         * tree-vect-data-refs.c (vect_analyze_data_ref_dependence): Same.
9936         (vect_enhance_data_refs_alignment): Same.
9937         (vect_analyze_group_access): Same.
9938
9939 2010-09-03  Joern Rennecke  <joern.rennecke@embecosm.com>
9940
9941         PR testsuite/42843
9942         * Makefile.in (PLUGINCC): Define in terms of @CC@ / @CXX@
9943         (PLUGINCFLAGS): Define in terms of @CFLAGS@ / @CXXFLAGS@
9944
9945 2010-09-03  Marcin Baczynski  <marbacz@gmail.com>
9946
9947         * dwarf2out.c (file scope): Remove #if0'd code.
9948         (gen_subprogram_die): Same.
9949
9950 2010-09-03  Jakub Jelinek  <jakub@redhat.com>
9951
9952         PR middle-end/45484
9953         * dwarf2out.c (flush_queued_reg_saves): Rename to...
9954         (dwarf2out_flush_queued_reg_saves): ... this.  No longer static.
9955         (dwarf2out_frame_debug_expr, dwarf2out_frame_debug): Adjust callers.
9956         * dwarf2out.h (dwarf2out_flush_queued_reg_saves): New prototype.
9957         * config/i386/i386.c (output_set_got): Call it.
9958
9959 2010-09-03  Michael Matz  <matz@suse.de>
9960
9961         PR middle-end/45415
9962         * tree-sra.c (sra_modify_assign): If we modify the statement,
9963         say so.
9964
9965         * tree-ssa.c (verify_ssa): Check number of operands and links
9966         per statement to agree.
9967
9968 2010-09-03  Uros Bizjak  <ubizjak@gmail.com>
9969             Iain Sandoe  <iains@gcc.gnu.org>
9970
9971         PR target/45476
9972         * config/i386/t-darwin (LIB2FUNCS_EXCLUDE): New.
9973         * config/i386/darwin.h (LIBGCC2_HAS_TF_MODE,
9974         LIBGCC2_TF_CEXT, TF_SIZE): New defines.
9975
9976 2010-09-03  Richard Guenther  <rguenther@suse.de>
9977
9978         * lto-streamer-out.c (output_function): Output function
9979         start and end loci.
9980         * lto-streamer-in.c (input_function): Input function start
9981         and end loci.
9982
9983 2010-09-03  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
9984
9985         * configure.ac: Use the GCC_AC_ENABLE_DECIMAL_FLOAT macro.
9986         * Makefile.in: Add aclocal.m4 dependency to dfp.m4.
9987         * configure: Regenerate.
9988         * aclocal.m4: Regenerate.
9989
9990 2010-09-03  Jan Hubicka  <jh@suse.cz>
9991
9992         PR lto/44812
9993         * lto-cgraph.c (intput_node, input_varpool_node): Set DECL_EXTERNAL
9994         on functions/variables in other partition.
9995
9996 2010-09-03  Jan Hubicka  <jh@suse.cz>
9997
9998         * cgraph.h (struct varpool_node): Add const_value_known.
9999         (varpool_decide_const_value_known): Declare.
10000         * tree-ssa-ccp.c (fold_const_aggregate_ref): Update initializer folding.
10001         * lto-cgraph.c (lto_output_varpool_node): Store const_value_known.
10002         (input_varpool_node): Restore const_value_known.
10003         * tree-ssa-loop-ivcanon (constant_after_peeling): Check varpool for
10004         initializer folding.
10005         * ipa.c (ipa_discover_readonly_nonaddressable_var,
10006         function_and_variable_visibility): Compute const_value_known.
10007         * gimple-fold.c (get_symbol_constant_value): Use varpool for
10008         initializer folding.
10009         * varpool.c (varpool_decide_const_value_known): New function.
10010
10011 2010-09-03  Uros Bizjak  <ubizjak@gmail.com>
10012
10013         * config/i386/i386.md: Remove empty preparation statements
10014         from splitters.
10015
10016 2010-09-03  Jan Hubicka  <jh@suse.cz>
10017
10018         * passes.c (rest_of_decl_compilation): Do not add local vars into
10019         varpool.
10020         * varpool.c (varpool_get_node, varpool_node): Sanity check that only
10021         static or extern vars are in varpool.
10022         (varpool_finalize_decl): Sanity check that only static vars are
10023         finalized.
10024
10025 2010-09-03  Jakub Jelinek  <jakub@redhat.com>
10026
10027         PR debug/45500
10028         * dwarf2out.c (rtl_for_decl_init): Give up for all generic vectors,
10029         not just generic vectors with BLKmode.
10030
10031 2010-09-03  Richard Guenther  <rguenther@suse.de>
10032
10033         * tree.def (TARGET_MEM_REF): Merge TMR_SYMBOL and TMR_BASE.
10034         Move TMR_OFFSET to second operand.  Add TMR_INDEX2.
10035         * tree.h (TMR_SYMBOL): Remove.
10036         (TMR_BASE, TMR_OFFSET): Adjust.
10037         (TMR_INDEX2): New.
10038         * alias.c (ao_ref_from_mem): Use TMR_BASE.
10039         * builtins.c (get_object_alignment): Merge TMR_BASE and
10040         TMR_SYMBOL handling.
10041         * cfgexpand.c (expand_debug_expr): Use TMR_BASE.
10042         * gimple.c (get_base_address): Merge MEM_REF and TARGET_MEM_REF
10043         handling.  Also allow TARGET_MEM_REF as base address.
10044         (walk_stmt_load_store_addr_ops): TMR_BASE is always non-NULL.
10045         * gimplify.c (gimplify_expr): Gimplify TMR_BASE like MEM_REF
10046         base.  Gimplify TMR_INDEX2.
10047         * tree-cfg.c (verify_types_in_gimple_reference): Adjust.
10048         * tree-dfa.c (get_ref_base_and_extent): Likewise.
10049         (get_addr_base_and_unit_offset): Likewise.
10050         * tree-eh.c (tree_could_trap_p): Likewise.
10051         * tree-pretty-print.c (dump_generic_node): Likewise.
10052         * tree-ssa-address.c (tree_mem_ref_addr): Simplify.  Handle TMR_INDEX2.
10053         (create_mem_ref_raw): Merge symbol and base.  Move 2ndary
10054         base to index2.
10055         (get_address_description): Reconstruct addres description
10056         from merged TMR_BASE and TMR_INDEX2.
10057         (maybe_fold_tmr): Fold propagated addresses.
10058         * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Merge
10059         MEM_REF and TARGET_MEM_REF paths.
10060         (indirect_refs_may_alias_p): Likewise.
10061         * tree-ssa-live.c (mark_all_vars_used_1): Handle TMR_INDEX2
10062         instead of TMR_SYMBOL.
10063         * tree-ssa-operands.c (get_tmr_operands): Simplify.
10064         * tree-ssa-pre.c (create_component_ref_by_pieces_1): Adjust
10065         according to changes ...
10066         * tree-ssa-sccvn.c (copy_reference_ops_from_ref): ... here.
10067         Split TARGET_MEM_REF into two fields plus the base.
10068         * tree.c (mem_ref_offset): Simplify.
10069         * tree-ssa-loop-im.c (for_each_index): Handle TMR_INDEX2.
10070         * tree-ssa-loop-ivopts.c (find_interesting_uses_address): Likewise.
10071         Strip NOPs when folding MEM_REF addresses.
10072         * tree-ssa-sink.c (is_hidden_global_store): Handle TARGET_MEM_REF.
10073         * gimple-fold.c (maybe_fold_reference): Fold TARGET_MEM_REF here ...
10074         (fold_gimple_assign): ... not here.
10075
10076 2010-09-03  Mingjie Xing  <mingjie.xing@gmail.com>
10077
10078         * config/mips/mips.h (SHIFT_COUNT_TRUNCATED): Change the definition.
10079         * config/mips/mips.c (mips_shift_truncation_mask): New function.
10080         (TARGET_SHIFT_TRUNCATION_MASK): Define.
10081
10082 2010-09-02  Richard Henderson  <rth@redhat.com>
10083
10084         * configure.ac (gcc_cv_as_cfi_advance_working): Use objdump
10085         instead of readelf in the test.
10086         (gcc_cv_as_cfi_sections_directive): Check for correct relocation
10087         in the .debug_frame section for coff targets.
10088         * configure: Rebuild.
10089
10090 2010-09-02  Anatoly Sokolov  <aesok@post.ru>
10091
10092         * config/m32c/m32c.h (CLASS_LIKELY_SPILLED_P): Remove.
10093         * config/m32c/m32c-protos.h (m32c_class_likely_spilled_p): Remove.
10094         * config/m32c/m32c.c (TARGET_CLASS_LIKELY_SPILLED_P): Define.
10095         (m32c_class_likely_spilled_p): Make static. Change argument type to
10096         reg_class_t. Change result type to bool.
10097
10098 2010-09-02  Michael Meissner  <meissner@linux.vnet.ibm.com>
10099
10100         * config/rs6000/rs6000.opt (-mfriz): New switch to control whether
10101         to convert (double)(long) into a single FRIZ instruction or not
10102         when -ffast-math is used.
10103
10104         * config/rs6000/vsx.md (VSX_DF): New iterator for DF/V2DF modes.
10105         (vsx_float_fix_<mode>2): Optimize (double)(long) into X{S,V}RDPIZ
10106         or FRIZ instruction if -ffast-math.
10107         * config/rs6000/rs6000.md (friz): Ditto.
10108
10109         * doc/invoke.texi (RS/6000 and PowerPC Options): Document -mfriz.
10110
10111 2010-09-02  Joseph Myers  <joseph@codesourcery.com>
10112
10113         * opth-gen.awk (quote, comma): Remove unused variables.
10114
10115 2010-09-02  Ryan Mansfield  <rmansfield@qnx.com>
10116
10117         * arm.c (arm_override_options): Correct fall-back code to use
10118         SUBTARGET_CPU_DEFAULT.
10119
10120 2010-09-02  Julian Brown  <julian@codesourcery.com>
10121
10122         * config/arm/neon.md (UNSPEC_VCLE, UNSPEC_VCLT): New constants for
10123         unspecs.
10124         (vcond<mode>, vcondu<mode>): New expanders.
10125         (neon_vceq<mode>, neon_vcge<mode>, neon_vcgt<mode>): Support
10126         comparisons with zero.
10127         (neon_vcle<mode>, neon_vclt<mode>): New patterns.
10128         * config/arm/constraints.md (Dz): New constraint.
10129
10130 2010-09-02  Anatoly Sokolov  <aesok@post.ru>
10131
10132         * target.def (class_likely_spilled_p): New hook.
10133         * doc/tm.texi.in (TARGET_CLASS_LIKELY_SPILLED_P): Document.
10134         * doc/tm.texi: Regenerate.
10135         * targhooks.c (default_class_likely_spilled_p): New function.
10136         * targhooks.h (default_class_likely_spilled_p): Declare.
10137         * regs.h (CLASS_LIKELY_SPILLED_P): Remove.
10138         * combine.c (cant_combine_insn_p, likely_spilled_retval_p): Use
10139         TARGET_CLASS_LIKELY_SPILLED_P target hook. Use HARD_REGISTER_P macro.
10140         Use fixed_reg_set instead of fixed_regs.
10141         * cse.c (hash_rtx_cb): Use TARGET_CLASS_LIKELY_SPILLED_P target hook.
10142         * calls.c (avoid_likely_spilled_reg): Ditto.
10143         * ira-conflicts.c (ira_build_conflicts): Ditto.
10144         * ira.c (update_equiv_regs): Ditto.
10145         * mode-switching.c (create_pre_exit): Ditto.
10146         * regmove.c (find_matches): Ditto.
10147         (regclass_compatible_p): Use TARGET_CLASS_LIKELY_SPILLED_P target hook.
10148         * reload.c (SMALL_REGISTER_CLASS_P): Remove macro.
10149         (small_register_class_p): New inline function.
10150         (push_secondary_reload, find_reusable_reload, find_reloads): Use
10151         small_register_class_p instead of SMALL_REGISTER_CLASS_P.
10152
10153         * config/i386/i386.h (CLASS_LIKELY_SPILLED_P): Remove.
10154         * config/i386/i386.c (ix86_class_likely_spilled_p): New.
10155         (TARGET_CLASS_LIKELY_SPILLED_P): Define.
10156
10157 2010-09-02  Richard Guenther  <rguenther@suse.de>
10158
10159         PR tree-optimization/44937
10160         PR tree-optimization/45412
10161         * ipa-split.c (split_function): Properly remove PHI nodes.
10162
10163 2010-09-02  Joseph Myers  <joseph@codesourcery.com>
10164
10165         * opts.h (struct cl_option): Add warn_message field.
10166         (struct cl_decoded_option): Add warn_message field.
10167         * doc/options.texi (Ignore, Warn): Document.
10168         * opt-functions.awk (needs_state_p): Don't consider aliases or
10169         ignored options to need state saved.
10170         * optc-gen.awk: Handle Warn and Ignore.
10171         * opth-gen.awk: Output OPT_SPECIAL_ignore.
10172         * opts-common.c (decode_cmdline_option): Set warn_message field.
10173         Handle ignored options.
10174         (decode_cmdline_options_to_array, generate_option,
10175         generate_option_input_file): Set warn_message field.
10176         (read_cmdline_option): Generate warnings from warn_message field.
10177         Handle ignored options.
10178         * common.opt (Wunreachable-code, fargument-alias,
10179         fargument-noalias, fargument-noalias-global,
10180         fargument-noalias-anything, fcse-skip-blocks, fforce-addr,
10181         floop-optimize, frerun-loop-opt, fsched2-use-traces, fsee,
10182         fstrength-reduce, ftree-store-ccp, ftree-store-copy-prop,
10183         ftree-salias): Mark Ignore.
10184         * config/i386/i386.h (CC1_CPU_SPEC_1): Don't handle -mcpu,
10185         -mintel-syntax and -mno-intel-syntax here.
10186         * config/i386/i386.opt (mcpu=, mintel-syntax): Define as aliases
10187         using Warn.
10188         * opts.c (common_handle_option): Don't handle options marked as
10189         ignored.
10190         (enable_warning_as_error): Handle ignored options.
10191
10192 2010-09-02  Joseph Myers  <joseph@codesourcery.com>
10193
10194         PR driver/44076
10195         * opts.h (struct cl_option): Add alias_arg, neg_alias_arg and
10196         alias_target fields.
10197         * opt-functions.awk (opt_sanitized_name): Don't handle
10198         finline-limit=, Wlarger-than= and ftemplate-depth= specially.
10199         * optc-gen.awk: Generate alias fields.
10200         * opth-gen.awk: Explicitly give values for OPT_* enum constants.
10201         Don't generate such constants for aliases.
10202         * opts-common.c (generate_canonical_option): New.
10203         (decode_cmdline_option): Handle aliases.  Use
10204         generate_canonical_option for known options instead of copying the
10205         input option text.
10206         * doc/options.texi (Alias): Document.
10207         * common.opt (W, Wlarger-than-, aux-info=, finline-limit-,
10208         fstack-check, specs): Mark as aliases.
10209         * gcc.c (driver_handle_option): Canonicalize -L options to joined
10210         arguments.
10211         (driver_handle_option): Don't handle OPT_specs.
10212         * opts.c (common_handle_option): Don't handle options marked as
10213         aliases.
10214         (enable_warning_as_error): Handle aliases.
10215         * stor-layout.c (layout_decl): Use OPT_Wlarger_than_ instead of
10216         OPT_Wlarger_than_eq.
10217         * tree-optimize.c (tree_rest_of_compilation): Use
10218         OPT_Wlarger_than_ instead of OPT_Wlarger_than_eq.
10219
10220 2010-09-02  Uros Bizjak  <ubizjak@gmail.com>
10221
10222         * config/i386/i386.md (nonmemory_operand): New mode attribute.
10223         (push memory peephole2): Macroize peepholes using SWI mode iterator.
10224         (move immediate to memory peephole2): Macroize peepholes using
10225         SWI124 mode iterator.
10226         (non-pairable NOT peephole2): Macroize peepholes using SWI124
10227         mode iterator.
10228         (simple lea add peephole2): Macroize peepholes using SWI48
10229         mode iterator.
10230         (simple lea mult peephole2): Ditto.
10231         (imul by 3,5,9 to lea peephole2): Ditto.
10232         (mov $-1, reg peephole2): Macroize peepholes using SWI248
10233         mode iterator.
10234         (imul $32bit_imm,mem,reg peephole2): Ditto.
10235         (imul $8/16bit_imm,regmem,reg peephole2): Ditto.
10236
10237 2010-09-02  Ian Bolton  <ian.bolton@arm.com>
10238
10239         * tree-ssa-loop-prefetch.c: Fix comment at head of file.
10240
10241 2010-09-02  Olivier Hainque  <hainque@adacore.com>
10242
10243         PR middle-end/44763
10244         * ira-color.c (SORTGT): New macro, helper for qsort callbacks.
10245         (allocno_priority_compare_func): Use it instead of a straight
10246         difference computation over priorities.
10247
10248 2010-09-02  Andi Kleen  <ak@linux.intel.com>
10249
10250         * opts.c (common_handle_option): Fix OPT_fwhopr/fwhopr_ handling.
10251
10252 2010-09-02  Ira Rosen  <irar@il.ibm.com>
10253
10254         * tree-vectorizer.h (get_later_stmt): New function.
10255         (vect_analyze_data_ref_dependences): Add argument.
10256         * tree-vect-loop.c (vect_analyze_loop): Update call to
10257         vect_analyze_data_ref_dependences.
10258         * tree-vect-data-refs.c (vect_drs_dependent_in_basic_block):
10259         New function.
10260         (vect_analyze_data_ref_dependence): Add argument for basic block
10261         dependencies. Check dependencies in basic block vectorization.
10262         (vect_analyze_data_ref_dependences): Add argument and update call to
10263         vect_analyze_data_ref_dependences.
10264         * tree-vect-slp.c (vect_find_last_store_in_slp_instance): New.
10265         (vect_bb_vectorizable_with_dependencies): New.
10266         (vect_slp_analyze_bb): Check dependencies in basic block.
10267         (vect_schedule_slp_instance): Insert stores before the last store in
10268         SLP instance.
10269
10270 2010-09-02  Uros Bizjak  <ubizjak@gmail.com>
10271
10272         PR target/45476
10273         * config/i386/freebsd.h (LIBGCC2_HAS_TF_MODE,
10274         LIBGCC2_TF_CEXT, TF_SIZE): New defines.
10275
10276 2010-09-01  Jakub Jelinek  <jakub@redhat.com>
10277
10278         PR middle-end/45458
10279         * bb-reorder.c (add_labels_and_missing_jumps): Treat
10280         bbs ending with throwing insns like blocks ending with a call.
10281         (fix_up_fall_thru_edges): Likewise.
10282
10283 2010-09-01  Nathan Froyd  <froydnj@codesourcery.com>
10284
10285         * config/m32c/m32c-protos.h (m32c_function_arg): Delete.
10286         (m32c_function_arg_advance): Delete.
10287         * config/m32c/m32c.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
10288         * config/m32c/m32c.c (m32c_function_arg): Make static.  Adjust
10289         comments.  Take a const_tree and a bool.  Declare.
10290         (m32c_function_arg_advance): Likewise.
10291         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
10292
10293 2010-09-01  Uros Bizjak  <ubizjak@gmail.com>
10294
10295         PR target/45476
10296         * config/i386/cygming.h (LIBGCC2_HAS_TF_MODE,
10297         LIBGCC2_TF_CEXT, TF_SIZE): Move from ...
10298         * config/i386/mingw32.h: ... here.
10299
10300 2010-09-01  Andi Kleen  <ak@linux.intel.com>
10301
10302         PR lto/45475
10303         * lto-streamer-in.c (lto_input_ts_target_option): Add.
10304         (lto_input_tree_pointers): Call lto_input_ts_target_option.
10305         * lto-streamer-out (lto_output_ts_target_option): Add.
10306         (lto_output_tree_pointers): Call lto_output_ts_target_option.
10307
10308 2010-09-01  Kai Tietz  <kai.tietz@onevision.com>
10309
10310         PR/target 45452
10311         * config/i386/cygwin.h: Change order of specified import libraries.
10312         * config/i386/mingw32.h: Likewise.
10313         * config/i386/t-cygwin: Likewise.
10314         * config/i386/t-mingw32: Likewise.
10315         * config/i386/t-mingw-w32: Likewise.
10316         * config/i386/t-mingw-w64: Likewise.
10317
10318 2010-09-01  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
10319
10320         * config/arm/neon-schedgen.ml (core): New type.
10321         (allCores): List of supported cores.
10322         (availability_table): Add supported cores.
10323         (collate_bypasses): Accept core as a parameter.
10324         (worst_case_latencies_and_bypasses): Accept core as a parameter.
10325         (emit_insn_reservations): Accept core as a parameter.  Use tuneStr
10326         and coreStr to get tune attribute and prefix for functional units.
10327         (emit_bypasses): Accept core name and use it.
10328         (calculate_per_core_availability_table): New.
10329         (filter_core): New.
10330         (calculate_core_availability_table): New.
10331         (main): Use calculate_core_availablity_table.
10332         * config/arm/cortex-a8-neon.md: Update copyright year.
10333         Regenerated from ml file and merged in.
10334         (neon_mrrc, neon_mrc): Rename to cortex_a8_neon_mrrc and
10335         cortex_a8_neon_mrc.
10336
10337 2010-09-01  Ian Bolton  <ian.bolton@arm.com>
10338
10339         * Makefile.in (tree-switch-conversion.o): Update dependencies.
10340
10341 2010-09-01  Richard Guenther  <rguenther@suse.de>
10342
10343         * alias.c (ao_ref_from_mem): Adjust.
10344         * builtins.c (get_object_alignment): Likewise.
10345         * cfgexpand.c (expand_debug_expr): Likewise.
10346         * gimple.c (get_base_address): Likewise.
10347         * tree-dfa.c (get_ref_base_and_extent): Likewise.
10348         (get_addr_base_and_unit_offset): Likewise.  Fix for
10349         both TMR_SYMBOL and TMR_BASE being set.
10350         * tree-eh.c (tree_could_trap_p): Likewise.
10351         * gimplify.c (gimplify_expr): Do not attempt to gimplify
10352         TMR_SYMBOL.  Always gimplify TMR_BASE.
10353         * tree-cfg.c (verify_types_in_gimple_reference): Verify
10354         TMR_BASE if there is a TMR_SYMBOL.
10355         * tree-pretty-print.c (dump_generic_node): Adjust.
10356         * tree-ssa-address.c (addr_for_mem_ref): Likewise.
10357         (tree_mem_ref_addr): Likewise.
10358         (create_mem_ref_raw): Likewise.
10359         (move_fixed_address_to_symbol): Likewise.
10360         (create_mem_ref): Likewise.
10361         (dump_mem_address): Likewise.
10362         * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Adjust.
10363         Fix for both TMR_SYMBOL and TMR_BASE being set.
10364         (indirect_refs_may_alias_p): Likewise.
10365         * tree-ssa-operands.c (get_tmr_operands): Adjust.
10366         * tree.def (TARGET_MEM_REF): Adjust documentation.
10367
10368 2010-09-01  Uros Bizjak  <ubizjak@gmail.com>
10369
10370         * config/i386/i386.h (enum ix86_tune_indices) <X86_TUNE_SINGLE_POP>:
10371         Rename from X86_TUNE_ADD_ESP_4.
10372         <IX86_TUNE_DOUBLE_POP>: Rename from X86_TUNE_ADD_ESP_8.
10373         <IX86_TUNE_SINGLE_PUSH>: Rename from X86_TUNE_SUB_ESP_4.
10374         <IX86_TUNE_DOUBLE_PUSH>: Rename from X86_TUNE_SUB_ESP_8.
10375         (TARGET_SINGLE_POP): Rename from TARGET_ADD_ESP_4.
10376         (TARGET_DOUBLE_POP): Rename from TARGET_ADD_ESP_8.
10377         (TARGET_SINGLE_PUSH): Rename from TARGET_SUB_ESP_4.
10378         (TARGET_DOUBLE_POP): Rename from TARGET_SUB_ESP_8.
10379         * config/i386/i386.c (initial_ix86_tune_features)
10380         <X86_TUNE_SINGLE_POP>: Invert members.
10381         <X86_TUNE_DOUBLE_POP>: Ditto.
10382         <X86_TUNE_SINGLE_PUSH>: Ditto.
10383         <X86_TUNE_DOUBLE_PUSH>: Ditto.
10384         * config/i386/i386.md (*pop<mode>1): Rename from pop<mode>1.
10385         No longer exported.
10386         (push peephole2 patterns): Macroize peepholes using P mode iterator.
10387         Adjust for renamed TARGET_{SINGLE,DOUBLE}_PUSH defines.
10388         (pop peephole2 patterns): Macroize peepholes using P mode iterator.
10389         Adjust for renamed TARGET_{SINGLE,DOUBLE}_POP defines.
10390
10391 2010-09-01  Eric Botcazou  <ebotcazou@adacore.com>
10392
10393         * gimplify.c (gimplify_init_constructor): Do not create a temporary for
10394         a volatile LHS if the constructor has only one element.
10395
10396 2010-09-01  Mikael Pettersson  <mikpe@it.uu.se>
10397
10398         PR bootstrap/45321
10399         * tree.c (stdarg_p): Make fntype parameter const.
10400         * tree.h (stdarg_p): Likewise.
10401         (function_args_iterator): Remove unused fntype field.
10402         (function_args_iter_init): Do not initialize fntype
10403         field.  Make fntype parameter const.
10404
10405 2010-09-01  Richard Guenther  <rguenther@suse.de>
10406
10407         * tree-vrp.c (adjust_range_with_scev): Use number of iteration
10408         estimate.
10409         (vrp_visit_phi_node): Delay using SCEV till we balloon the range.
10410         (execute_vrp): Compute number of iteration estimates.
10411         * cfgloop.h (estimate_numbers_of_iterations_loop): Adjust prototype.
10412         * tree-flow.h (estimate_numbers_of_iterations): Likewise.
10413         * tree-data-ref.c (estimated_loop_iterations): Adjust.
10414         * tree-ssa-loop-niter.c (estimate_numbers_of_iterations_loop):
10415         Infer loop bounds from undefined behavior based on a new parameter.
10416         (estimate_numbers_of_iterations): Likewise.
10417         (scev_probably_wraps_p): Adjust.
10418         * tree-ssa-loop.c (tree_ssa_loop_bounds): Likewise.
10419
10420 2010-09-01  Nick Clifton  <nickc@redhat.com>
10421
10422         * config/stormy16/stormy16.c: Use REG_P, MEM_P and CONST_INT_P
10423         where appropriate.
10424         (xstormy16_legitimate_address_p): Use true and false instead of 1
10425         and 0.
10426         (xstormy16_expand_prologue): Delete unused local variable 'insn'.
10427         (xstormy16_function_arg): Use FIRST_ARGUMENT_REGNUM in place of
10428         magic constant 2.
10429         (xstormy16_expand_call): Fix comment at start of function.
10430
10431 2010-09-01  Nick Clifton  <nickc@redhat.com>
10432
10433         * config/rx/rx.c (rx_expand_prologue): Do not adjust frame size
10434         when pushing accumulator register.
10435         (rx_get_stack_layout): Always save call clobbered registers inside
10436         interrupt handlers.
10437         * config/rx/rx-modes.def: Fix descriptive comment at start of file.
10438
10439 2010-09-01  Uros Bizjak  <ubizjak@gmail.com>
10440
10441         * config.gcc (i[34567]86-*-freebsd*, x86_64-*-freebsd*): Add
10442         i386/t-fprules-softfp and soft-fp/t-softfp to tmake_file.
10443
10444         * libgcc-std.ver (GCC_4.6.0): Define version.
10445
10446 2010-08-31  Eric Botcazou  <ebotcazou@adacore.com>
10447
10448         * tree-nested.c (convert_all_function_calls): Iterate until after the
10449         sum of static chains in the nest doesn't change.
10450
10451 2010-08-31  Anatoly Sokolov  <aesok@post.ru>
10452
10453         * config/m32c/m32c.c (classes_intersect): Remove.
10454         (m32c_preferred_reload_class, m32c_secondary_reload_class): Use
10455         reg_classes_intersect_p instead of classes_intersect.
10456         (class_can_hold_mode): Change arguments type from enum reg_class to
10457         reg_class_t.  Use reg_class_contents instead of class_contents.
10458         (m32c_register_move_cost): Make static. Change arguments type from
10459         enum reg_class to reg_class_t. Use reg_classes_intersect_p instead of
10460         classes_intersect. Use reg_class_contents instead of class_contents.
10461         (m32c_memory_move_cost): Make static. Change arguments type from
10462         enum reg_class to reg_class_t.
10463         (TARGET_REGISTER_MOVE_COST, TARGET_MEMORY_MOVE_COST): Define.
10464         * config/m32c/m32c.h (REGISTER_MOVE_COST, MEMORY_MOVE_COST): Remove.
10465         * config/m32c/m32c-protos.h (m32c_register_move_cost,
10466         m32c_memory_move_cost): Remove.
10467
10468 2010-08-31  Nathan Froyd  <froydnj@codesourcery.com>
10469
10470         * config/arm/arm-protos.h (arm_function_arg_advance): Delete.
10471         (arm_function_arg): Delete.
10472         (arm_needs_doubleword_align): Take a const_tree.
10473         * config/arm/arm.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
10474         * config/arm/arm.c (aapcs_select_call_coproc): Take a const_tree.
10475         (aapcs_layout_arg, arm_needs_doubleword_align): Likewise.
10476         (arm_function_arg): Make static.  Take a const_tree and a bool.
10477         (arm_function_arg_advance): Likewise.
10478         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
10479
10480 2010-08-31  Andi Kleen  <ak@linux.intel.com>
10481
10482         * common.opt (fwhopr=): Update for -fwhopr=jobserver
10483         * doc/invoke.texi (fwhopr): Document -fwhopr=jobserver.
10484         * lto-wrapper.c (run_gcc): Add jobserver mode.
10485         * opts.c (common_handle_option): Fix OPT_fwhopr for non numeric
10486         argument.
10487
10488 2010-08-31  Uros Bizjak  <ubizjak@gmail.com>
10489
10490         * config/i386/i386.md (popdi1): Rewrite using POST_INC memory operand.
10491         (popsi1): Ditto.
10492         (*popdi1_epilogue): Ditto.
10493         (*popsi1_epilogue): Ditto.
10494         (popsi, popdi peephole2 patterns): Update peepholes for changed
10495         pop{si,di}1 and *pop{si,di}1_epilogue patterns.
10496
10497         (pop<mode>1): Macroize insn from pop{si,di}1 using P code iterator.
10498         (*pop<mode>1_epilogue): Ditto from *pop{si,di}1_epilogue.
10499
10500         * config/i386/i386.c (*ix86_gen_pop1): Remove indirect function.
10501         (override_options): Do not initialize removed ix86_gen_pop1.
10502         (gen_pop): New static function.
10503         (ix86_expand_prologue): Use gen_pop instead of ix86_gen_pop1.
10504         (release_scratch_register_on_entry): Ditto.
10505         (ix86_restore_reg_using_pop): Ditto.
10506         (ix86_expand_epilogue): Ditto.
10507
10508 2010-08-31  Jakub Jelinek  <jakub@redhat.com>
10509
10510         PR middle-end/45461
10511         * builtins.c (dummy_object): Return a MEM_REF instead of INDIRECT_REF.
10512
10513 2010-08-31  Nathan Froyd  <froydnj@codesourcery.com>
10514
10515         * config/fr30/fr30.c (fr30_move_double): Delete `dregno' and extra
10516         semicolons.
10517
10518 2010-08-31  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
10519
10520         * doc/extend.texi: Fix documentation of the return value of
10521         __builtin_choose_expr.
10522
10523 2010-08-31  Nathan Froyd  <froydnj@codesourcery.com>
10524
10525         * config/v850/v850-protos.h (function_arg): Delete.
10526         * config/v850/v850.h (FUNCTION_ARG): Delete.
10527         (FUNCTION_ARG_ADVANCE): Move code to...
10528         * config/v850/v850.c (v850_function_arg_advance): ...here.
10529         (v850_function_arg): Make static.  Take a const_tree and a bool.
10530         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
10531
10532 2010-08-31  Nathan Froyd  <froydnj@codesourcery.com>
10533
10534         * config/m32r/m32r.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Move
10535         these...
10536         (ROUND_ADVANCE, ROUND_ADVANCE_ARG, ROUND_ADVANCE_CUM, PASS_IN_REG_P):
10537         ...and these...
10538         * config/m32r/m32r.c (m32r_function_arg, m32r_function_arg_advance):
10539         ..to here..
10540         (ROUND_ADVANCE, ROUND_ADVANCE_ARG, ROUND_ADVANCE_CUM, PASS_IN_REG_P):
10541         ...and here.
10542         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
10543
10544 2010-08-31  Nathan Froyd  <froydnj@codesourcery.com>
10545
10546         * config/rx/rx-protos.h (rx_function_arg, rx_function_arg_size):
10547         Delete.
10548         * config/rx/rx.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
10549         * config/rx/rx.c (rx_function_arg_size): Make static.
10550         (rx_function_arg): Likewise.
10551         (rx_function_arg_advance): New function.
10552         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
10553
10554 2010-08-31  John Tytgat  <John.Tytgat@aaug.net>
10555
10556         * config/arm/arm.c (arm_override_options): Remove superfluous test.
10557         Fix indentation.
10558
10559 2010-08-31  Eric Botcazou  <ebotcazou@adacore.com>
10560
10561         * dwarf2out.c (gen_decl_die) <CONST_DECL>: Do not skip in Ada.
10562         (dwarf2out_decl) <CONST_DECL>: Likewise.
10563
10564 2010-08-30  Eric Botcazou  <ebotcazou@adacore.com>
10565
10566         Stack usage support
10567         * common.opt (-fstack-usage): New option.
10568         * doc/invoke.texi (Debugging options): Document it.
10569         * builtins.c (expand_builtin_apply): Pass TRUE as 4th argument to
10570         allocate_dynamic_stack_space.
10571         (expand_builtin_alloca): Add 4th bool parameter CANNOT_ACCUMULATE
10572         and propagate it to allocate_dynamic_stack_space.
10573         (expand_builtin) <BUILT_IN_ALLOCA>: Adjust for above change.
10574         * calls.c (initialize_argument_information): Pass TRUE as 4th
10575         argument to allocate_dynamic_stack_space.
10576         (expand_call): Set current_function_has_unbounded_dynamic_stack_size
10577         to 1 when pushing a variable-sized argument onto the stack.  Pass
10578         TRUE as 4th argument to allocate_dynamic_stack_space.
10579         Update current_function_pushed_stack_size.
10580         (emit_library_call_value_1): Likewise.
10581         * explow.c (allocate_dynamic_stack_space): Add 4th bool parameter
10582         CANNOT_ACCUMULATE.  If flag_stack_usage, look into the size and
10583         attempt to find an upper bound.  Remove redundant code for the
10584         SETJMP_VIA_SAVE_AREA case.
10585         * expr.h (allocate_dynamic_stack_space): Add 4th bool parameter.
10586         * function.h (struct stack_usage): New structure.
10587         (current_function_static_stack_size): New macro.
10588         (current_function_dynamic_stack_size): Likewise.
10589         (current_function_pushed_stack_size): Likewise.
10590         (current_function_dynamic_alloc_count): Likewise.
10591         (current_function_has_unbounded_dynamic_stack_size): Likewise.
10592         (current_function_allocates_dynamic_stack_space): Likewise.
10593         (struct function): Add new field 'su'.
10594         * function.c (instantiate_virtual_regs): If SETJMP_VIA_SAVE_AREA,
10595         add the value of the dynamic offset to the dynamic stack usage.
10596         (gimplify_parameters): Set ALLOCA_FOR_VAR_P on call to BUILT_IN_ALLOCA
10597         for variable-sized objects.
10598         (prepare_function_start): Allocate cfun->su if flag_stack_usage.
10599         (rest_of_handle_thread_prologue_and_epilogue): Call output_stack_usage.
10600         * gimplify.c (gimplify_decl_expr): Set ALLOCA_FOR_VAR_P on call to
10601         BUILT_IN_ALLOCA for variable-sized objects.
10602         * output.h (output_stack_usage): Declare.
10603         * toplev.c (stack_usage_file): New file pointer.
10604         (output_stack_usage): New function.
10605         (open_auxiliary_file): Likewise.
10606         (lang_dependent_init): Open file if flag_stack_usage is set.
10607         (finalize): Close file if stack_usage_file is not null.
10608         * tree.h (ALLOCA_FOR_VAR_P): New macro.
10609         * config/alpha/alpha.c (compute_frame_size): New function.
10610         (alpha_expand_prologue): Use it.
10611         (alpha_start_function): Likewise.
10612         (alpha_expand_epilogue): Likewise.  Set stack usage info.
10613         * config/i386/i386.c (ix86_expand_prologue): Likewise.
10614         * config/ia64/ia64.c (ia64_expand_prologue): Likewise.
10615         * config/mips/mips.c (mips_expand_prologue): Likewise.
10616         * config/pa/pa.c (hppa_expand_prologue): Likewise.
10617         * config/rs6000/rs6000.c (rs6000_emit_prologue): Likewise.
10618         * config/sparc/sparc.c (sparc_expand_prologue): Likewise.
10619
10620 2010-08-30  Zdenek Dvorak  <ook@ucw.cz>
10621
10622         PR tree-optimization/45427
10623         * tree-ssa-loop-niter.c (number_of_iterations_ne_max): Rewritten.
10624         Handle the case that the exit is never taken correctly.
10625         (number_of_iterations_ne): Pass exit_must_be_taken to
10626         number_of_iterations_ne_max.
10627
10628 2010-08-30  Catherine Moore  <clm@codesourcery.com>
10629
10630         * config/mips/mips.h (BASE_DRIVER_SELF_SPECS):
10631         Infer -mdspr2 for the the 74K.
10632
10633 2010-08-30  Jakub Jelinek  <jakub@redhat.com>
10634
10635         PR debug/45419
10636         * tree-ssa-live.c (dump_enumerated_decls): Clear the whole wi variable.
10637
10638         PR middle-end/45423
10639         * gimplify.c (goa_stabilize_expr): Handle TRUTH_NOT_EXPR
10640         and TRUTH_{AND,OR,XOR}_EXPR.
10641         * c-parser.c (c_parser_omp_atomic): Handle boolean
10642         {PRE,POST}_{INC,DEC}REMENT.
10643
10644 2010-08-30  Nathan Froyd  <froydnj@codesourcery.com>
10645
10646         * config/xtensa/xtensa-protos.h (function_arg_advance): Delete.
10647         (function_arg): Delete.
10648         * config/xtensa/xtensa.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
10649         (FUNCTION_INCOMING_ARG): Delete.
10650         * config/xtensa/xtensa.c (function_arg_advance): Rename to...
10651         (xtensa_function_arg_advance): ...this.  Make static. Take a const_tree
10652         and a bool.
10653         (function_arg): Rename to...
10654         (xtensa_function_arg_1): ...this.  Make static.  Take a const_tree and
10655         a bool.
10656         (xtensa_function_arg, xtensa_function_incoming_arg): Nex functions.
10657         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
10658         (TARGET_FUNCTION_INCOMING_ARG): Define.
10659
10660 2010-08-30  Richard Guenther  <rguenther@suse.de>
10661
10662         PR tree-optimization/21602
10663         * builtins.c (fold_builtin_memory_op): Fold memmove to memcpy
10664         using points-to information.
10665
10666 2010-08-30  H.J. Lu  <hongjiu.lu@intel.com>
10667
10668         * config/linux.h (TARGET_HAS_SINCOS): Replace | with ||.
10669
10670 2010-08-30  Richard Guenther  <rguenther@suse.de>
10671
10672         PR tree-optimization/45449
10673         * tree-ssa-live.c (remove_unused_locals): Also remove address-taken
10674         variables.
10675
10676 2010-08-30  Joseph Myers  <joseph@codesourcery.com>
10677
10678         * opts.h (CL_ERR_NEGATIVE): Define.
10679         * opts.c (unknown_option_callback): Don't postpone warnings for
10680         options marked with CL_ERR_NEGATIVE.
10681         * opts-common.c (decode_cmdline_option): Set CL_ERR_NEGATIVE error
10682         for negative versions of CL_REJECT_NEGATIVE options.
10683
10684 2010-08-30  Uros Bizjak  <ubizjak@gmail.com>
10685
10686         * config/i386/i386.md (zero_extendsidi2_1): Rename from
10687         zero_extendsidi2_32.
10688         (zero_extend<mode>di2): Macroize insn from zero_extend{qi,hi}di2
10689         using SWI12 mode iterator.
10690         (zero_extendhisi2_and): Merge insn pattern and corresponding spliter
10691         to define_insn_and_split pattern.
10692         (zero_extendqi<mode>2): Macroize expander from zero_extendqi{hi,si}2
10693         using SWI24 mode iterator.
10694         (*zero_extendqi<mode>2_and): Macroize insn from
10695         *zero_extendqi{hi,si}2_and using SWI24 mode iterator.
10696         (*zero_extendqi<mode>2_movzbl_and): Macroize insn from
10697         *zero_extendqihi2_movzbw_and and *zero_extendqisi2_movzbl_and using
10698         SWI24 mode iterator.
10699         (*zero_extendqi<mode>2_movzbl): Ditto from
10700         *zero_extendqi{hi,si}2_movzbl.
10701         (extendsidi2_1): Rename from extendsidi2_32.
10702         (extend<mode>di2): Macroize insn from extend{qi,hi}di2 using
10703         SWI12 mode iterator.
10704
10705 2010-08-29  Eric Botcazou  <ebotcazou@adacore.com>
10706
10707         * config/ia64/ia64.h (HARD_REGNO_NREGS): Return 1 for CCImode in
10708         general purpose registers.
10709         (HARD_REGNO_MODE_OK): Accept CCImode in general purpose registers.
10710         * config/ia64/ia64.md (*movcci): Change to named pattern.  Deal
10711         with general purpose registers and memory operands.  Add associated
10712         CCImode post-reload splitter.
10713         * config/ia64/div.md: Change BImode to CCImode throughout.
10714
10715 2010-08-28  Eric Botcazou  <ebotcazou@adacore.com>
10716
10717         * config/ia64/ia64.md (cstorebi4): Fix thinko.
10718
10719 2010-08-28  Hariharan Sandanagobalane  <hariharan@picochip.com>
10720
10721         * config/picochip/picochip.c (reorder_var_tracking_notes): This
10722         function was dropping debug insns which caused PR45299.
10723
10724 2010-08-28  Uros Bizjak  <ubizjak@gmail.com>
10725
10726         * config/i386/sse.md (extsuffix): New code attribute.
10727         (sse4_1_<code>v8qiv8hi2): Macroize insn from sse4_1_extendv8qiv8hi2
10728         and sse4_1_zero_extendv8qiv8hi2 using any_extend code iterator.
10729         (sse4_1_<code>v4qiv4si2): Ditto from sse4_1_extendv4qiv4si2
10730         and sse4_1_zero_extendv4qiv4si2.
10731         (sse4_1_<code>v2qiv2di2): Ditto from sse4_1_extendv2qiv2di2
10732         and sse4_1_zero_extendv2qiv2di2.
10733         (sse4_1_<code>v4hiv4si2): Ditto from sse4_1_extendv4hiv4si2
10734         and sse4_1_zero_extendv4hiv4si2.
10735         (sse4_1_<code>v2hiv2di2): Ditto from sse4_1_extendv2hiv2di2
10736         and sse4_1_zero_extendv2hiv2di2.
10737         (sse4_1_extendv2siv2di2): Ditto from sse4_1_extendv2siv2di2
10738         and sse4_1_zero_extendv2siv2di2
10739
10740         (<s>mulv8hi3_highpart): Macroize expander from {u,s}mulv8hi3_highpart
10741         using any_extend code iterator.
10742         (*avx_<s>mulv8hi3_highpart): Macroize insn from
10743         *avx_{u,s}mulv8hi3_highpart using any_extend code iterator.
10744         (*<s>mulv8hi3_highpart): Ditto from *{u,s}mulv8hi3_highpart.
10745
10746         * config/i386/i386.c (ix86_expand_sse4_unpack): Update for renamed
10747         gen_sse4_1_sign_extend* functions.
10748         (struct builtin_description bdesc_args): Ditto.
10749
10750 2010-08-27  Xinliang David Li  <davidxl@google.com>
10751
10752         PR/45422
10753         * tree-ssa-loop-ivopts.c (iv_ca_get_num_inv_exprs): Remove.
10754         (iv_ca_set_no_cp): Update used inv expr count.
10755         (iv_ca_set_cp): Ditto.
10756         (iv_ca_new): Initialize new member.
10757         (iv_ca_free): Free memory.
10758
10759 2010-08-27  Nathan Froyd  <froydnj@codesourcery.com>
10760
10761         * config/sh/sh-protos.h (sh_function_arg): Delete.
10762         (sh_function_arg_advance): Delete.
10763         * config/sh/sh.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
10764         (PASS_IN_REG_P): Eliminate cast.
10765         * config/sh/sh.c (sh_function_arg_advance): Make static.  Take a
10766         const_tree and a bool.
10767         (sh_function_arg): Likewise.
10768         (sh_output_mi_thunk): Call sh_function_arg_advance) and
10769         sh_function_arg.
10770         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
10771
10772 2010-08-27  Naveen H.S  <naveen.S@kpitcummins.com>
10773             Kaz Kojima  <kkojima@gcc.gnu.org>
10774
10775         * config/sh/sh.c (push_regs): Emit movml for interrupt handler
10776         when possible.
10777         (sh_expand_epilogue): Likewise.
10778         * config/sh/sh.md (movml_push_banked): New insn.
10779         (movml_pop_banked): Likewise.
10780
10781 2010-08-28  Bernd Schmidt  <bernds@codesourcery.com>
10782
10783         * genautomata.c (gen_regexp_repeat, gen_regexp_allof,
10784         gen_regexp_oneof, gen_regexp_sequence): Use the string found
10785         in vector element 0 rather than the original string when there's
10786         only one element.
10787         (gen_regexp): Remove extra semicolon.
10788
10789         * config/arm/vfp.md (arm_movsi_vfp, thumb2_movsi_vfp, movsf_vfp,
10790         thumb2_movsf_vfp): Set attribute "insn".
10791         * config/arm/arm.md (arm_ashrdi3_1bit, arm_lshrdi3_1bit, not_shiftsi,
10792         not_shiftsi_compare0, not_shiftsi_compare0_scratch, arm_one_cmplsi2,
10793         thumb1_one_cmplsi2, notsi_compare0, notsi_compare0_scratch,
10794         arm_zero_extendsidi2, arm_extendsidi2, thumb1_movdi_insn,
10795         arm_movsi_insn, movhi_insn_arch4, movhi_bytes, arm_movqi_insn,
10796         thumb1_movqi_insn arm32_movhf, thumb1_movhf, arm_movsf_soft_insn,
10797         thumb1_movsf_insn, thumb_movdf_insn, mov_scc, mov_negscc, mov_notscc,
10798         movsicc_insn, movsfcc_soft_insn, and_scc, cond_move, if_move_not,
10799         if_not_move, if_shift_move, if_move_shift, if_shift_shift,
10800         if_not_arith, if_arith_not, cond_move_not): Likewise.
10801
10802 2010-08-23  Michael Meissner  <meissner@linux.vnet.ibm.com>
10803
10804         * config/rs6000/rs6000-protos.h (rs6000_address_for_fpconvert):
10805         New declaration.
10806         (rs6000_allocate_stack_temp): Ditto.
10807         (rs6000_expand_convert_si_to_sfdf): Ditto.
10808
10809         * config/rs6000/rs6000.c (rs6000_override_options): Adjust long
10810         line.  Update the options set if power6 or power7 server/embedded
10811         type options are used.  If we give a warning for no vsx under
10812         -mcpu=power7 -mno-altivec, mark -mvsx as an explicit option.
10813         (rs6000_allocate_stack_temp): New function to allocate a stack
10814         tempoary and adjust the address so it meets either REG+OFFSET or
10815         REG+REG addressing requirements.
10816         (rs6000_address_for_fpconvert): Adjust REG+OFFSET addresses so
10817         that they can be used with the LFIWAX/LFIWZX instrucitons.
10818         (rs6000_expand_convert_si_to_sfdf): New helper funciton for
10819         converting signed/unsigned SImode to either SFmode/DFmode.
10820
10821         * config/rs6000/rs6000.h (TARGET_FCFID): New macros to determine
10822         whether certain instructions can be generated.
10823         (TARGET_FCTIDZ): Ditto.
10824         (TARGET_STFIWX): Ditto.
10825         (TARGET_LFIWAX): Ditto.
10826         (TARGET_LFIWZX): Ditto.
10827         (TARGET_FCFIDS): Ditto.
10828         (TARGET_FCFIDU): Ditto.
10829         (TARGET_FCFIDUS): Ditto.
10830         (TARGET_FCTIDUZ): Ditto.
10831         (TARGET_FCTIWUZ): Ditto.
10832
10833         * config/rs6000/rs6000.md (UNSPEC_FCTIW): New unspec constants.
10834         (UNSPEC_FCTID): Ditto.
10835         (UNSPEC_LFIWAX): Ditto.
10836         (UNSPEC_LFIWZX): Ditto.
10837         (UNSPEC_FCTIWUZ): Ditto.
10838         (rreg): Use correct constraints.
10839         (SI_CONVERT_FP): New mode attribute for floating point conversion
10840         tests.
10841         (E500_CONVERT): Ditto.
10842         (lfiwax): New insns for converting from integer to floating point
10843         utilizing newer instructions.  Attempt to optimize conversions
10844         that come from memory so that we don't load the value into a GPR,
10845         spill it to the stack and reload it into a FPR.
10846         (floatsi<mode>2_lfiwax): Ditto.
10847         (floatsi<mode>2_lfiwax_mem): Ditto.
10848         (floatsi<mode>2_lfiwax_mem2): Ditto.
10849         (lfiwzx): Ditto.
10850         (floatunssi<mode>2_lfiwzx): Ditto.
10851         (floatunssi<mode>2_lfiwzx_mem): Ditto.
10852         (floatunssi<mode>2_lfiwzx_mem2): Ditto.
10853         (floatdidf2_mem): Ditto.
10854         (floatunsdidf2_fcfidu): Ditto.
10855         (floatunsdidf2_mem): Ditto.
10856         (floatunsdisf2): Ditto.
10857         (floatunsdisf2_fcfidus): Ditto.
10858         (floatunsdisf2_mem): Ditto.
10859         (floatsidf2): Add support for LFIWAX/LFIWZX/FCFIDS/FCFIDU/FCFIDUS.
10860         Use FCFID on 32-bit hosts that support it.
10861         (floatsidf2_internal): Ditto.
10862         (floatunssisf2): Ditto.
10863         (floatunssidf2): Ditto.
10864         (floatunssidf2_internal): Ditto.
10865         (floatsisf2): Ditto.
10866         (floatdidf2): Ditto.
10867         (floatdidf2_fpr): Ditto.
10868         (floatunsdidf2): Ditto.
10869         (floatdisf2): Ditto.
10870         (floatdisf2_fcfids): Ditto.
10871         (floatdisf2_internal1): Ditto.
10872         (fixuns_truncsfsi2): Delete, merge into common pattern for both
10873         SF/DF.  Add power7 support.
10874         (fix_truncsfsi2): Ditto.
10875         (fixuns_truncdfsi2): Ditto.
10876         (fixuns_truncdfdi2): Ditto.
10877         (fix_truncdfsi2): Ditto.
10878         (fix_truncdfsi2_internal): Ditto.
10879         (fix_truncdfsi2_internal_gfxopt): Ditto.
10880         (fix_truncdfsi2_mfpgpr): Ditto.
10881         (fctiwz): Ditto.
10882         (btruncdf2): Ditto.
10883         (btruncdf2_fpr): Ditto.
10884         (btructsf2): Ditto.
10885         (ceildf2): Ditto.
10886         (ceildf2_fpr): Ditto.
10887         (ceilsf2): Ditto.
10888         (floordf2): Ditto.
10889         (floordf2_fpr): Ditto.
10890         (floorsf2): Ditto.
10891         (rounddf2): Ditto.
10892         (rounddf2_fpr): Ditto.
10893         (roundsf2): Ditto.
10894         (fix_trunc<mode>si2): Combine SF/DF conversion into one insn.
10895         (fix_trunc<mode>di2): Ditto.
10896         (fixuns_trunc<mode>si2): Ditto.
10897         (fixuns_trunc<mode>di2): Ditto.
10898         (fctiwz_<mode>): Ditto.
10899         (btrunc<mode>2): Ditto.
10900         (btrunc<mode>2_fpr): Ditto.
10901         (ceil<mode>2): Ditto.
10902         (ceil<mode>2_fpr): Ditto.
10903         (floor<mode>2): Ditto.
10904         (float<mode>2_fpr): Ditto.
10905         (round<mode>2): Ditto.
10906         (round<mode>2_fpr): Ditto.
10907         (fix_trunc<mode>si2_stfiwx): New insn for machines with STFIWX.
10908         (fixuns_trunc<mode>si2_stfiwx): Ditto.
10909         (fix_truncdfsi2_internal): Ditto.
10910         (fix_trunc<mode>si2_mem): Combiner pattern to eliminate storing
10911         converted value on stack, loaded into GPR, and then stored into
10912         the final destination.
10913         (fix_trunc<mode>di2_fctidz): New pattern for targets supporting
10914         FCTIDZ.
10915         (lrint<mode>di2): New insn, provide the lrint builtin functions.
10916         (ftruncdf2): Delete, unused.
10917         (fix_trunctfsi2_internal): Use gen_fctiwz_df, not gen_fctiwz.
10918
10919         * config/rs6000/vsx.md (toplevel): Update copyright year.
10920         (VSr2): Use "ws" contraint for DFmode, not "!r#r".
10921         (VSr3): Ditto.
10922
10923 2010-08-27  Basile Starynkevitch  <basile@starynkevitch.net>
10924             Jeremie Salvucci  <jeremie.salvucci@free.fr>
10925
10926         * gengtype.c (output_type_enum): Test the right union member.
10927
10928 2010-08-27  Uros Bizjak  <ubizjak@gmail.com>
10929
10930         PR target/41484
10931         * config/i386/sse.md (sse4_1_extendv8qiv8hi2): Also accept memory
10932         operands for operand 1.
10933         (sse4_1_extendv4qiv4si2): Ditto.
10934         (sse4_1_extendv2qiv2di2): Ditto.
10935         (sse4_1_extendv4hiv4si2): Ditto.
10936         (sse4_1_extendv2hiv2di2): Ditto.
10937         (sse4_1_extendv2siv2di2): Ditto.
10938         (sse4_1_zero_extendv8qiv8hi2): Ditto.
10939         (sse4_1_zero_extendv4qiv4si2): Ditto.
10940         (sse4_1_zero_extendv2qiv2di2): Ditto.
10941         (sse4_1_zero_extendv4hiv4si2): Ditto.
10942         (sse4_1_zero_extendv2hiv2di2): Ditto.
10943         (sse4_1_zero_extendv2siv2di2): Ditto.
10944         (*sse4_1_extendv8qiv8hi2): Remove insn pattern.
10945         (*sse4_1_extendv4qiv4si2): Ditto.
10946         (*sse4_1_extendv2qiv2di2): Ditto.
10947         (*sse4_1_extendv4hiv4si2): Ditto.
10948         (*sse4_1_extendv2hiv2di2): Ditto.
10949         (*sse4_1_extendv2siv2di2): Ditto.
10950         (*sse4_1_zero_extendv8qiv8hi2): Ditto.
10951         (*sse4_1_zero_extendv4qiv4si2): Ditto.
10952         (*sse4_1_zero_extendv2qiv2di2): Ditto.
10953         (*sse4_1_zero_extendv4hiv4si2): Ditto.
10954         (*sse4_1_zero_extendv2hiv2di2): Ditto.
10955         (*sse4_1_zero_extendv2siv2di2): Ditto.
10956
10957 2010-08-27  Nathan Froyd  <froydnj@codesourcery.com>
10958
10959         * config/mips/mips-protos.h (mips_function_arg_advance): Delete
10960         (mips_function_arg): Delete.
10961         (mips_function_arg_boundary): Take a const_tree.
10962         * config/mips/mips.c (mips_function_arg_boundary): Likewise.
10963         (mips_arg_info): Likewise.
10964         (mips_setup_incoming_varargs): Call mips_function_arg_advance
10965         instead of FUNCTION_ARG_ADVANCE.
10966         (mips_function_arg_advance): Adjust prototype.  Make static.
10967         (mips_function_arg): Likewise.
10968         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
10969         * config/mips/mips.h (FUNCTION_ARG_ADVANCE, FUNCTION_ARG): Delete.
10970
10971 2010-08-27  Nathan Froyd  <froydnj@codesourcery.com>
10972
10973         * config/rs6000/rs6000.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
10974         * config/rs6000/rs6000-protos.h (function_arg_advance): Delete.
10975         (function_arg): Delete.
10976         (function_arg_boundary): Take a const_tree.
10977         * config/rs6000/rs6000.c (function_arg_boundary): Likewise.
10978         (rs6000_spe_function_arg): Likewise.
10979         (rs6000_parm_start): Likewise.
10980         (rs6000_arg_size): Likewise.
10981         (rs6000_darwin64_record_arg_advance_recurse): Likewise.
10982         (rs6000_darwin64_record_arg): Likewise.  Take a bool instead of an int.
10983         (rs6000_mixed_function_arg): Likewise.
10984         (function_arg): Rename to...
10985         (rs6000_function_arg): ...this.
10986         (function_arg_advance): Rename to...
10987         (rs6000_function_arg_advance_1): ...this
10988         (rs6000_function_arg_advance): New function.  Call it.
10989         (setup_incoming_varargs): Call rs6000_function_arg_advance_1.
10990         (rs6000_return_in_memory): Adjust call to rs6000_darwin64_record_arg.
10991         (rs6000_function_value): Likewise.
10992         (TARGET_FUNCTION_ARG, TARGET_FUNCTION_ARG_ADVANCE): Define.
10993
10994 2010-08-27  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
10995
10996         * config/arm/arm.md (enabled): Test the value of arch_enabled
10997         rather than just using it.
10998
10999 2010-08-27  Olivier Hainque  <hainque@adacore.com>
11000             Eric Botcazou  <ebotcazou@adacore.com>
11001
11002         * dse.c (group_info.base_mem, get_group_info): Use BLKmode to
11003         cover all the possible offsets from this base.
11004         (scan_reads_nospill): Pass base_mem's mode to canon_true_dependence.
11005
11006 2010-08-26  Jakub Jelinek  <jakub@redhat.com>
11007
11008         PR tree-optimization/44485
11009         * calls.c (flags_from_decl_or_type): For const or pure
11010         noreturn functions return ECF_LOOPING_CONST_OR_PURE|ECF_NORETURN
11011         together with ECF_CONST resp. ECF_PURE.
11012         * builtins.c (expand_builtin): Use flags_from_decl_or_type
11013         instead of querying flags directly.
11014         * tree-ssa-loop-niter.c (finite_loop_p): Likewise.
11015         * tree-ssa-dce.c (find_obviously_necessary_stmts): Likewise.
11016
11017 2010-08-26  Richard Guenther  <rguenther@suse.de>
11018
11019         PR tree-optimization/45255
11020         * tree.c (decl_address_invariant_p): DECL_DLLIMPORT_P statics
11021         and externals are also invariant.
11022
11023 2010-08-25  Jakub Jelinek  <jakub@redhat.com>
11024
11025         PR rtl-optimization/44858
11026         * combine.c (try_combine): If recog_for_combine added CLOBBERs to
11027         newi2pat, make sure they don't affect newpat.
11028
11029         PR rtl-optimization/45400
11030         * combine.c (simplify_shift_const_1) <case SUBREG>: Only use
11031         SUBREG_REG if both modes are of MODE_INT class.
11032
11033 2010-08-25  Julian Brown  <julian@codesourcery.com>
11034
11035         * config/arm/arm.c (arm_issue_rate): Return 2 for Cortex-A5.
11036         * config/arm/arm.md (generic_sched): No for Cortex-A5.
11037         (generic_vfp): Likewise.
11038         (cortex-a5.md): Include.
11039         * config/arm/cortex-a5.md: New.
11040
11041 2010-08-25  Richard Guenther  <rguenther@suse.de>
11042
11043         * alias.c (get_alias_set): Assign a single alias-set to all pointers.
11044         * gimple.c (gimple_get_alias_set): Remove special handling
11045         for pointers.
11046
11047 2010-08-25  Bernd Schmidt  <bernds@codesourcery.com>
11048
11049         PR middle-end/45355
11050         * combine.c (try_combine): Use reg_overlap_mentioned_p rather than
11051         dead_or_set_p when computing i0_feeds_i2_n.
11052
11053         * combine.c (find_split_point): Undo canonicalization of multiply-add
11054         to (minus x (mult)) when it seems likely that this will increase the
11055         chances of a split.
11056
11057 2010-08-25  Richard Guenther  <rguenther@suse.de>
11058
11059         PR lto/44562
11060         * lto-streamer.c (lto_record_common_node): Do not mess with
11061         TYPE_CANONICAL when not in lto.
11062         * gimple.c (gimple_register_type): Likewise.
11063
11064 2010-08-25  Richard Guenther  <rguenther@suse.de>
11065
11066         PR tree-optimization/45316
11067         * tree-ssa-pre.c (eliminate): Properly clean EH info.
11068
11069 2010-08-25  Richard Guenther  <rguenther@suse.de>
11070
11071         PR tree-optimization/45393
11072         * tree-ssa-math-opts.c (execute_cse_sincos_1): Properly transfer
11073         and clean EH info.  Avoid SSA update.
11074         (execute_cse_sincos): Cleanup the CFG if it has changed.
11075
11076 2010-08-25  Richard Guenther  <rguenther@suse.de>
11077
11078         PR middle-end/45379
11079         * emit-rtl.c (set_mem_attributes_minus_bitpos): Handle
11080         TARGET_MEM_REF in alignment computation.
11081
11082 2010-08-25  Jakub Jelinek  <jakub@redhat.com>
11083
11084         PR tree-optimization/45059
11085         * tree-ssa-reassoc.c (eliminate_redundant_comparison): Strip useless
11086         type conversions from newop{1,2}.  Assert t is a comparison and
11087         newop{1,2} after the stripping are gimple vals.
11088
11089 2010-08-25  Tejas Belagod  <tejas.belagod@arm.com>
11090
11091         * config/arm/iterators.md (VU, SE, V_widen_l): New.
11092         (V_unpack, US): New.
11093         * config/arm/neon.md (vec_unpack<US>_hi_<mode>): Expansion for vmovl.
11094         (vec_unpack<US>_lo_<mode>): Likewise.
11095         (neon_vec_unpack<US>_hi_<mode>): Instruction pattern for vmovl.
11096         (neon_vec_unpack<US>_lo_<mode>): Likewise.
11097         (vec_widen_<US>mult_lo_<mode>): Expansion for vmull.
11098         (vec_widen_<US>mult_hi_<mode>): Likewise.
11099         (neon_vec_<US>mult_lo_<mode>"): Instruction pattern for vmull.
11100         (neon_vec_<US>mult_hi_<mode>"): Likewise.
11101         (neon_unpack<US>_<mode>): Widening move intermediate step for
11102         vectorizing without -mvectorize-with-neon-quad.
11103         (neon_vec_<US>mult_<mode>): Widening multiply intermediate step
11104         for vectorizing without -mvectorize-with-neon-quad.
11105         * config/arm/predicates.md (vect_par_constant_high): Check for
11106         high-half lanes of a vector.
11107         (vect_par_constant_low): Check for low-half lanes of a vector.
11108
11109 2010-08-24  Sebastian Pop  <sebastian.pop@amd.com>
11110
11111         * tree-if-conv.c (struct ifc_dr): New.
11112         (IFC_DR): New.
11113         (DR_WRITTEN_AT_LEAST_ONCE): New.
11114         (DR_RW_UNCONDITIONALLY): New.
11115         (memref_read_or_written_unconditionally): Use the cached values
11116         when possible.
11117         (write_memref_written_at_least_once): Same.
11118         (if_convertible_loop_p): Initialize and free DR->aux fields.
11119
11120 2010-08-24  Sebastian Pop  <sebastian.pop@amd.com>
11121
11122         * gimple.c (gimple_could_trap_p_1): Not static anymore.
11123         Pass an extra bool parameter include_mem.
11124         (gimple_could_trap_p): Adjust call to gimple_could_trap_p_1.
11125         (gimple_assign_rhs_could_trap_p): Same.
11126         * gimple.h (gimple_could_trap_p_1): Declared.
11127         * tree-data-ref.h (same_data_refs_base_objects): New.
11128         (same_data_refs): New.
11129         * tree-if-conv.c (memrefs_read_or_written_unconditionally): New.
11130         (write_memrefs_written_at_least_once): New.
11131         (ifcvt_memrefs_wont_trap): New.
11132         (operations_could_trap): New.
11133         (ifcvt_could_trap_p): New.
11134         (if_convertible_gimple_assign_stmt_p): Call ifcvt_could_trap_p.
11135         Gets a vector of data refs.
11136         (if_convertible_stmt_p): Same.
11137         (if_convertible_loop_p_1): New.
11138         (if_convertible_loop_p): Call if_convertible_loop_p_1.
11139
11140 2010-08-24  Sebastian Pop  <sebastian.pop@amd.com>
11141
11142         * common.opt (ftree-loop-if-convert-stores): New flag.
11143         * doc/invoke.texi (ftree-loop-if-convert-stores): Documented.
11144         * tree-if-conv.c (ifc_temp_var): Pass an extra parameter GSI.  Insert
11145         the created statement before GSI.
11146         (if_convertible_phi_p): Allow virtual phi nodes when
11147         flag_loop_if_convert_stores is set.
11148         (if_convertible_gimple_assign_stmt_p): Allow memory reads and writes
11149         Do not handle types that do not match is_gimple_reg_type.
11150         Remove loop and bb parameters.  Call gimple_could_trap_p instead of
11151         when flag_loop_if_convert_stores is set, as LHS can contain
11152         memory refs.
11153         (if_convertible_stmt_p): Remove loop and bb parameters.  Update calls
11154         to if_convertible_gimple_assign_stmt_p.
11155         (if_convertible_loop_p): Update call to if_convertible_stmt_p.
11156         (replace_phi_with_cond_gimple_assign_stmt): Renamed
11157         predicate_scalar_phi.  Do not handle virtual phi nodes.
11158         (ifconvert_phi_nodes): Renamed predicate_all_scalar_phis.
11159         Call predicate_scalar_phi.
11160         (insert_gimplified_predicates): Insert the gimplified predicate of a BB
11161         just after the labels for flag_loop_if_convert_stores, otherwise
11162         insert the predicate in the end of the BB.
11163         (predicate_mem_writes): New.
11164         (combine_blocks): Call predicate_all_scalar_phis.  When
11165         flag_loop_if_convert_stores is set, call predicate_mem_writes.
11166         (tree_if_conversion): Call mark_sym_for_renaming when
11167         flag_loop_if_convert_stores is set.
11168         (main_tree_if_conversion): Return TODO_update_ssa_only_virtuals when
11169         flag_loop_if_convert_stores is set.
11170
11171 2010-08-24  Anatoly Sokolov  <aesok@post.ru>
11172
11173         * config/pa/pa.c (hppa_register_move_cost, pa_libcall_value,
11174         pa_function_value_regno_p, pa_print_operand_punct_valid_p): New.
11175         (pa_function_value): Make static.
11176         (override_options): Rename to...
11177         (pa_option_override): ...this. Make static.
11178         (TARGET_PRINT_OPERAND_PUNCT_VALID_P, TARGET_REGISTER_MOVE_COST,
11179         TARGET_LIBCALL_VALUE, TARGET_FUNCTION_VALUE_REGNO_P,
11180         TARGET_OPTION_OVERRIDE): Define.
11181         * config/pa/pa.h (OVERRIDE_OPTIONS, FUNCTION_VALUE_REGNO_P,
11182         LIBCALL_VALUE, REGISTER_MOVE_COST, PRINT_OPERAND_PUNCT_VALID_P):
11183         Remove.
11184         * config/pa/pa-protos.h (override_options): Remove.
11185
11186 2010-08-24  Richard Guenther  <rguenther@suse.de>
11187
11188         PR middle-end/45379
11189         * tree-ssa-address.c (create_mem_ref_raw): Drop to MEM_REF
11190         if addr->index is NULL or zero.
11191         * tree-ssa-alias.c (indirect_refs_may_alias_p): Handle
11192         TARGET_MEM_REF more properly.
11193         (indirect_ref_may_alias_decl_p): Likewise.
11194         * emit-rtl.c (set_mem_attributes_minus_bitpos): Keep TARGET_MEM_REFs.
11195         * alias.c (ao_ref_from_mem): Handle TARGET_MEM_REF more properly.
11196
11197 2010-08-23  Anatoly Sokolov  <aesok@post.ru>
11198
11199         * config/m32c/m32c.c (m32c_function_value_regno_p): Make static.
11200         (m32c_override_options): Rename to...
11201         (m32c_option_override): ...this. Make static.
11202         (TARGET_FUNCTION_VALUE_REGNO_P, TARGET_OPTION_OVERRIDE): Define.
11203         * config/m32c/m32c.h (OVERRIDE_OPTIONS, FUNCTION_VALUE_REGNO_P):
11204         Remove.
11205         * config/m32c/m32c-protos.h (m32c_override_options,
11206         m32c_function_value_regno_p): Remove.
11207
11208 2010-08-23  Changpeng Fang  <changpeng.fang@amd.com>
11209
11210         * tree-ssa-loop-prefetch.c (gather_memory_references_ref) :
11211         Fix a typo in a previous commit.
11212
11213 2010-08-23  Kai Tietz  <kai.tietz@onevision.com>
11214
11215         * tree-vect-loop.c (vect_get_single_scalar_iteraion_cost):
11216         Pre-initialize innerloop_iters to one.
11217
11218 2010-08-23  Changpeng Fang  <changpeng.fang@amd.com>
11219
11220         * tree-flow.h (may_be_nonaddressable_p): New definition. Make the
11221         existing static function global.
11222
11223         * tree-ssa-loop-ivopts.c (may_be_nonaddressable_p): This function
11224         is changed to global.
11225
11226         * tree-ssa-loop-prefetch.c (gather_memory_references_ref): Call
11227         may_be_nonaddressable_p on base, and don't collect this reference
11228         if the address of the base could not be taken.
11229
11230 2010-08-23  Michael Meissner  <meissner@linux.vnet.ibm.com>
11231
11232         * config/rs6000/rs6000.opt (-mveclibabi=mass): New option to
11233         enable the compiler to autovectorize mathmetical functions for
11234         power7 using the Mathematical Acceleration Subsystem library.
11235
11236         * config/rs6000/rs6000.c (rs6000_veclib_handler): New variable to
11237         handle which vector math library we have.
11238         (rs6000_override_options): Add -mveclibabi=mass support.
11239         (rs6000_builtin_vectorized_libmass): New function to handle auto
11240         vectorizing math functions that are in the MASS library.
11241         (rs6000_builtin_vectorized_function): Call it.
11242
11243         * doc/invoke.texi (RS/6000 and PowerPC Options): Document
11244         -mveclibabi=mass.
11245
11246 2010-08-22  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
11247
11248         PR boehm-gc/34544
11249         * gthr-posix.h (__gthread_active_init): Delete.
11250         (__gthread_active_p): Do activity check here.
11251         Don't include errno.h on hppa-hpux.  Update comment.
11252         * gthr-posix95.h (__gthread_active_init): Delete.
11253         (__gthread_active_p): Do activity check here.
11254         Don't include errno.h on hppa-hpux.  Update comment.
11255         * config.gcc (hppa[12]*-*-hpux11*): Define extra_parts.
11256         * config/pa/pa64-hpux.h (LIB_SPEC): When -static is specified, only
11257         add -lpthread when -mt or -pthread is specified.
11258         * config/pa/pa-hpux11.h (LIB_SPEC): likewise.
11259         (LINK_GCC_C_SEQUENCE_SPEC): Define.
11260         * config/pa/t-pa-hpux11 (LIBGCCSTUB_OBJS): Define.
11261         (stublib.c, pthread_default_stacksize_np-stub.o,
11262         pthread_mutex_lock-stub.o, pthread_mutex_unlock-stub.o,
11263         $(T)libgcc_stub.a): Add methods.
11264         * config/pa/t-pa64 (LIBGCCSTUB_OBJS): Add pthread stubs.
11265         (stublib.c, pthread_default_stacksize_np-stub.o,
11266         pthread_mutex_lock-stub.o, pthread_mutex_unlock-stub.o): Add methods.
11267         * config/pa/stublib.c (pthread_default_stacksize_np, pthread_mutex_lock,
11268         pthread_mutex_unlock): New stubs.
11269
11270 2010-08-22  Joseph Myers  <joseph@codesourcery.com>
11271
11272         * Makefile.in (gccspec.o, cppspec.o): Update dependencies.
11273         * common.opt (L, nodefaultlibs, nostdlib, pg, static): New
11274         options.
11275         * config/avr/avr.h (LIBSTDCXX): Remove initial "-l".
11276         * config/freebsd.h (MATH_LIBRARY_PROFILE): Remove initial "-l".
11277         * config/i386/djgpp.h (LIBSTDCXX): Remove initial "-l".
11278         * config/rs6000/aix.h (LIBSTDCXX_STATIC): Remove initial "-l".
11279         * config/s390/tpf.h (MATH_LIBRARY, LIBSTDCXX): Remove initial
11280         "-l".
11281         * cppspec.c: Include opts.h.
11282         (lang_specific_driver): Use cl_decoded_option structures.
11283         * doc/tm.texi.in (MATH_LIBRARY): Update documentation.
11284         * doc/tm.texi: Regenerate.
11285         * gcc.c (translate_options): Translate -d to -foutput-class-dir=.
11286         (driver_handle_option): Allow driver options needing no special
11287         processing.
11288         (process_command): Decode options before call to
11289         lang_specific_driver.  Pass decoded options to
11290         lang_specific_driver.
11291         * gcc.h (lang_specific_driver): Update prototype.
11292         * gccspec.c: Include opts.h.
11293         (lang_specific_driver): Use cl_decoded_option structures.
11294         * opts-common.c (option_ok_for_language, generate_option,
11295         generate_option_input_file): New.
11296         (decode_cmdline_option): Use option_ok_for_language.
11297         (decode_cmdline_options_to_array): Use generate_option_input_file.
11298         (handle_generated_option): Use generate_option.
11299         * opts.h (generate_option, generate_option_input_file): Declare.
11300
11301 2010-08-22  Anatoly Sokolov  <aesok@post.ru>
11302
11303         * config/mips/mips.c (mips_override_options): Rename to...
11304         (mips_option_override): ...this. Make static.
11305         (TARGET_OPTION_OVERRIDE): Define.
11306         (mips_in_small_data_p): Update comment.
11307         * config/mips/mips.h (OVERRIDE_OPTIONS): Remove.
11308         (FIXED_REGISTERS): Update comment.
11309         * config/mips/mips-protos.h (mips_override_options): Remove.
11310
11311 2010-08-21  Olivier Hainque  <hainque@adacore.com>
11312
11313         * config/rs6000/vxworks.h (TARGET_OS_CPP_BUILTINS): Define __PPC__.
11314
11315 2010-08-21  Olivier Hainque  <hainque@adacore.com>
11316
11317         * config/rs6000/vxworks.h (PREFERRED_STACK_BOUNDARY,
11318         ABI_STACK_BOUNDARY): Ensure STACK_BOUNDARY is honored despite EABI.
11319
11320 2010-08-20  Jan Hubicka  <jh@suse.cz>
11321
11322         * tree-pass.h (pass_ipa_cdtor_merge): New function.
11323         * cgraphunit.c (static_ctors, static_dtors): Move to ipa.c; make
11324         heap allocated.
11325         (record_cdtor_fn): Move to ipa.c; do not test for
11326         have_ctors_dtors.
11327         (build_cdtor): Move to ipa.c; add code avoiding construction
11328         when target have ctors/dtors and there is only one ctor/dtor at given
11329         priority.
11330         (compare_ctor, compare_dtor): Move to ipa.c; use DECL_UID to stabilize
11331         sort; reverse order of constructors.
11332         (cgraph_build_cdtor_fns): Move to ipa.c; rename to build_cdtor_fns.
11333         (cgraph_finalize_function): Do not call record_cdtor_fn.
11334         (cgraph_finalize_compilation_unit): Do not call cgraph_build_cdtor_fns.
11335         (cgraph_build_static_cdtor): Move to ipa.c.
11336         * ipa.c: Include target.h and tree-iterator.h.
11337         (cgraph_build_static_cdtor, static_ctors, static_dtors,
11338         record_cdtor_fn, build_cdtor, compare_ctor, compare_dtor,
11339         build_cdtor_fns, ipa_cdtor_merge, gate_ipa_cdtor_merge,
11340         pass_ipa_cdtor_merge): New.
11341         * passes.c (init_optimization_passes): Enqueue pass_ipa_cdtor_merge.
11342         * ipa-prop.c (update_indirect_edges_after_inlining): Avoid out of
11343         bounds access.
11344
11345 2010-08-20  Jan Hubicka  <jh@suse.cz>
11346
11347         PR c++/45307
11348         PR c++/17736
11349         * cgraph.h (cgraph_only_called_directly_p,
11350         cgraph_can_remove_if_no_direct_calls_and_refs_p): Handle
11351         static cdtors.
11352         * cgraphunit.c (cgraph_decide_is_function_needed): Static cdtors
11353         are not needed.
11354         (cgraph_finalize_function): Static cdtors are reachable.
11355         (cgraph_mark_functions_to_output): Use cgraph_only_called_directly_p.
11356
11357 2010-08-20  Jan Hubicka  <jh@suse.cz>
11358
11359         * lto-cgraph.c (lto_output_edge): Use gimple_has_body_p instead of
11360         flag_wpa.
11361         * lto-streamer-out.c (lto_output): Likewise.
11362         * passes.c (ipa_write_optimization_summaries): Initialize statement
11363         uids.
11364
11365 2010-08-20  Olivier Hainque  <hainque@adacore.com>
11366
11367         * tree.h (alias_diag_flags): New enum.
11368         (alias_pair): Add an 'emitted_diags' field.
11369         * varasm.c (finish_aliases_1): Honor and update p->emitted_diags.
11370         (assemble_alias): Initialize emitted_diags of new pairs.
11371
11372 2010-08-20  Eric Botcazou  <ebotcazou@adacore.com>
11373
11374         * config/rs6000/aix.h (STACK_CHECK_STATIC_BUILTIN): Define to 1.
11375         * config/rs6000/linux.h (STACK_CHECK_STATIC_BUILTIN): Likewise.
11376         * config/rs6000/linux64.h (STACK_CHECK_STATIC_BUILTIN): Likewise.
11377         (STACK_CHECK_PROTECT): Define.
11378         * config/rs6000/rs6000.c (rs6000_emit_probe_stack_range): New function.
11379         (output_probe_stack_range): Likewise.
11380         (rs6000_emit_prologue): Invoke rs6000_emit_probe_stack_range if static
11381         builtin stack checking is enabled.
11382         * config/rs6000/rs6000-protos.h (output_probe_stack_range): Declare.
11383         * config/rs6000/rs6000.md (UNSPECV_PROBE_STACK_RANGE): New constant.
11384         (probe_stack_range): New insn.
11385
11386 2010-08-20  H.J. Lu  <hongjiu.lu@intel.com>
11387
11388         PR target/45336
11389         * config/i386/emmintrin.h (_mm_extract_epi16): Cast to unsigned
11390         short first.
11391
11392         * config/i386/smmintrin.h (_mm_extract_epi8): Cast to unsigned
11393         char first.
11394
11395 2010-08-20  Jakub Jelinek  <jakub@redhat.com>
11396
11397         PR target/45336
11398         * config/i386/sse.md (*sse4_1_pextrb): Add SWI48 mode iterator
11399         to cover zero extension into 64-bit register.
11400         (*sse2_pextrw): Likewise.
11401         (*sse4_1_pextrd_zext): New insn.
11402
11403 2010-08-20  Iain Sandoe  <iains@gcc.gnu.org>
11404
11405         revert r163410, partially revert r163267.
11406         * config/rs6000/darwin.h (LIB_SPEC): Remove.
11407         * config/darwin.h (REAL_LIBGCC_SPEC): Link lgcc for all
11408         Darwin versions.
11409
11410 2010-08-20  Jakub Jelinek  <jakub@redhat.com>
11411
11412         PR middle-end/44974
11413         * builtins.c (expand_builtin): Don't optimize away
11414         calls to DECL_LOOPING_CONST_OR_PURE_P builtins.
11415
11416 2010-08-20  Uros Bizjak  <ubizjak@gmail.com>
11417
11418         * config/i386/i386.md (ashift %rsp splitter): Remove splitter.
11419         (pro_epilogue_adjust_stack_di_2): Use "l" constraint for
11420         alternative 1 of operand 2.
11421
11422 2010-08-20  Jakub Jelinek  <jakub@redhat.com>
11423             Paolo Bonzini  <bonzini@gnu.org>
11424
11425         * simplify-rtx.c (simplify_unary_operation_1): Optimize
11426         (sign_extend (zero_extend (...)) and
11427         ({sign,zero}_extend (lshiftrt (ashift X (const_int I)) (const_int I))).
11428
11429 2010-08-20  Jakub Jelinek  <jakub@redhat.com>
11430
11431         PR rtl-optimization/45353
11432         * sel-sched-ir.c (sel_bb_head): Return NULL even if next_nonnote_insn
11433         after bb_note is a BARRIER.
11434
11435 2010-08-20  Iain Sandoe  <iains@gcc.gnu.org>
11436
11437         * config/rs6000/darwin.h (LIB_SPEC): New. Provide saveFP/restFP by
11438         linking libgcc.a.
11439
11440 2010-08-20  Jakub Jelinek  <jakub@redhat.com>
11441             Michael Matz  <matz@suse.de>
11442
11443         * tree-ssa-address.c (tree_mem_ref_addr): Convert offset to sizetype.
11444
11445 2010-08-20  Nathan Froyd  <froydnj@codesourcery.com>
11446
11447         * ggc-common.c (ggc_mark_root_tab): New function, split out from...
11448         (ggc_mark_roots): ...here.
11449
11450 2010-08-20  Nathan Froyd  <froydnj@codesourcery.com>
11451
11452         * vec.h (FOR_EACH_VEC_ELT): Define.
11453         * c-decl.c: Use it.
11454         * cfgloop.c: Likewise.
11455         * cfgloopmanip.c: Likewise.
11456         * cgraph.c: Likewise.
11457         * cgraphunit.c: Likewise.
11458         * combine.c: Likewise.
11459         * config/bfin/bfin.c: Likewise.
11460         * config/mips/mips.c: Likewise.
11461         * config/rs6000/rs6000.c: Likewise.
11462         * dbxout.c: Likewise.
11463         * df-scan.c: Likewise.
11464         * dominance.c: Likewise.
11465         * dse.c: Likewise.
11466         * dwarf2out.c: Likewise.
11467         * except.c: Likewise.
11468         * expr.c: Likewise.
11469         * function.c: Likewise.
11470         * gcse.c: Likewise.
11471         * genattr.c: Likewise.
11472         * ggc-common.c: Likewise.
11473         * gimplify.c: Likewise.
11474         * graphite-blocking.c: Likewise.
11475         * graphite-clast-to-gimple.c: Likewise.
11476         * graphite-dependences.c: Likewise.
11477         * graphite-interchange.c: Likewise.
11478         * graphite-poly.c: Likewise.
11479         * graphite-scop-detection.c: Likewise.
11480         * graphite-sese-to-poly.c: Likewise.
11481         * graphite.c: Likewise.
11482         * haifa-sched.c: Likewise.
11483         * ifcvt.c: Likewise.
11484         * implicit-zee.c: Likewise.
11485         * ipa-prop.c: Likewise.
11486         * ipa-struct-reorg.c: Likewise.
11487         * ipa.c: Likewise.
11488         * ira-build.c: Likewise.
11489         * ira-color.c: Likewise.
11490         * ira-emit.c: Likewise.
11491         * lambda-code.c: Likewise.
11492         * loop-invariant.c: Likewise.
11493         * loop-unroll.c: Likewise.
11494         * lower-subreg.c: Likewise.
11495         * lto-cgraph.c: Likewise.
11496         * lto-opts.c: Likewise.
11497         * lto-streamer-in.c: Likewise.
11498         * lto-streamer-out.c: Likewise.
11499         * lto-streamer.c: Likewise.
11500         * lto-symtab.c: Likewise.
11501         * matrix-reorg.c: Likewise.
11502         * opts.c: Likewise.
11503         * predict.c: Likewise.
11504         * print-tree.c: Likewise.
11505         * sdbout.c: Likewise.
11506         * sel-sched-dump.c: Likewise.
11507         * sel-sched-ir.c: Likewise.
11508         * sel-sched.c: Likewise.
11509         * sese.c: Likewise.
11510         * stor-layout.c: Likewise.
11511         * tree-cfg.c: Likewise.
11512         * tree-cfgcleanup.c: Likewise.
11513         * tree-chrec.c: Likewise.
11514         * tree-data-ref.c: Likewise.
11515         * tree-emutls.c: Likewise.
11516         * tree-inline.c: Likewise.
11517         * tree-into-ssa.c: Likewise.
11518         * tree-loop-distribution.c: Likewise.
11519         * tree-loop-linear.c: Likewise.
11520         * tree-mudflap.c: Likewise.
11521         * tree-outof-ssa.c: Likewise.
11522         * tree-parloops.c: Likewise.
11523         * tree-predcom.c: Likewise.
11524         * tree-pretty-print.c: Likewise.
11525         * tree-scalar-evolution.c: Likewise.
11526         * tree-ssa-live.c: Likewise.
11527         * tree-ssa-loop-im.c: Likewise.
11528         * tree-ssa-loop-ivcanon.c: Likewise.
11529         * tree-ssa-loop-ivopts.c: Likewise.
11530         * tree-ssa-loop-manip.c: Likewise.
11531         * tree-ssa-loop-niter.c: Likewise.
11532         * tree-ssa-loop-prefetch.c: Likewise.
11533         * tree-ssa-phiprop.c: Likewise.
11534         * tree-ssa-pre.c: Likewise.
11535         * tree-ssa-reassoc.c: Likewise.
11536         * tree-ssa-sccvn.c: Likewise.
11537         * tree-ssa-structalias.c: Likewise.
11538         * tree-ssa.c: Likewise.
11539         * tree-vect-data-refs.c: Likewise.
11540         * tree-vect-loop-manip.c: Likewise.
11541         * tree-vect-loop.c: Likewise.
11542         * tree-vect-patterns.c: Likewise.
11543         * tree-vect-slp.c: Likewise.
11544         * tree-vect-stmts.c: Likewise.
11545         * tree-vrp.c: Likewise.
11546         * tree.c: Likewise.
11547         * value-prof.c: Likewise.
11548         * var-tracking.c: Likewise.
11549         * varasm.c: Likewise.
11550         * vmsdbgout.c: Likewise.
11551
11552 2010-08-19  Nathan Sidwell  <nathan@codesourcery.com>
11553             Richard Guenther  <richard.guenther@gmail.com>
11554
11555         * gimplify.c (gimplify_modify_expr): When assigning to volatiles,
11556         copy the src value and return a copy.
11557         * doc/extend.texi (Volatiles): Move from C++ to C and expand.
11558         (C++ Volatiles): Adjust to describe C++ semantics only.
11559
11560 2010-08-20  Joseph Myers  <joseph@codesourcery.com>
11561
11562         * doc/tm.texi.in (PIC_OFFSET_TABLE_REG_CALL_CLOBBERED): Document to
11563         be zero or nonzero.
11564         * doc/tm.texi: Regenerate.
11565         * defaults.h (PIC_OFFSET_TABLE_REG_CALL_CLOBBERED): Define.
11566         * df-scan.c (df_get_exit_block_use_set), reginfo.c
11567         (init_reg_sets_1), rtlanal.c (rtx_unstable_p, rtx_varies_p):
11568         Handle new PIC_OFFSET_TABLE_REG_CALL_CLOBBERED semantics.
11569         * config/ia64/ia64.h (PIC_OFFSET_TABLE_REG_CALL_CLOBBERED): Define
11570         to 1.
11571
11572 2010-08-20  Olivier Hainque  <hainque@adacore.com>
11573
11574         * config/sparc/sparc.c (sparc_asm_function_epilogue): Don't output
11575         an extra nop past a sibling call at the very end.
11576
11577 2010-08-19  Bernd Schmidt  <bernds@codesourcery.com>
11578
11579         PR bootstrap/45350
11580         * combine.c (try_combine): Initialize i1_is_used and i2_is_used.  Fix
11581         a comment.
11582
11583 2010-08-19  Nathan Froyd  <froydnj@codesourcery.com>
11584
11585         * target.def (function_arg, function_incoming_arg): Remove const
11586         qualifier on CUMULATIVE_ARGS parameter.
11587         * targhooks.h (default_function_arg, default_function_incoming_arg):
11588         Likewise.
11589         * targhooks.c (default_function_arg, default_function_incoming_arg):
11590         Likewise.
11591         * config/i386/i386.c (ix86_function_arg): Likewise.
11592
11593 2010-08-19  Jakub Jelinek  <jakub@redhat.com>
11594
11595         PR target/45336
11596         * simplify-rtx.c (simplify_unary_operation_1): Optimize nested
11597         SIGN_EXTENDs or ZERO_EXTENDs.
11598
11599 2010-08-19  Bernd Schmidt  <bernds@codesourcery.com>
11600
11601         PR target/42172
11602         * combine.c (combine_validate_cost): New arg I0.  All callers changed.
11603         Take its cost into account if nonnull.
11604         (insn_a_feeds_b): New static function.
11605         (combine_instructions): Look for four-insn combinations.
11606         (can_combine_p): New args PRED2, SUCC2.  All callers changed.  Take
11607         them into account when computing all_adjacent and looking for other
11608         uses.
11609         (combinable_i3pat): New args I0DEST, I0_NOT_IN_SRC.  All callers
11610         changed.  Treat them like I1DEST and I1_NOT_IN_SRC.
11611         (try_combine): New arg I0.  Handle four-insn combinations.
11612         (distribute_notes): New arg ELIM_I0.  All callers changed.  Treat it
11613         like ELIM_I1.
11614
11615 2010-08-19  Jason Merrill  <jason@redhat.com>
11616
11617         PR c++/45307
11618         * gimplify.c (gimplify_init_constructor): Just return GS_UNHANDLED
11619         if ctor is empty.
11620         (gimplify_modify_expr_rhs): Adjust.
11621
11622 2010-08-19  Nathan Froyd  <froydnj@codesourcery.com>
11623
11624         * cfgloop.c (get_loop_body_in_bfs_order): Avoid redundant call to
11625         bitmap_bit_p.
11626         * config/bfin/bifn.c (bfin_discover_loop): Likewise.
11627         * dominance.c (iterate_fix_dominators): Likewise.
11628         * dse.c (set_usage_bits): Likewise.
11629         (set_position_unneeded, record_store): Likewise.
11630         * gimple-fold.c (get_maxval_strlen): Likewise.
11631         * haifa-sched.c (fix_inter_tick, fix_recovery_deps): Likewise.
11632         * ipa-inline.c (update_caller_keys): Likewise.
11633         * ipa-split.c (verify_non_ssa_vars): Likewise.
11634         * ipa-type-escape.c (mark_type, close_type_seen): Likewise.
11635         (close_type_exposed_parameter, close_type_full_escape): Likewise.
11636         (close_addressof_down): Likewise.
11637         * ira-color.c (assign_hard_reg, push_allocno_to_stack): Likewise.
11638         (setup_allocno_left_conflicts_size): Likewise.
11639         (ira_reassign_conflict_allocnos): Likewise.
11640         (ira_reassign_pseudos): Likewise.
11641         * ira-emit.c (change_loop): Likewise.
11642         * loop-invariant.c (mark_regno_live, mark_regno_death): Likewise.
11643         * lto-streamer-out.c (write_symbol): Likewise.
11644         * predict.c (expr_expected_value_1): Likewise.
11645         * regstat.c (regstat_bb_compute_ri): Likewise.
11646         * sel-sched.c (create_block_for_bookkeeping): Likewise.
11647         (track_scheduled_insns_and_blocks, sel_sched_region_1): Likewise.
11648         * stmt.c (expand_case): Likewise.
11649         * tree-eh.c (emit_eh_dispatch): Likewise.
11650         * tree-into-ssa.c (prune_unused_phi_nodes): Likewise.
11651         * tree-loop-distribution.c (make_nodes_having_upstream_mem_writes):
11652         Likewise.
11653         (rdg_flag_vertex, rdg_flag_loop_exits): Likewise.
11654         (rdg_build_components): Likewise.
11655         * tree-object-size.c (collect_object_sizes_for): Likewise.
11656         * tree-sra.c (convert_callers): Likewise.
11657         * tree-ssa-coalesce.c (live_track_add_partition): Likewise.
11658         * tree-ssa-live.c (mark_all_vars_used_1): Likewise.
11659         * tree-ssa-pre.c (bitmap_set_replace_value): Likewise.
11660
11661 2010-08-19  Uros Bizjak  <ubizjak@gmail.com>
11662
11663         * config/i386/i386.md (*lea_1): Use P mode iterator.
11664         (lea add splitter): Also handle DImode operands.
11665         (DImode lea add splitter): Use x86_64_immediate_operand for operand 2
11666         predicate.  Do not use ix86_lea_for_add_ok.
11667         (zext DImode lea add splitter): Use ix86_lea_for_add_ok.
11668         (lea ashift splitter): Also handle DImode operands.
11669         (DImode lea ashift splitter): Remove splitter.
11670
11671 2010-08-19  Uros Bizjak  <ubizjak@gmail.com>
11672
11673         * config/i386/i386.md (*add<SWI:mode>3_cconly_overflow): Do not use
11674         ix86_binary_operator_ok.
11675
11676 2010-08-19  Andrey Belevantsev  <abel@ispras.ru>
11677
11678         PR rtl-optimization/44691
11679         * sel-sched.c (count_occurrences_1): Also punt when SUBREG_REG
11680         is not a register.
11681
11682 2010-08-19  Ian Bolton  <ian.bolton@arm.com>
11683
11684         PR target/45070
11685         * config/arm/arm.c (arm_output_epilogue): Ensure that return
11686          value of size 1-3 is handled correctly.
11687
11688 2010-08-19  Ian Bolton  <ian.bolton@arm.com>
11689
11690         * tree-switch-conversion.c (gen_inbound_check): Ensure that the
11691         type for the conditional has wide enough range.
11692
11693 2010-08-18  Uros Bizjak  <ubizjak@gmail.com>
11694
11695         PR target/45327
11696         * config/i386/i386.md (<any_or:code><SWI:mode>_3): Do not use
11697         ix86_binary_operator_ok.
11698
11699 2010-08-18  Uros Bizjak  <ubizjak@gmail.com>
11700
11701         * config/i386/i386.md (*add<mode>_1) <TYPE_LEA>: Split insn to lea.
11702         <default>:  Swap operands 1 and 2 for alternative 2 to use existing
11703         code to output insn mnemonic.  Fix comment.
11704         (*addsi_1_zext): Add r-r-0 alternative 1.
11705         <TYPE_LEA>: Split insn to lea.
11706         <default>: Handle alternative 1.
11707         (*addhi_1_lea): Add r-r-0 alternative 2.  Use cond RTX instead of
11708         multi-level if_then_else RTX to set "type" attribute.
11709         <default>: Handle alternative 2.
11710         (*addqi_1_lea): Add q-q-0 alternative 2 and r-r-0 alternative 4.
11711         Use cond RTX instead of multi-level if_then_else RTX to set
11712         "type" attribute.
11713         <default>: Handle alternatives 2 and 4.
11714         (lea splitters): Update calls to ix86_lea_for_add_ok.
11715
11716         * config/i386/i386.c (ix86_lea_for_add_ok): Remove unused "code"
11717         argument.
11718         * config/i386/i386-protos.h (ix86_lea_for_add_ok): Update prototype.
11719
11720 2010-08-18  Richard Guenther  <rguenther@suse.de>
11721
11722         * tree-ssa-uninit.c (find_uninit_use): Disregard debug stmts,
11723         use operand helpers.
11724
11725 2010-08-18  Paolo Bonzini  <bonzini@gnu.org>
11726
11727         PR middle-end/45292
11728         * optabs.c (expand_bool_compare_and_swap): Expand pending
11729         pops before trying the optab.
11730
11731 2010-08-18  Yao Qi  <yao@codesourcery.com>
11732
11733         PR target/45094
11734         * config/arm/arm.c (output_move_double): Fix typo generating
11735         instructions ('ldr'->'str').
11736
11737 2010-08-18  Maxim Kuvyrkov  <maxim@codesourcery.com>
11738
11739         PR rtl-optimization/42575
11740         * optabs.c (expand_doubleword_mult): Generate new pseudos to shorten
11741         live ranges.
11742
11743 2010-08-18  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11744
11745         * config/arm/arm-protos.h (arm_expand_sync): New.
11746         (arm_output_memory_barrier, arm_output_sync_insn): New.
11747         (arm_sync_loop_insns): New.
11748         * config/arm/arm.c (FL_ARCH7): New.
11749         (FL_FOR_ARCH7): Include FL_ARCH7.
11750         (arm_arch7): New.
11751         (arm_print_operand): Support %C markup.
11752         (arm_legitimize_sync_memory): New.
11753         (arm_emit, arm_insn_count, arm_count, arm_output_asm_insn): New.
11754         (arm_process_output_memory_barrier, arm_output_memory_barrier): New.
11755         (arm_ldrex_suffix, arm_output_ldrex, arm_output_strex): New.
11756         (arm_output_op2, arm_output_op3, arm_output_sync_loop): New.
11757         (arm_get_sync_operand, FETCH_SYNC_OPERAND): New.
11758         (arm_process_output_sync_insn, arm_output_sync_insn): New.
11759         (arm_sync_loop_insns,arm_call_generator, arm_expand_sync): New.
11760         * config/arm/arm.h (struct arm_sync_generator): New.
11761         (TARGET_HAVE_DMB, TARGET_HAVE_DMB_MCR): New.
11762         (TARGET_HAVE_MEMORY_BARRIER): New.
11763         (TARGET_HAVE_LDREX, TARGET_HAVE_LDREXBHD): New.
11764         * config/arm/arm.md: Include sync.md.
11765         (UNSPEC_MEMORY_BARRIER): New.
11766         (VUNSPEC_SYNC_COMPARE_AND_SWAP, VUNSPEC_SYNC_LOCK): New.
11767         (VUNSPEC_SYNC_OP):New.
11768         (VUNSPEC_SYNC_NEW_OP, VUNSPEC_SYNC_OLD_OP): New.
11769         (sync_result, sync_memory, sync_required_value): New attributes.
11770         (sync_new_value, sync_t1, sync_t2): Likewise.
11771         (sync_release_barrier, sync_op): Likewise.
11772         (length): Add logic to length attribute defintion to call
11773         arm_sync_loop_insns when appropriate.
11774         * config/arm/sync.md: New file.
11775
11776 2010-08-17  Jakub Jelinek  <jakub@redhat.com>
11777
11778         * tree.h (host_integerp): Add ATTRIBUTE_PURE when not
11779         ENABLE_TREE_CHECKING.
11780         (tree_low_cst): Add inline version for !ENABLE_TREE_CHECKING
11781         and GCC >= 4.3.
11782
11783 2010-08-17  H.J. Lu  <hongjiu.lu@intel.com>
11784
11785         * config/i386/i386.c (ix86_lea_for_add_ok): For !TARGET_OPT_AGU
11786         or optimizing for size, always avoid lea if possible.
11787
11788         * config/i386/i386.md (*add<mode>_1): Always avoid lea if possible.
11789
11790 2010-08-17  Iain Sandoe  <iains@gcc.gnu.org>
11791
11792         * unwind-dw2-fde-darwin.c (_darwin10_Unwind_FindEnclosingFunction):
11793         Dunmmy function with NULL return unless the target is
11794         OSX >= 10.6 (Darwin10).
11795
11796 2010-08-17  Jack Howarth  <howarth@bromo.med.uc.edu>
11797
11798         * gcc.c (spec_function): Add remove-outfile.
11799         (remove_outfile_spec_function): New function.
11800         * config/darwin.h (LINK_SPEC): Add removal of -ldl, -lm and -lpthread.
11801         * invoke.texi (replace-outfile): Document.
11802
11803 2010-08-17  Uros Bizjak  <ubizjak@gmail.com>
11804
11805         PR target/45296
11806         * reginfo.c (globalize_reg): Reject stack registers.
11807
11808 2010-08-17  Richard Guenther  <rguenther@suse.de>
11809
11810         * tree-ssa-dom.c (struct edge_info): Use a VEC for the
11811         list of conditional equivalences.
11812         (free_all_edge_infos): Adjust.
11813         (record_equivalences_from_incoming_edge): Likewise.
11814         (record_cond): Likewise.
11815         (build_and_record_new_cond): Likewise.
11816         (record_conditions): Likewise.
11817         (dom_opt_leave_block): Likewise.
11818
11819 2010-08-17  Kai Tietz  <kai.tietz@onevision.com>
11820
11821         * doc/invoke.texi (ms-extension): Add documentation.
11822
11823 2010-08-17  Richard Guenther  <rguenther@suse.de>
11824
11825         * fold-const.c (fold_comparison): Strip nops inside POINTER_PLUS_EXPR.
11826
11827 2010-08-17  Shujing Zhao  <pearly.zhao@oracle.com>
11828
11829         PR c/40563
11830         * c-decl.c (diagnose_uninitialized_cst_member): New function.
11831         (finish_decl): Use it to issue a -Wc++-compat warning about
11832         uninitialized const field in struct or union.
11833
11834         (finish_struct): Use strip_array_types.
11835
11836 2010-08-17  Jakub Jelinek  <jakub@redhat.com>
11837
11838         * function.c (block_fragments_nreverse, blocks_nreverse_all): New
11839         functions.
11840         (reorder_blocks): Use blocks_nreverse_all instead of blocks_nreverse.
11841         (reorder_blocks_1): Assert BLOCK_FRAGMENT_ORIGIN is NULL.  Don't
11842         call block_nreverse here.
11843         (blocks_nreverse): Rename decl temporary to block.
11844
11845 2010-08-16  Bernd Schmidt  <bernds@codesourcery.com>
11846
11847         * config/arm/thumb2.md (thumb2_notsi_shiftsi,
11848         thumbsi_notsi_shiftsi_compare0, thumb2_not_shiftsi_compare0_scratch,
11849         thumb2_cmpsi_shiftsi, thumb2_cmpsi_shiftsi_swp, thumb2_arith_shiftsi,
11850         thumb2_arith_shiftsi splitter, thumb2_arith_shiftsi_compare0,
11851         thumb2_arith_shiftsi_compare0_scratch, thumb2_sub_shiftsi,
11852         thumb2_sub_shiftsi_compare0, thumb2_sub_shiftsi_compare0_scratch,
11853         thumb2_iorsi3): Delete.
11854         (orsi_notsi_si): No longer a named pattern.
11855         (orsi_not_shiftsi_si): Renamed from thumb_orsi_not_shiftsi_si.
11856         * config/arm/predicates.md (shift_amount_operand): New.
11857         (mult_operator): New.
11858         * config/arm/arm.md (attr arch, attr arch_enabled, attr insn_enabled,
11859         attr enabled): New.
11860         (iorsi3_insn): Renamed from arm_iorsi3.  Handle a new alternative if
11861         arch matches t2.
11862         (not_shiftsi): Renamed from arm_notsi_shiftsi.  Handle Thumb2 variant.
11863         (not_shiftsi_compare0): Likewise, renamed from
11864         arm_notsi_shiftsi_compare0.
11865         (not_shiftsi_compare0_scratch): Likweise, renamed from
11866         arm_notsi_shiftsi_compare0_scratch.
11867         (cmpsi_shiftsi): Likewise, renamed from arm_cmpsi_shiftsi.
11868         (cmpsi_shiftsi_swp): Likewise, renamed from arm_cmpsi_shiftsi_swp.
11869         (arith_shiftsi): Handle Thumb2 variant.  Set insn_enabled attribute
11870         so that the register alternative is disabled when the shift_operator
11871         is MULT.  Use "M" as the constraint for constants.
11872         (arith_shiftsi splitter): Enable for TARGET_32BIT.
11873         (arith_shiftsi_compare0): Handle Thumb2 variant.  Use "M" as the
11874         constraint for constants.
11875         (arith_shiftsi_compare0_scratch): Likewise.
11876         (sub_shiftsi, sub_shiftsi_compare0, sub_shiftsi_compare0_scratch):
11877         Handle Thumb2 alternative.
11878
11879 2010-08-16  Joseph Myers  <joseph@codesourcery.com>
11880
11881         * doc/options.texi (NoDriverArg): Document.
11882         * gcc.c (cpp_unique_options): Generate -MD and -MMD instead of
11883         -MDX and -MMDX.
11884         * opt-functions.awk (switch_flags): Handle NoDriverArg.
11885         * opts-common.c (decode_cmdline_option): Ignore CL_SEPARATE
11886         marking for CL_NO_DRIVER_ARG options when in the driver.
11887         * opts.h (CL_NO_DRIVER_ARG): Define.
11888         (CL_PARAMS, CL_WARNING, CL_OPTIMIZATION, CL_DRIVER, CL_TARGET,
11889         CL_COMMON): Update values.
11890
11891 2010-08-16  Joseph Myers  <joseph@codesourcery.com>
11892
11893         * common.opt: Add driver options.
11894         (auxbase, auxbase-strip, quiet, version): Mark RejectDriver.
11895         * doc/options.texi (Driver, RejectDriver): Document.
11896         * gcc.c (pass_exit_codes, print_search_dirs, print_file_name,
11897         print_prog_name, print_multi_directory, print_sysroot,
11898         print_multi_os_directory, print_multi_lib,
11899         print_sysroot_headers_suffix, report_times, combine_flag,
11900         use_pipes, wrapper_string): Remove.
11901         (save_switch, driver_unknown_option_callback,
11902         driver_wrong_lang_callback, driver_post_handling_callback,
11903         driver_handle_option): New.
11904         (spec_lang, last_language_n_infiles): Make file-scope static
11905         instead of local to process_command.
11906         (process_command): Use decode_cmdline_options_to_array and
11907         read_cmdline_option for option processing.  Compute have_c in
11908         prescan of decoded options.
11909         * opt-functions.awk (switch_flags): Handle Driver and
11910         RejectDriver.
11911         (var_type, var_type_struct): Handle Separate options as generating
11912         const char * variables.
11913         * opts-common.c (decode_cmdline_option): Expect CL_COMMON and
11914         CL_TARGET to be passed by caller if required.
11915         (decode_cmdline_options_to_array): Update comment.
11916         * opts.c (complain_wrong_lang): Handle options only valid for the
11917         driver.
11918         (decode_options): Update call to decode_cmdline_options_to_array.
11919         (print_filtered_help): Ignore driver-only options.
11920         (print_specific_help): Ignore CL_DRIVER.
11921         (common_handle_option): Don't call print_specific_help for CL_DRIVER.
11922         * opts.h (CL_DRIVER, CL_REJECT_DRIVER): Define.
11923         (CL_PARAMS, CL_WARNING, CL_OPTIMIZATION, CL_TARGET, CL_COMMON):
11924         Update values.
11925
11926 2010-08-16  Richard Guenther  <rguenther@suse.de>
11927
11928         * tree-cfg.c (verify_types_in_gimple_reference): Verify
11929         TARGET_MEM_REF a bit.
11930         * tree-ssa-address.c (addr_for_mem_ref): Adjust.
11931         (create_mem_ref_raw): Always create TMR_OFFSET, store the
11932         alias pointer type via it.
11933         (copy_mem_ref_info): Adjust.
11934         (maybe_fold_tmr): Likewise.
11935         * tree.c (mem_ref_offset): Also handle TARGET_MEM_REF.
11936         (reference_alias_ptr_type): Likewise.
11937         * tree.def (TARGET_MEM_REF): Remove TMR_ORIGINAL operand,
11938         adjust documentation of TMR_OFFSET operand.
11939         * alias.c (get_alias_set): Do not look at TMR_ORIGINAL but
11940         use the alias pointer type.
11941         * expr.c (expand_expr_real_1): Do not use TMR_ORIGINAL to
11942         initialize mem attrs but the TMR itself.
11943         * tree-eh.c (tree_could_trap_p): Handle TARGET_MEM_REF
11944         similar to MEM_REF.
11945         * tree-pretty-print.c (dump_generic_node): Do not dump TMR_ORIGINAL.
11946         * tree-ssa-loop-ivopts.c (idx_remove_ssa_names): Remove.
11947         (unshare_and_remove_ssa_names): Likewise.
11948         (copy_ref_info): Adjust.
11949         * tree-ssa-pre.c (create_component_ref_by_pieces_1): Simplify
11950         TARGET_MEM_REF case.
11951         * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Do not look
11952         at TMR_ORIGINAL.
11953         * tree.h (TMR_ORIGINAL): Remove.
11954         * gimple.c (get_base_address): For TARGET_MEM_REF with a
11955         symbol return that.
11956         * tree-dfa.c (get_ref_base_and_extent): Handle TARGET_MEM_REF
11957         with a symbol.
11958         (get_addr_base_and_unit_offset): Likewise.
11959         * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Handle
11960         TARGET_MEM_REFs.
11961         (indirect_ref_may_alias_decl_p): Likewise.
11962         (refs_may_alias_p_1): Do not bail out for TARGET_MEM_REFs.
11963
11964 2010-08-15  Uros Bizjak  <ubizjak@gmail.com>
11965
11966         * doc/invoke.texi (-fomit-frame-pointer): Document that starting
11967         with GCC version 4.6, the default setting (when not optimizing
11968         for size) for 32-bit Linux x86 and 32-bit Darwin x86 targets has
11969         been changed to -fomit-frame-pointer.
11970
11971 2010-08-15  Iain Sandoe  <iains@gcc.gnu.org>
11972
11973         * config/darwin.h (REAL_LIBGCC_SPEC): Remove libgcc_s.10.5 stub for
11974         Darwin10.  Do not link libgcc.a for Darwin >= 9.
11975
11976 2010-08-15  Gerald Pfeifer  <gerald@pfeifer.com>
11977
11978         * doc/invoke.texi (Warning Options): Fix terminology and markup
11979         in the description of how unknown warning options are handled.
11980
11981 2010-08-15  Ira Rosen  <irar@il.ibm.com>
11982
11983         * tree-vect-data-refs.c (vect_setup_realignment): Support realignment
11984         in basic blocks.
11985         (vect_supportable_dr_alignment): Check alignment for basic blocks.
11986         * tree-vect-slp.c (vect_build_slp_tree): Allow different codes for
11987         data references.
11988         (vect_bb_vectorization_profitable_p): New function.
11989         (vect_slp_analyze_bb): Call vect_bb_vectorization_profitable_p() to
11990         check if it's worthwhile to vectorize the basic block.
11991
11992 2010-08-14  Anatoly Sokolov  <aesok@post.ru>
11993
11994         * reload.h (register_move_cost, memory_move_secondary_cost,
11995         secondary_reload_class): Adjust prototype.
11996         * rtl.h (reg_class_subset_p): Adjust prototype.
11997         * reload.c (secondary_reload_class): Change arguments type from
11998         enum reg_class to reg_class_t. Change result type to reg_class_t.
11999         * reginfo.c (register_move_cost, reg_class_subset_p): Change
12000         arguments type from enum reg_class to reg_class_t.
12001         (memory_move_secondary_cost): Change arguments type from
12002         enum reg_class to reg_class_t. Change type of saved_flags to
12003         reg_class_t.
12004
12005         * config/mips/mips.h (REGISTER_MOVE_COST, MEMORY_MOVE_COST):
12006         Remove macros.
12007         (mips_cost): Remove.
12008         (struct mips_rtx_cost_data): Moved to mips.c.
12009         * config/mips/mips-protos.h (mips_register_move_cost): Remove.
12010         * config/mips/mips.c (struct mips_rtx_cost_data): Moved from mips.h.
12011         (mips_cost): Make static.
12012         (mips_canonicalize_move_class): Change argument type to reg_class_t.
12013         Change result type to reg_class_t.
12014         (mips_move_to_gpr_cost, mips_move_from_gpr_cost): Change arguments
12015         type from enum reg_class to reg_class_t.
12016         (mips_register_move_cost): Make static. Change arguments
12017         type from enum reg_class to reg_class_t.
12018         (mips_memory_move_cost): New function.
12019         (TARGET_REGISTER_MOVE_COST, TARGET_MEMORY_MOVE_COST): Define.
12020
12021 2010-08-14  Richard Sandiford  <rdsandiford@googlemail.com>
12022
12023         PR rtl-optimization/43358
12024         * ira-lives.c (process_single_reg_class_operands): Adjust the costs
12025         of a single hard register, using simplify_subreg_regno to decide
12026         what that register should be.
12027
12028 2010-08-14  Mingjie Xing  <mingjie.xing@gmail.com>
12029
12030         * config/mips/mips.c (CODE_FOR_loongson_pmullh): Define.
12031         * config/mips/loongson.md (UNSPEC_LOONGSON_PMULL): Delete.
12032         (loongson_pmull<V_suffix>): Rename to...
12033         (mul<mode>3): ...this and use MULT instead of an UNSPEC.
12034
12035 2010-08-13  Jack Howarth  <howarth@bromo.med.uc.edu>
12036
12037         * configure.ac: Enable -fomit-frame-pointer on darwin
12038         which support dwarf2.
12039         * config/i386/i386.c (override_options): Same.
12040
12041 2010-08-13  Jie Zhang  <jie@codesourcery.com>
12042
12043         * config/arm/arm.md (cstoredf4): Only valid when !TARGET_VFP_SINGLE.
12044
12045 2010-08-12  Joseph Myers  <joseph@codesourcery.com>
12046
12047         * gcc.c (cpp_unique_options): Generate -MDX and -MMDX from -MD and
12048         -MMD.
12049
12050 2010-08-12  Changpeng Fang  <changpeng.fang@amd.com>
12051
12052         * tree-vect-patterns.c (vect_recog_dot_prod_pattern): Give
12053         up dot_prod pattern searching if a stmt is outside the loop.
12054
12055 2010-08-12  H.J. Lu  <hongjiu.lu@intel.com>
12056             Uros Bizjak  <ubizjak@gmail.com>
12057
12058         * config.gcc: Handle --enable-frame-pointer.
12059
12060         * configure.ac: Add --enable-frame-pointer.
12061         * configure: Regenerated.
12062
12063         * config/i386/i386.c (USE_IX86_FRAME_POINTER): Default to 0.
12064         (override_options): If not configured with --enable-frame-pointer,
12065         enable -fomit-frame-pointer (but not for TARGET_MACHO or when
12066         optimizing for size), -fasynchronous-unwind-tables and
12067         -maccumulate-outgoing-args by default.
12068
12069 2010-08-12  Jakub Jelinek  <jakub@redhat.com>
12070
12071         * builtins.c (fold_builtin_memory_op): Avoid -Wsign-compare warning.
12072
12073         PR middle-end/45262
12074         * fold-const.c (make_range) <case NEGATE_EXPR>: Punt if
12075         -a overflows.  Normalize the range.
12076
12077 2010-08-12  Richard Guenther  <rguenther@suse.de>
12078
12079         PR tree-optimization/45232
12080         * tree-ssa-reassoc.c (can_reassociate_p): Disable re-association
12081         for types with undefined overflow.
12082         (reassociate_bb): Allow re-associating of bit and min/max
12083         operations for types with undefined overflow.
12084         * tree-ssa-forwprop.c (associate_plusminus): New function.
12085         (tree_ssa_forward_propagate_single_use_vars): Call it.
12086
12087 2010-08-12  Richard Guenther  <rguenther@suse.de>
12088
12089         * tree-flow.h (struct ptr_info_def): Add align and misalign fields.
12090         * tree-ssa-alias.c (get_ptr_info): Move ...
12091         * tree-ssanames.c (get_ptr_info): ... here.  Initialize
12092         align and misalign fields conservatively.
12093         * tree-ssa-ccp.c (ccp_finalize): From partially constant pointers
12094         derive alignment information.
12095         (evaluate_stmt): Derive alignment information from memory
12096         allocation functions.
12097         * tree.h (get_pointer_alignment): Make unsigned.
12098         * builtins.c (get_object_alignment): Use alignment information we
12099         have computed for pointers.
12100         (get_pointer_alignment): Likewise.  Make conservative, return
12101         and unsigned value.
12102         (expand_builtin_strlen): Adjust.
12103         (expand_builtin_memcmp): Likewise.
12104         (expand_builtin_strcmp): Likewise.
12105         (expand_builtin_strncmp): Likewise.
12106         (get_builtin_sync_mem): Use at least mode alignment.
12107         (fold_builtin_memset): Adjust.
12108         (fold_builtin_memory_op): Likewise.
12109         * gimple-pretty-print.c (dump_gimple_phi): Alongside alias
12110         information also dump pointer alignment knowledge.
12111         (dump_gimple_stmt): Likewise.
12112
12113 2010-08-12  Uros Bizjak  <ubizjak@gmail.com>
12114
12115         * config/i386/i386.c (LONG_TYPE_SIZE): Remove.
12116         (EMPTY_FIELD_BOUNDARY): Remove.
12117         * config/i386/i386-interix.h (PCC_BITFIELD_TYPE_MATTERS): Remove.
12118
12119 2010-08-12  Jakub Jelinek  <jakub@redhat.com>
12120
12121         PR debug/45259
12122         * caller-save.c (save_call_clobbered_regs): Only swap notes with
12123         DEBUG_INSNs if n_regs_saved.
12124
12125 2010-08-12  Wei Guozhi  <carrot@google.com>
12126
12127         PR target/44999
12128         * config/arm/arm.md (andsi3): Change to zero extension if possible.
12129         * config/arm/thumb2.md (thumb2_zero_extendqisi2_v6): Change the name.
12130
12131 2010-08-11  Vladimir Makarov  <vmakarov@redhat.com>
12132
12133         * ira-int.h (ira_remove_allocno_copy_from_list): Remove.
12134
12135         * ira-build.c (ira_remove_allocno_copy_from_list): Remove.
12136
12137 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12138
12139         * graphite-sese-to-poly.c (rewrite_close_phi_out_of_ssa): Add back
12140         the case removed in the previous patch, when the only phi argument
12141         is defined in the same loop as the phi node itself.  Handle it
12142         separately from the invariant case by both propagating it outside
12143         the region and replacing the phi node with an assign.
12144
12145 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12146
12147         * graphite-sese-to-poly.c (rewrite_close_phi_out_of_ssa): The only
12148         constant phi nodes with one argument are is_gimple_min_invariant
12149         and SSA_NAME_IS_DEFAULT_DEF.
12150
12151 2010-08-11  Andreas Simbuerger  <simbuerg@fim.uni-passau.de>
12152
12153         * graphite-cloog-util.c (oppose_constraint):
12154         Extend loop counter's value range (CLOOG_ORG).
12155         (cloog_matrix_to_ppl_constraint): Same.
12156         (new_Constraint_System_from_Cloog_matrix): Same.
12157         * graphite-cloog-compat.h (matrix_num_type): New.
12158
12159 2010-08-11  Andreas Simbuerger  <simbuerg@fim.uni-passau.de>
12160
12161         * graphite.c (graphite_initialize): Do not initialize
12162         CLooG and initialize the Parma Polyhedra Library
12163         manually when using CLOOG_ORG.
12164         (graphite_finalize): Do not finalize CLooG and finalize
12165         the Parma Polyhedra Library manually when using CLOOG_ORG.
12166         * graphite-cloog-compat.h (cloog_initialize): Hide function
12167         when using CLOOG_ORG.
12168         (cloog_finalize): Same.
12169
12170 2010-08-11  Andreas Simbuerger  <simbuerg@fim.uni-passau.de>
12171
12172         * graphite-clast-to-gimple.c (free_scattering): Change
12173         CloogDomainList/CloogDomain to CloogScatteringList/CloogScattering
12174         (CLOOG_ORG).
12175         (build_cloog_prog): Same.
12176         * graphite-cloog-compat.h (cloog_domain): Removed.
12177         (cloog_scattering): New.
12178         (cloog_set_domain): Removed.
12179         (cloog_set_scattering): New.
12180         (cloog_next_domain): Removed.
12181         (cloog_next_scattering): New.
12182         (cloog_set_next_domain): Removed.
12183         (cloog_set_next_scattering): New.
12184         (CloogScatteringList): New.
12185         (CloogScattering): New.
12186         (cloog_scattering_free): New.
12187         (new_Cloog_Scattering_from_ppl_Polyhedron): New.
12188         * graphite-cloog-util.c (new_Cloog_Scattering_from_ppl_Polyhedron):
12189         New.
12190
12191 2010-08-11  Andreas Simbuerger  <simbuerg@fim.uni-passau.de>
12192
12193         * graphite-clast-to-gimple.c (build_cloog_prog): Extend with
12194         CloogState.
12195         (set_cloog_options): Same.
12196         (print_clast_stmt): Same.
12197         (scop_to_clast): Same.
12198         (print_generated_program): Same.
12199         (gloog): Same.
12200         * graphite-clast-to-gimple.h: Include graphite-cloog-util.h.
12201         (scop_to_clast): Extend with CloogState.
12202         * graphite-cloog-util.c: Include graphite-cloog-compat.h
12203         (new_Cloog_Domain_from_ppl_Polyhedron):
12204         Extend with CloogState.  Use cloog_domain_from_cloog_matrix (CLOOG_ORG).
12205         (new_Cloog_Domain_from_ppl_Pointset_Powerset): Extend with CloogState.
12206         (new_Cloog_Domain_from_ppl_Polyhedron): Same.
12207         * graphite-cloog-util.h (build_cloog_prog): Same.
12208         * graphite-cloog-copat.h (build_cloog_prog): New.
12209         (CloogState): New.
12210         (cloog_state_malloc): New.
12211         (cloog_state_free): New.
12212         (cloog_loop_malloc): New.
12213         (cloog_options_malloc): New.
12214         (cloog_statement_alloc): New.
12215         (cloog_domain_from_cloog_matrix): New.
12216         (new_Cloog_Domain_from_ppl_Pointset_Powerset): New.
12217         (new_Cloog_Domain_from_ppl_Polyhedron): New.
12218
12219 2010-08-11  Andreas Simbuerger  <simbuerg@fim.uni-passau.de>
12220
12221         * graphite-clast-to-gimple.c (clast_name_to_gcc): Parameter
12222         type of NAME now depends on used CLooG version.
12223         (clast_to_gcc_expression): Replace expr_* with clast_expr_*.
12224         (gcc_type_for_clast_expr): Same.
12225         (print_clast_stmt): Replace pprint with clast_pprint.
12226         * graphite-cloog-compat.h: Provide compatibility macros for
12227         CLooG Legacy.
12228         (clast_name_p): New.
12229         (clast_expr_term): New.
12230         (clast_expr_red): New.
12231         (clast_expr_bin): New.
12232         (clast_pprint): New.
12233
12234 2010-08-11  Andreas Simbuerger  <simbuerg@fim.uni-passau.de>
12235
12236         * graphite-clast-to-gimple.c (set_cloog_options): Make CLooG options
12237         compatible to newer CLooG releases (CLOOG_ORG).
12238         (build_cloog_prog): Pass CloogOptions to more functions (CLOOG_ORG).
12239         (scop_to_clast): Pass CloogOptions to build_cloog_prog (CLOOG_ORG).
12240         * graphite-cloog-compat.h: Add compatibility macros for CLooG Legacy.
12241         (build_cloog_prog) : New.
12242         (cloog_program_extract_scalars): New.
12243         (cloog_program_scatter): New.
12244
12245 2010-08-11  Andreas Simbuerger  <simbuerg@fim.uni-passau.de>
12246
12247         * graphite-clast-to-gimple.c: Include graphite-cloog-compat.h
12248         conditionally (CLOOG_ORG).
12249         * graphite-cloog-compat.h: New.  Include graphite-cloog-compat.h.
12250         (cloog_statement_usr): New.
12251         (cloog_domain): Same.
12252         (cloog_set_domain): Same.
12253         (cloog_next_domain): Same.
12254         (cloog_set_next_domain): Same.
12255         (cloog_program_nb_scattdims): Same.
12256         (cloog_program_set_nb_scattdims): Same.
12257         (cloog_program_names): Same.
12258         (cloog_program_set_names): Same.
12259         (cloog_program_set_context): Same.
12260         (cloog_program_set_loop): Same.
12261         (cloog_program_blocklist): Same.
12262         (cloog_program_set_blocklist): Same.
12263         (cloog_program_scaldims): Same.
12264         (cloog_program_set_scaldims): Same.
12265         (cloog_names_nb_parameters): Same.
12266         (cloog_names_set_nb_parameters): Same.
12267         (cloog_names_parameters): Same.
12268         (cloog_names_set_parameters): Same.
12269         (cloog_names_set_nb_iterators): Same.
12270         (cloog_names_set_iterators): Same.
12271         (cloog_names_set_nb_scattering): Same.
12272         (cloog_names_set_scattering): Same.
12273         (cloog_statement_set_usr): Same.
12274         (cloog_loop_set_next): Same.
12275         (cloog_loop_set_domain): Same.
12276         (cloog_loop_set_block): Same.
12277         (cloog_block_list_next): Same.
12278         (cloog_block_list_set_next):
12279         (cloog_block_list_set_block): Same.
12280
12281 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12282
12283         * graphite-sese-to-poly.c (rewrite_cross_bb_scalar_deps): Returns
12284         a bool.
12285         (rewrite_commutative_reductions_out_of_ssa_close_phi): Same.
12286         (rewrite_commutative_reductions_out_of_ssa_loop): Same.
12287         (rewrite_cross_bb_scalar_deps_out_of_ssa): Call scev_reset_htab
12288         when something has been changed.
12289         (rewrite_commutative_reductions_out_of_ssa): Same.
12290
12291 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12292
12293         * graphite-sese-to-poly.c (propagate_expr_outside_region): Also
12294         handle the case when def is in the sese region.
12295         (rewrite_close_phi_out_of_ssa): Call propagate_expr_outside_region
12296         for invariant expressions.
12297         (rewrite_cross_bb_phi_deps): Removed.
12298         (rewrite_cross_bb_scalar_deps): Also handle GIMPLE_PHI nodes.
12299         (rewrite_cross_bb_scalar_deps_out_of_ssa): Do not call
12300         rewrite_cross_bb_phi_deps.
12301
12302 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12303
12304         * graphite-sese-to-poly.c
12305         (rewrite_commutative_reductions_out_of_ssa_loop): Call
12306         scev_analyzable_p only on is_gimple_reg
12307
12308 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12309
12310         * graphite-sese-to-poly.c (propagate_expr_outside_region): New.
12311         (rewrite_close_phi_out_of_ssa): Propagate constant values or
12312         parametric expressions outside the scop region.
12313         (rewrite_cross_bb_scalar_deps): Same.
12314         * sese.c (rename_uses): Use NULL_TREE instead of NULL for trees.
12315
12316 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12317
12318         * graphite-sese-to-poly.c (rewrite_phi_out_of_ssa): Use
12319         SSA_NAME_DEF_STMT only on SSA_NAMEs.
12320
12321 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12322
12323         * tree-scalar-evolution.c (instantiate_scev_name): Do not
12324         instantiate default definitions.
12325
12326 2010-08-11  Vladimir Kargov  <kargov@gmail.com>
12327             Sebastian Pop  <sebastian.pop@amd.com>
12328
12329         * cfgloop.c (is_loop_exit): Renamed loop_exits_to_bb_p.
12330         (loop_exits_from_bb_p): New.
12331         * cfgloop.h (is_loop_exit): Renamed loop_exits_to_bb_p.
12332         (loop_exits_from_bb_p): Declared.
12333         * graphite-scop-detection.c (scopdet_basic_block_info): Call
12334         loop_exits_to_bb_p.
12335
12336 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12337
12338         * graphite-sese-to-poly.c (rewrite_close_phi_out_of_ssa): Add an
12339         extra parameter for the region.  Call scev_analyzable_p.
12340         (rewrite_reductions_out_of_ssa): Update call to
12341         rewrite_close_phi_out_of_ssa.
12342         (rewrite_cross_bb_phi_deps): Same.
12343         (rewrite_commutative_reductions_out_of_ssa_loop): Add an extra
12344         parameter for the region.  Call scev_analyzable_p.
12345         (rewrite_commutative_reductions_out_of_ssa): Update call to
12346         rewrite_commutative_reductions_out_of_ssa_loop.
12347
12348 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12349
12350         * sese.c (rename_uses): Call unshare_expr before force_gimple_operand.
12351
12352 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12353
12354         * graphite-sese-to-poly.c (reduction_phi_p): Do not rewrite out of
12355         SSA scalar phi nodes that can be scev_analyzable_p.
12356
12357 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12358
12359         * graphite-sese-to-poly.c (rewrite_close_phi_out_of_ssa): Correctly
12360         handle SSA_NAME_IS_DEFAULT_DEF.
12361
12362 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12363
12364         * sese.c (rename_uses): Handl unconditionally gimple_debug statements.
12365
12366 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12367
12368         * graphite-sese-to-poly.c (rewrite_close_phi_out_of_ssa): Special
12369         case non close-phi nodes with one argument.
12370
12371 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12372
12373         * sese.h (scev_analyzable_p): Scevs could be expressions without
12374         chrecs and still be scev_analyzable_p.
12375
12376 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12377
12378         * params.def (PARAM_SCEV_MAX_EXPR_SIZE): Bump the value to 100.
12379
12380 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12381
12382         * cfgloop.c (alloc_loop): Remove initialization of loop->single_iv.
12383         * cfgloop.h (struct loop): Remove single_iv field.
12384         * graphite-sese-to-poly.c (graphite_loop_normal_form): Removed.
12385         (scop_canonicalize_loops): Removed.
12386         (scop_ivs_can_be_represented): Do not use loop->single_iv.  Iterate
12387         over all the loop phi nodes in loop->header.
12388         (build_poly_scop): Remove use of scop_canonicalize_loops.
12389
12390 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12391
12392         * graphite-sese-to-poly.c (rewrite_cross_bb_scalar_deps): Also
12393         handle GIMPLE_CALL.
12394
12395 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12396
12397         * tree-chrec.c (chrec_apply): Should only apply to the specified
12398         variable.  Also handle multivariate chains of recurrences that
12399         satisfy evolution_function_is_affine_p.  Also handle CASE_CONVERT.
12400
12401 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12402
12403         * graphite-clast-to-gimple.c (debug_clast_name_index): Removed.
12404         (debug_clast_name_indexes_1): Removed.
12405         (debug_clast_name_indexes): Removed.
12406         (pbb_to_depth_to_oldiv): Removed.
12407         (build_iv_mapping): Replace the use of rename_map with iv_map.
12408         (translate_clast_user): Remove uses of rename_map.  Allocate and
12409         free iv_map.
12410         (translate_clast_for_loop): Remove uses of rename_map.
12411         (translate_clast_for): Same.
12412         (translate_clast_guard): Same.
12413         (translate_clast): Same.
12414         (gloog): Same.
12415         * graphite-clast-to-gimple.h (debug_clast_name_indexes): Removed.
12416         * graphite-sese-to-poly.c (scev_analyzable_p): Moved...
12417         * sese.c (set_rename): Now static.
12418         (rename_variables_in_stmt): Removed.
12419         (rename_uses): New.
12420         (is_parameter): Removed.
12421         (is_iv): Removed.
12422         (expand_scalar_variables_call): Removed.
12423         (expand_scalar_variables_ssa_name): Removed.
12424         (expand_scalar_variables_expr): Removed.
12425         (expand_scalar_variables_stmt): Removed.
12426         (expand_scalar_variables): Removed.
12427         (rename_variables): Removed.
12428         (remove_condition): Removed.
12429         (get_true_edge_from_guard_bb): Removed.
12430         (get_false_edge_from_guard_bb): Removed.
12431         (struct igp): Removed.
12432         (default_before_guard): Removed.
12433         (convert_for_phi_arg): Removed.
12434         (add_guard_exit_phis): Removed.
12435         (insert_guard_phis): Removed.
12436         (graphite_copy_stmts_from_block): Now also uses iv_map and a
12437         region.  Do not copy conditions.  Do not copy induction variables.
12438         Call rename_uses.
12439         (copy_bb_and_scalar_dependences): Allocate a local rename_map for
12440         the translated statement.  Use the iv_map for the induction
12441         variable renaming.
12442         * sese.h (copy_bb_and_scalar_dependences): Update declaration.
12443         (set_rename): Removed declaration.
12444         (scev_analyzable_p): ...here.
12445         * tree-chrec.c (chrec_apply_map): New.
12446         * tree-chrec.h (chrec_apply_map): Declared.
12447
12448 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12449
12450         * graphite-clast-to-gimple.c (translate_clast_for_loop): Do not call
12451         insert_loop_close_phis.
12452         * sese.c (name_defined_in_loop_p): Removed.
12453         (expr_defined_in_loop_p): Removed.
12454         (alive_after_loop): Removed.
12455         (close_phi_not_yet_inserted_p): Removed.
12456         (struct alep): Removed.
12457         (add_loop_exit_phis): Removed.
12458         (insert_loop_close_phis): Removed.
12459
12460 2010-08-11  Andreas Simbuerger  <simbuerg@fim.uni-passau.de>
12461
12462         * graphite-cloog-util.c
12463         (cloog_matrix_to_ppl_constraint): Fix flipped condition.
12464         * graphite-poly.c
12465         (psct_scattering_dim_for_loop_depth): Same.
12466
12467 2010-08-11  Andreas Simbuerger  <simbuerg@fim.uni-passau.de>
12468
12469         * graphite-cloog-util.h: Added cloog.h.
12470         * graphite-blocking.c: Removed cloog.h.
12471         * graphite-dependences.c: Same.
12472         * graphite-interchange.c: Same.
12473         * graphite-poly.c: Same.
12474         * graphite-ppl.c: Same.
12475         * graphite-scop-detection.c: Same.
12476         * graphite-sese-to-poly.c:
12477         Removed cloog.h.
12478         Removed graphite-clast-to-gimple.h.
12479         (check_poly_representation): Removed (unused).
12480         * graphite-sese-to-poly.h
12481         (check_poly_representation): Removed (unused).
12482
12483 2010-08-11  Andreas Simbuerger  <simbuerg@fim.uni-passau.de>
12484
12485         * Makefile.in (OBJS-common): Added graphite-cloog-util.o.
12486         (graphite-clast-to-gimple.o): Added graphite-cloog-util.h.
12487         (graphite-cloog-util.o): New.
12488         (graphite-ppl.o): Added graphite-cloog-util.h.
12489         * graphite-clast-to-gimple.c:
12490         Added graphite-cloog-util.h to include statements.
12491         * graphite-cloog-util.c: New.
12492         (new_Cloog_Matrix_from_ppl_Polyhedron): Moved from graphite-ppl.c.
12493         (new_Cloog_Domain_from_ppl_Polyhedron): Same.
12494         (new_Cloog_Domain_from_ppl_Pointset_Powerset): Same.
12495         (new_C_Polyhedron_from_Cloog_Matrix): Same.
12496         (insert_constraint_into_matrix): Same.
12497         (ppl_Constrain_System_number_of_constraints): Same.
12498         (new_Cloog_Matrix_from_ppl_Constraint_System): Same.
12499         (oppose_constraint): Same.
12500         (cloog_matrix_to_ppl_constraint): Same.
12501         (new_Constraint_System_from_Cloog_Matrix): Same.
12502         * graphite-cloog-util.h: New.
12503         (new_Cloog_Matrix_from_ppl_Polyhedron): Moved from graphite-ppl.h.
12504         (new_Cloog_Domain_from_ppl_Polyhedron): Same.
12505         (new_Cloog_Domain_from_ppl_Pointset_Powerset): Same.
12506         (new_C_Polyhedron_from_Cloog_Matrix): Same.
12507         (insert_constraint_into_matrix): Same.
12508         * graphite-ppl.c:
12509         Added graphite-cloog-util.h to include statements.
12510         (new_Cloog_Matrix_from_ppl_Polyhedron): Moved to graphite-cloog-util.c.
12511         (new_Cloog_Domain_from_ppl_Polyhedron): Same.
12512         (new_Cloog_Domain_from_ppl_Pointset_Powerset): Same.
12513         (new_C_Polyhedron_from_Cloog_Matrix): Same.
12514         (insert_constraint_into_matrix): Same.
12515         (ppl_Constrain_System_number_of_constraints): Same.
12516         (new_Cloog_Matrix_from_ppl_Constraint_System): Same.
12517         (oppose_constraint): Same.
12518         (cloog_matrix_to_ppl_constraint): Same.
12519         (new_Constraint_System_from_Cloog_Matrix): Same.
12520         * graphite-ppl.h:
12521         (new_Cloog_Matrix_from_ppl_Polyhedron): Moved to
12522         graphite-cloog-util.h.
12523         (new_Cloog_Domain_from_ppl_Polyhedron): Same.
12524         (new_Cloog_Domain_from_ppl_Pointset_Powerset): Same.
12525         (new_C_Polyhedron_from_Cloog_Matrix): Same.
12526         (insert_constraint_into_matrix): Same.
12527
12528 2010-08-11  Andreas Simbuerger  <simbuerg@fim.uni-passau.de>
12529
12530         * graphite-clast-to-gimple.c
12531         (precision_for_value): Resolve value_* calls to matching mpz_* calls.
12532         (precision_for_interval): Same.
12533         (gcc_type_for_interval): Same.
12534         (compute_type_for_level): Same.
12535         * graphite-interchange.c
12536         (lst_interchange_profitable_p): Same.
12537         * graphite-poly.c
12538         (psct_scattering_dim_for_loop_depth): Same.
12539         * graphite-ppl.c
12540         (ppl_max_for_le_pointset): Same.
12541         (ppl_min_for_le_pointset): Same.
12542
12543 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12544
12545         * graphite-sese-to-poly.c (rewrite_degenerate_phi): New.
12546         (rewrite_reductions_out_of_ssa): Call it for degenerate_phi_result.
12547
12548 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12549
12550         * graphite-sese-to-poly.c (rewrite_cross_bb_phi_deps): Call
12551         rewrite_close_phi_out_of_ssa.
12552
12553 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12554
12555         * graphite-sese-to-poly.c (rewrite_cross_bb_phi_deps): Remove dead code.
12556
12557 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12558
12559         * graphite-clast-to-gimple.c (build_iv_mapping): Rename map with
12560         rename_map.
12561         * sese.c (debug_rename_map): Same.
12562         (get_rename): Same.
12563         (set_rename): Same.
12564         (rename_variables_in_stmt): Same.
12565         (expand_scalar_variables_call): Same.
12566         (expand_scalar_variables_ssa_name): Same.
12567         (expand_scalar_variables_expr): Same.
12568         (expand_scalar_variables_stmt): Same.
12569         (expand_scalar_variables): Same.
12570         (rename_variables): Same.
12571         (graphite_copy_stmts_from_block): Same.
12572         (copy_bb_and_scalar_dependences): Same.
12573
12574 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12575
12576         * graphite-clast-to-gimple.c (copy_renames): Removed.
12577         (translate_clast_for): Do not call copy_renames.
12578         (translate_clast_guard): Same.
12579
12580 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12581
12582         * graphite-sese-to-poly.c (rewrite_reductions_out_of_ssa): Moved up.
12583         (rewrite_cross_bb_phi_deps): Split out of rewrite_cross_bb_scalar_deps.
12584         (rewrite_cross_bb_scalar_deps_out_of_ssa): Run rewrite_cross_bb_phi_deps
12585         before rewrite_cross_bb_scalar_deps.
12586
12587 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12588
12589         * graphite-sese-to-poly.c (rewrite_commutative_reductions_out_of_ssa):
12590         Early return in when flag_associative_math is not set.
12591
12592 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12593
12594         * graphite-sese-to-poly.c (rewrite_phi_out_of_ssa): Always insert out
12595         of SSA copies on edges except for loop->latch.
12596
12597 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12598
12599         * graphite-sese-to-poly.c (rewrite_cross_bb_scalar_deps_out_of_ssa):
12600         Split out of rewrite_reductions_out_of_ssa.
12601         * graphite-sese-to-poly.h (rewrite_cross_bb_scalar_deps_out_of_ssa):
12602         Declared.
12603         * graphite.c (graphite_transform_loops): Call it.
12604
12605 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12606
12607         * graphite.c (graphite_transform_loops): Add two more dbg_cnt calls.
12608
12609 2010-08-11  Alexander Monakov  <amonakov@ispras.ru>
12610
12611         * dbgcnt.def (graphite_scop): New counter.
12612         * graphite.c: Include dbgcnt.h.
12613         (graphite_transform_loops): Use new counter to limit transformations.
12614         * Makefile.in (graphite.o): Depend on DBGCNT_H.
12615
12616 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12617
12618         * passes.c (init_optimization_passes): Add pass_graphite.
12619         Schedule a pass_copy_prop before pass_graphite_transforms.
12620         * timevar.def (TV_GRAPHITE): Declared.
12621         * tree-pass.h (pass_graphite): Declared.
12622         * tree-ssa-loop.c (pass_graphite): New.
12623
12624 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12625
12626         * graphite-clast-to-gimple.c (gloog): Do not pass scops in parameter.
12627         Remove calls to rename_nb_iterations and rename_sese_parameters.
12628         * graphite-clast-to-gimple.h (gloog): Update declaration.
12629         * graphite.c (graphite_transform_loops): Update call to gloog.
12630         * sese.c (rename_variables_in_expr): Removed.
12631         (rename_nb_iterations): Removed.
12632         (rename_sese_parameters): Removed.
12633         * sese.h (rename_nb_iterations): Removed.
12634         (rename_sese_parameters): Removed.
12635
12636 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12637
12638         * graphite-clast-to-gimple.c (gloog): Remove call to
12639         sese_adjust_liveout_phis.
12640         * graphite-sese-to-poly.c (scev_analyzable_p): When scev returns an
12641         SSA_NAME, allow it to be handled by rewrite_cross_bb_scalar_deps.
12642         (rewrite_cross_bb_scalar_deps): Handle GIMPLE_PHI nodes: call
12643         rewrite_phi_out_of_ssa.
12644         * sese.c (get_vdef_before_sese): Removed.
12645         (sese_adjust_vphi): Removed.
12646         (sese_adjust_liveout_phis): Removed.
12647         * sese.h (sese_adjust_liveout_phis): Removed.
12648
12649 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12650
12651         * graphite-sese-to-poly.c (insert_out_of_ssa_copy): Pass an extra
12652         argument for the place after which to insert the out of SSA copy.
12653         (rewrite_close_phi_out_of_ssa): Update calls to insert_out_of_ssa_copy.
12654         (rewrite_phi_out_of_ssa): Same.
12655         (rewrite_cross_bb_scalar_deps): Same.
12656         (insert_copyout): Removed.
12657         (insert_copyin): Removed.
12658         (translate_scalar_reduction_to_array): Call insert_out_of_ssa_copy and
12659         insert_out_of_ssa_copy_on_edge instead of insert_copyout and
12660         insert_copyin.
12661
12662 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12663
12664         * graphite-sese-to-poly.c (build_scop_bbs): Not static anymore.
12665         (rewrite_reductions_out_of_ssa): Same.
12666         (rewrite_commutative_reductions_out_of_ssa): Same.
12667         (build_poly_scop): Do not call these functions.
12668         * graphite-sese-to-poly.h (build_poly_scop): Declared.
12669         (rewrite_reductions_out_of_ssa): Declared.
12670         (rewrite_commutative_reductions_out_of_ssa): Declared.
12671         * graphite.c (graphite_transform_loops): Call on every scop
12672         rewrite_commutative_reductions_out_of_ssa before calling
12673         rewrite_reductions_out_of_ssa and build_scop_bbs.
12674
12675 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12676
12677         * graphite-dependences.c (dot_deps): Make system call to dotty run
12678         in background.
12679         (dot_deps_stmt): Same.
12680         * graphite-poly.c (dot_lst): Same.
12681
12682 2010-08-11  Sebastian Pop  <sebastian.pop@amd.com>
12683
12684         * graphite-sese-to-poly.c (loop_entry_phi_arg): Renamed
12685         phi_arg_in_outermost_loop.
12686         (remove_simple_copy_phi): Call phi_arg_in_outermost_loop.
12687         (remove_invariant_phi): Same.
12688
12689 2010-08-11  Anatoly Sokolov  <aesok@post.ru>
12690
12691         * target.def (output_addr_const_extra): New hook.
12692         * doc/tm.texi.in (TARGET_ASM_OUTPUT_ADDR_CONST_EXTRA): Document.
12693         * doc/tm.texi: Regenerate.
12694         * targhooks.c (default_asm_output_addr_const_extra): New function.
12695         * targhooks.h (default_asm_output_addr_const_extra): Declare.
12696         * final.c (output_addr_const): Use TARGET_ASM_OUTPUT_ADDR_CONST_EXTRA
12697         target hook.
12698
12699         * config/i386/i386.h (OUTPUT_ADDR_CONST_EXTRA): Remove.
12700         * config/i386/i386-protos.h (output_addr_const_extra): Remove.
12701         * config/i386/i386.h (output_addr_const_extra): Rename to...
12702         (i386_asm_output_addr_const_extra): ...this. Make static.
12703         (TARGET_ASM_OUTPUT_ADDR_CONST_EXTRA): Define.
12704
12705 2010-08-11  Richard Henderson  <rth@redhat.com>
12706
12707         * config/i386/i386.h (HARD_REGNO_CALL_PART_CLOBBERED): New.
12708
12709 2010-08-11  Nick Clifton  <nickc@redhat.com>
12710
12711         * config/stormy16/stormy16-lib2.c (__cmpsi2): New function.
12712         * config/stormy16/stormy16-lib2-cmpsi2.c: New file.
12713         * config/stormy16/t-stormy16 (LIB2FUNCS_EXTRA): Add
12714         stormy16-lib2-cmpsi.c.
12715
12716         * config/stormy16/t-stormy16 (TARGET_LIBGCC2_CFLAGS): Change to
12717         -O2.
12718
12719 2010-08-11  Joseph Myers  <joseph@codesourcery.com>
12720
12721         * opts.h (struct cl_option_handler_func): Make handler take
12722         cl_decoded_option structure as parameter, not individual elements.
12723         (struct cl_option_handlers): Make callbacks take cl_decoded_option
12724         structure as parameter, not individual elements.
12725         (handle_option): Take cl_decoded_option structure as parameter,
12726         not individual elements.
12727         (handle_generated_option): Declare.
12728         * opts-common.c (handle_option): Take cl_decoded_option structure
12729         as parameter, not individual elements.  Update calls to callback
12730         and handler functions.
12731         (handle_generated_option): New.
12732         (read_cmdline_option): Update calls to callback functions and
12733         handle_option.
12734         * opts.c (common_handle_option, complain_wrong_lang,
12735         unknown_option_callback, post_handling_callback,
12736         lang_handle_option, target_handle_option): Take cl_decoded_option
12737         structure as parameter, not individual elements.
12738         (lang_handle_option, target_handle_option, common_handle_option):
12739         Assert option has at most one argument.
12740         (enable_warning_as_error): Call handle_generated_option instead of
12741         handle_option.  Do not pass -Werror argument as argument of
12742         generated option.
12743
12744 2010-08-10  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
12745
12746         * config/pa/linux-atomic.c (SUBWORD_VAL_CAS): Instantiate with
12747         'unsigned short' and 'unsigned char' instead of 'short' and 'char'.
12748         (SUBWORD_BOOL_CAS): Likewise.
12749         (SUBWORD_SYNC_OP): Likewise.
12750         (SUBWORD_TEST_AND_SET): Likewise.
12751         (FETCH_AND_OP_WORD): Parenthesise INF_OP
12752         (SUBWORD_SYNC_OP): Likewise.
12753         (OP_AND_FETCH_WORD): Likewise.
12754
12755 2010-08-10  Xinliang David Li  <davidxl@google.com>
12756
12757         * tree-ssa-loop-ivopts.c (get_address_cost): Properly
12758         compute max/min offset in address.
12759
12760 2010-08-10  Vladimir Makarov  <vmakarov@redhat.com>
12761
12762         * ira-live.c: Include sbitmap.h.
12763         (remove_some_program_points_and_update_live_ranges): Use sbitmaps.
12764         Compress live ranges even more.
12765
12766 2010-08-10  Nathan Froyd  <froydnj@codesourcery.com>
12767
12768         * coverage.c (ctr_labels): Delete.
12769
12770 2010-08-10  Bernd Schmidt  <bernds@codesourcery.com>
12771
12772         PR bootstrap/45177
12773         * config/arm/arm.c (multiple_operation_profitable_p): Move xscale
12774         test here from arm_gen_load_multiple_1.
12775         (arm_gen_load_multiple_1, arm_gen_store_multiple_1): Use
12776         multiple_operation_profitable_p.
12777
12778 2010-08-10  Nathan Froyd  <froydnj@codesourcery.com>
12779
12780         * tree-ssa-pre.c (init_pre): Call alloc_aux_for_blocks.
12781         (fini_pre): Call free_aux_for_blocks.  Delete unused bb variable.
12782
12783 2010-08-10  Richard Henderson  <rth@redhat.com>
12784
12785         * config/i386/i386.c (ix86_compute_frame_layout): Re-align stack
12786         after saving registers.  Assert that SSE registers are only saved
12787         with a sufficiently aligned frame.
12788         (ix86_emit_save_reg_using_mov): Assert realigned only with DRAP;
12789         remove stack_realign_fp handling.
12790         (ix86_expand_prologue): Save int registers before stack_realign_fp,
12791         and do not mark the stack alignment as frame related.
12792         (ix86_expand_epilogue): SP is now invalid with stack_realign_fp.
12793
12794         * dwarf2out.c (dwarf2out_frame_debug_expr): Flush queued register
12795         saves when re-aligning the stack.
12796
12797 2010-08-10  Nathan Froyd  <froydnj@codesourcery.com>
12798
12799         * basic-block.h (alloc_aux_for_block, alloc_aux_for_edge): Delete.
12800         * cfg.c (alloc_aux_for_block, alloc_aux_for_edge): Make static.
12801         (alloc_aux_for_blocks, clear_aux_for_blocks): Use FOR_ALL_BB.
12802
12803 2010-08-10  Nathan Froyd  <froydnj@codesourcery.com>
12804
12805         * dwarf2out.c (struct die_struct): Move die_tag to the end.
12806
12807 2010-08-09  Sofiane Naci  <sofiane.naci@arm.com>
12808
12809         * config/arm/iterators.md: New file.
12810         * config/arm/arm.md: Include iterators.md.
12811         (QHSI): Move to new file.
12812         (LTUGEU, cnb, optab, ior_xor): Likewise.
12813         * config/arm/iwmmxt.md (VMMX): Move to new file.
12814         (VSHFT, MMX_char): Likewise.
12815         * config/arm/neon.md (VD): Move to new file.
12816         (VDX, VDI, VQ, VQX, VQI, VQXMOV, VSTRUCT, VTAB, V_TAB_n, VW): Likewise.
12817         (VN, VDQ, VDQW, VDQIW, VCVTF, VCVTI, VMD, VMQ, VMDQ, VMDI): Likewise.
12818         (VMDQI, VX, VE, V64, V32, V_CVTTO, V_elem, V_ext): Likewise.
12819         (V_two_elem, V_three_elem, V_four_elem, V_req, V_widen): Likewise.
12820         (V_narrow, V_HALF, V_half,V_DOUBLE, V_double): Likewise.
12821         (V_double_width, V_cmp_result, V_if_elem, V_s_elem): Likewise.
12822         (V_u_elem, V_uf_sclr, V_sz_elem, VD_dup): Likewise.
12823         (V_PAIR, vqh_ops, vqhs_ops, VQH_mnem, VQH_sign, V_suf64): Likewise.
12824         (scalar_mul_constraint,Is_float_mode, Scalar_mul_8_16): Likewise.
12825         (Is_d_reg, V_mode_nunits): Likewise.
12826         * config/arm/vec-common.md (VALL): Move to new file.
12827         (VALLW, VINT, VINTW): Likewise.
12828
12829 2010-08-10  Bernd Schmidt  <bernds@codesourcery.com>
12830
12831         PR middle-end/45182
12832         * combine.c (make_compound_operation): Don't try to convert
12833         shifts into multiplications for modes that aren't SCALAR_INT_MODE_P.
12834
12835 2010-08-10  Richard Guenther  <rguenther@suse.de>
12836
12837         * tree.h (get_object_alignment): Adjust prototype.
12838         * builtins.c (get_object_alignment): Return unsigned int,
12839         drop the align parameter.  Handle MEM_REF, MISALIGNED_INDIRECT_REF
12840         and TARGET_MEM_REF properly.
12841         (get_pointer_alignment): Adjust.
12842         * emit-rtl.c (get_mem_align_offset): Adjust comment.
12843         (set_mem_attributes_minus_bitpos): Adjust.
12844         * tree-ssa-ccp.c (get_value_from_alignment): Adjust.
12845
12846 2010-08-10  Richard Guenther  <rguenther@suse.de>
12847
12848         * tree-ssa-copy.c (set_copy_of_val): Use operand_equal_p.
12849         (copy_prop_visit_assignment): Simplify.
12850         (copy_prop_visit_stmt): Also visit assignments from
12851         constants.
12852         (copy_prop_visit_phi_node): Use operand_equal_p.
12853
12854 2010-08-09  Nathan Froyd  <froydnj@codesourcery.com>
12855
12856         * ipa-split.c (find_split_points): Free stack.
12857
12858 2010-08-09  Nathan Froyd  <froydnj@codesourcery.com>
12859
12860         * tree.h (tree_node_kind) [perm_list_kind,temp_list_kind]: Delete.
12861         * tree.c (tree_node_kind): Delete corresponding entries.
12862
12863 2010-08-09  H.J. Lu  <hongjiu.lu@intel.com>
12864
12865         * alias.c (may_alias_p): Remove unused ret.
12866
12867 2010-08-09  Bingfeng Mei  <bmei@broadcom.com>
12868
12869         * ddg.c (walk_mems_2): Moved from alias.c, use may_alias_p instead of
12870         alias_sets_conflict_p.
12871         (walk_mems_1): Moved from alias.c.
12872         (insns_may_alias_p): New function, originally insn_alias_sets_conflict_p
12873         in alias.c.
12874         (add_inter_loop_mem_dep): Use insns_may_alias_p now.
12875         * cse.c (cse_insn): New argument in calling nonoverlapping_memrefs_p.
12876         * alias.c (walk_mems_2): Moved to ddg.c.
12877         (walk_mems_1): Ditto.
12878         (insn_alias_sets_conflict_p): Renamed to insns_may_alias_p and moved
12879         to ddg.c.
12880         (nonoverlapping_memrefs_p): Add flag to guard offset-based memory
12881         disambiguation.
12882         *(may_alias_p): New function to check whether two memory expression
12883         may alias or not. Currently used in buidling inter-iteration memory
12884         dependence.
12885         *alias.h (nonoverlapping_memrefs_p): New flag as third argument.
12886         (insn_alias_sets_conflict_p): Removed
12887         *rtl.h (may_alias_p): New function prototype.
12888
12889 2010-08-09  Nathan Froyd  <froydnj@codesourcery.com>
12890
12891         * tree.c (nreverse): Assert that we don't have a BLOCK.
12892
12893 2010-08-09  Nathan Froyd  <froydnj@codesourcery.com>
12894
12895         * builtins.c (fold_builtin_next_arg): Use stdarg_p.
12896         * config/arm/arm.c (arm_get_pcs_model): Likewise.
12897         * config/avr/avr.c (init_cumulative_args): Likewise.
12898         * config/iq2000/iq2000.c (iq2000_expand_prologue): Likewise.
12899         * config/lm32/lm32.c (lm32_setup_incoming_varargs): Likewise.
12900         * config/m68k/m68k.c (m68k_return_pops_args): Likewise.
12901         * config/mn10300/mn10300.c (mn10300_builtin_saveregs): Likewise.
12902         * config/pa/pa.c (hppa_builtin_saveregs): Likewise.
12903         * config/pa/som.h (ASM_DECLARE_FUNCTION_NAME): Likewise.
12904         * config/rs6000/rs6000.c (init_cumulative_args): Likewise.
12905         * dwarf2out.c (gen_subprogram_die): Likewise.
12906         * function.c (allocate_struct_function): Likewise.
12907         * c-aux-info.c (gen_formal_list_for_func_dec): Likewise.
12908         (deserves_ellipsis): Delete.
12909
12910 2010-08-09  Richard Guenther  <rguenther@suse.de>
12911
12912         * tree-ssa-copy.c (cached_last_copy_of): Remove.
12913         (valueize_val): New function.
12914         (get_last_copy_of): Remove.
12915         (set_copy_of_val): Simplify.
12916         (dump_copy_of): Likewise.
12917         (copy_prop_visit_cond_stmt): Use valueize_val.
12918         (copy_prop_visit_phi_node): Properly handle unvisited names.
12919         Drop code managing copy-of chains.
12920         (init_copy_prop): Adjust.
12921         (fini_copy_prop): Likewise.
12922         (execute_copy_prop): Remove obsolete comment.
12923
12924 2010-08-09  Richard Guenther  <rguenther@suse.de>
12925
12926         PR middle-end/44632
12927         * function.c (gimplify_parameters): Do not clear addressable
12928         bit of the original parameter.
12929
12930 2010-08-09  Richard Guenther  <rguenther@suse.de>
12931
12932         PR middle-end/45212
12933         * emit-rtl.c (set_mem_attributes_minus_bitpos): Adjust
12934         alignment from MEM_REF offset only if we took it from the
12935         base object.
12936
12937 2010-08-09  Eric Fisher  <joefoxreal@gmail.com>
12938
12939         * doc/sourcebuild.texi (vect_int_mult): Remove duplicate entry.
12940
12941 2010-08-08  Nathan Froyd  <froydnj@codesourcery.com>
12942
12943         * c-tree.h (build_arg_info): Declare.
12944         * c-decl.c (build_arg_info): Define.
12945         (get_parm_info): Call it.  Delete initialization code.
12946         * c-parser.c (c_parser_parms_declarator): Likewise.
12947         (c_parser_parms_list_declaractor): Likewise.
12948
12949 2010-08-08  Nathan Froyd  <froydnj@codesourcery.com>
12950
12951         * c-tree.h (c_arg_tag): Define.  Define a VEC containing it.
12952         (struct c_arg_info): Change type of tags field.
12953         * c-decl.c (grokdeclarator): Update for changed type of tags field.
12954         (get_parm_info): Likewise.
12955         (store_parm_decls_newstyle): Likewise.
12956
12957 2010-08-08  Nathan Froyd  <froydnj@codesourcery.com>
12958
12959         * config/rs6000/rs6000.c (branch_island): Define.  Define a VEC of it.
12960         (branch_island_list): Delete.
12961         (branch_islands): Declare.
12962         (add_compiler_branch_island): Adjust for branch_islands instead of
12963         branch_island_list.
12964         (macho_branch_islands): Likewise.
12965         (no_previous_def): Likewise.
12966         (get_prev_label): Likewise.
12967
12968 2010-08-08  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
12969
12970         PR boehm-gc/34544
12971         * gthr-posix.h (__gthread_start): Delete.
12972         (__gthread_active_init): Use pthread_default_stacksize_np instead of
12973         pthread_create to determine if hpux pthreads are active.
12974         * gthr-posix95.h (__gthread_start): Delete.
12975         (__gthread_active_init): Likewise use pthread_default_stacksize_np.
12976
12977 2010-08-08  Kai Tietz  <kai.tietz@onevision.com>
12978
12979         * config/i386/mingw32.h ((EXTRA_OS_CPP_BUILTINS): Define
12980         _WIN64 not expanded.
12981
12982 2010-08-07  Uros Bizjak  <ubizjak@gmail.com>
12983             H.J. Lu  <hongjiu.lu@intel.com>
12984
12985         PR target/45213
12986         * config/i386/i386.c (ix86_print_operand): Handle 'q' operand modifier
12987         to output 32bit SFmode immediate as 8 byte sign extended value.
12988
12989 2010-08-07  Marcus Shawcroft  <marcus.shawcroft@arm.com>
12990
12991         * config/arm/linux-atomic.c (SUBWORD_VAL_CAS): Instantiate with
12992         'unsigned short' and 'unsigned char' instead of 'short' and 'char'.
12993         (SUBWORD_BOOL_CAS): Likewise.
12994         (SUBWORD_SYNC_OP): Likewise.
12995         (SUBWORD_TEST_AND_SET): Likewise.
12996         (FETCH_AND_OP_WORD): Parenthesise INF_OP
12997         (SUBWORD_SYNC_OP): Likewise.
12998         (OP_AND_FETCH_WORD): Likewise.
12999
13000 2010-08-07  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
13001
13002         * config/arm/cortex-a9.md: Rewrite VFP Pipeline description.
13003         * config/arm/arm.c (arm_xscale_tune): Initialize sched_adjust_cost.
13004         (arm_fastmul_tune,arm_slowmul_tune, arm_9e_tune): Likewise.
13005         (arm_adjust_cost): Split into xscale_sched_adjust_cost and a
13006         generic part.
13007         (cortex_a9_sched_adjust_cost): New function.
13008         (xscale_sched_adjust_cost): New function.
13009         * config/arm/arm-protos.h (struct tune_params): New field
13010         sched_adjust_cost.
13011         * config/arm/arm-cores.def: Adjust costs for cortex-a9.
13012
13013 2010-08-06  Eric Botcazou  <ebotcazou@adacore.com>
13014
13015         PR target/44942
13016         * config/sparc/sparc.c (function_arg_advance): Always take into account
13017         the padding, if any.
13018
13019 2010-08-06  Richard Guenther  <rguenther@suse.de>
13020
13021         * tree-ssa-ccp.c (struct prop_value_d): Add mask member.
13022         (dump_lattice_value): Dump it.
13023         (get_default_value): Adjust.
13024         (get_constant_value): Likewise.
13025         (set_value_varying): Likewise.
13026         (set_lattice_value): Make sure to not go up the lattice
13027         with bitwise constant values.
13028         (get_value_for_expr): Handle ADDR_EXPRs.
13029         (value_to_double_int): New function.
13030         (get_value_from_alignment): Likewise.
13031         (do_dbg_cnt): Adjust.
13032         (ccp_lattice_meet): Handle partially constant values.
13033         (bit_value_unop_1): New function.
13034         (bit_value_binop_1): Likewise.
13035         (bit_value_unop): Likewise.
13036         (bit_value_binop): Likewise.
13037         (evaluate_stmt): Track partially constant values if
13038         flag_tree_bit_ccp is set.
13039         (ccp_fold_stmt): Dump if we folded a predicate.
13040         (ccp_visit_stmt): Adjust.
13041         * common.opt (ftree-bit-ccp): New flag.
13042         * doc/invoke.texi (ftree-bit-ccp): Document.
13043         * opts.c (decode_options): Enable bit-CCP at -O1.
13044
13045 2010-08-06  Alan Modra  <amodra@gmail.com>
13046
13047         * doc/invoke.texi (RS/6000 and PowerPC Options): Rewrite -mrelocatable
13048         and -mrelocatable-lib description.
13049
13050 2010-08-05  Bernd Schmidt  <bernds@codesourcery.com>
13051
13052         From Martin Thuresson  <martint@google.com>
13053         * postreload.c (reload_cse_simplify_operands): Use
13054         SET_REGNO_RAW instead of SET_REGNO.
13055         * caller-save.c (reg_save_code): Use SET_REGNO_RAW instead of
13056         SET_REGNO.
13057         * ira.c (setup_prohibited_mode_move_regs): Use SET_REGNO_RAW
13058         instead of SET_REGNO.
13059         * rtl.h (SET_REGNO_RAW): New macro.
13060
13061 2010-08-05  Eric Botcazou  <ebotcazou@adacore.com>
13062
13063         * rtlanal.c (nonzero_bits1): Use unsigned HOST_WIDE_INT in all mask
13064         computations.  Fix formatting issues.
13065         (num_sign_bit_copies1): Likewise.
13066         (canonicalize_condition): Likewise.
13067
13068 2010-08-05  Richard Henderson  <rth@redhat.com>
13069
13070         * toplev.h (ctz_hwi, clz_hwi, ffs_hwi): New.
13071         (floor_log2): Use clz_hwi.
13072         (exact_log2): Use ctz_hwi.
13073         * toplev.c (ctz_hwi, clz_hwi, ffs_hwi): New.
13074         * builtins.c (fold_builtin_bitop): Use them.
13075         * simplify-rtx.c (simplify_const_unary_operation): Likewise.
13076         * combine.c (get_pos_from_mask): Use ctz_hwi.
13077         * double-int.c (double_int_ctz): Likewise.
13078         * explow.c (force_reg): Likewise.
13079         * tree.h (SET_DECL_OFFSET_ALIGN): Use ffs_hwi.
13080
13081 2010-08-05  Richard Henderson  <rth@redhat.com>
13082
13083         PR target/45189
13084         * config/i386/i386.c (ix86_emit_save_reg_using_mov): Make sure
13085         the alignment constant is properly sign-extended.
13086
13087 2010-08-05  Richard Guenther  <rguenther@suse.de>
13088
13089         * expr.c (store_expr): Use emit_block_move only if both
13090         source and target are MEMs.  Use store_bit_field if only
13091         the target is a MEM.
13092
13093 2010-08-05  Richard Henderson  <rth@redhat.com>
13094
13095         PR debug/45188
13096         * dwarf2out.c (DWARF2_UNWIND_INFO): Provide default definition.
13097         (INCOMING_RETURN_ADDR_RTX): Likewise.
13098         (dwarf2out_do_frame): Remove conditional compilation.
13099         (dwarf2out_frame_init): Likewise.
13100
13101 2010-08-05  Nicolas Setton  <setton@adacore.com>
13102
13103         * gcov.c (flag_display_progress): New static variable.
13104         (main): Display progress info on standard output if requested.
13105         (options): Add -d/--display-progress.
13106         (print_usage): Print them.
13107         (process_args): Handle them.
13108         * doc/gcov.texi: Document them.
13109
13110 2010-08-05  Martin Jambor  <mjambor@suse.cz>
13111
13112         * ipa-cp.c (ipcp_discover_new_direct_edges): New function.
13113         (ipcp_insert_stage): Redirect only edges not flagged with
13114         indirect_inlining_edge.  Call ipcp_discover_new_direct_edges for all
13115         discovered constants.
13116
13117 2010-08-05  Martin Jambor  <mjambor@suse.cz>
13118
13119         * ipa-prop.h (enum ipa_lattice_type): Changed comments.
13120         (struct ipa_param_descriptor): New fields types and
13121         cannot_devirtualize.
13122         (ipa_param_cannot_devirtualize_p): New function.
13123         (ipa_param_types_vec_empty): Likewise.
13124         (ipa_make_edge_direct_to_target): Declare.
13125         * ipa-cp.c: Fixed first stage driver name in initial comment,
13126         described devirtualization there too.
13127         (ipcp_analyze_node): Call ipa_analyze_params_uses.
13128         (ipcp_print_all_lattices): Print devirtualization info.
13129         (ipa_set_param_cannot_devirtualize): New function.
13130         (ipcp_initialize_node_lattices): Set cannot_devirtualize when setting
13131         lattice to BOTTOM.
13132         (ipcp_init_stage): Merged into...
13133         (ipcp_generate_summary): ...its caller.
13134         (ipcp_change_tops_to_bottom): Also process type lists.
13135         (ipcp_add_param_type): New function.
13136         (ipcp_copy_types): Likewise.
13137         (ipcp_propagate_types): Likewise.
13138         (ipcp_propagate_stage): Also propagate types.
13139         (ipcp_need_redirect_p): Variable jump_func moved to its scope block.
13140         Also return true if propagated types require it.
13141         (ipcp_update_callgraph): Dump redirection info.
13142         (ipcp_process_devirtualization_opportunities): New function.
13143         (ipcp_const_param_count): Include known type information.
13144         (ipcp_insert_stage): Call ipcp_process_devirtualization_opportunities
13145         on new node.  Fixed formatting.
13146         * ipa-prop.c (make_edge_direct_to_target): Renamed to
13147         ipa_make_edge_direct_to_target and changed all callers.  Made
13148         externally visible.
13149         (ipa_node_duplication_hook): Duplicate types vector.
13150         * cgraphunit.c (cgraph_redirect_edge_call_stmt_to_callee): Also try to
13151         redirect outgoing calls for which we can't get a decl from the
13152         statement.  Check that we can get a decl from the call statement.
13153         * ipa-inline.c (inline_indirect_intraprocedural_analysis): Call
13154         ipa_analyze_params_uses only when ipa-cp is disabled.
13155         * tree-inline.c (get_indirect_callee_fndecl): Removed.
13156         (expand_call_inline): Do not call get_indirect_callee_fndecl.
13157         * params.def (PARAM_DEVIRT_TYPE_LIST_SIZE): New parameter.
13158         * Makefile.in (ipa-cp.o): Add gimple.h to dependencies.
13159
13160 2010-08-05  Uros Bizjak  <ubizjak@gmail.com>
13161
13162         * expmed.c (expand_mult_const) <case alg_shift>: Expand shift into
13163         temporary. Emit move from temporary to accum, so REG_EQUAL note will
13164         be attached to this insn in correct mode.
13165
13166 2010-08-05  Uros Bizjak  <ubizjak@gmail.com>
13167
13168         * config/i386/i386.c (ix86_decompose_address): Check for SI_REG
13169         using REGNO of base_reg directly.
13170
13171 2010-08-05  Jie Zhang  <jie@codesourcery.com>
13172
13173         PR tree-optimization/45144
13174         * tree-sra.c (type_consists_of_records_p): Return false
13175         if the record contains bit-field.
13176
13177 2010-08-04  Richard Henderson  <rth@redhat.com>
13178
13179         * config/i386/i386.c (struct ix86_frame): Remove padding and
13180         to_allocate members.
13181         (ix86_compute_frame_layout): Don't store them.
13182         (ix86_can_use_return_insn_p): Use a more direct and more obviously
13183         correct condition for the position of the stack pointer.
13184         (ix86_expand_prologue): Compute remaining stack allocation based
13185         on the ultimate stack pointer offset.
13186         (ix86_expand_epilogue): Use more obvious expressions testing for
13187         the stack pointer already pointing to the saved registers.
13188
13189         * config/i386/i386.c (ix86_expand_epilogue): Eliminate code
13190         duplication deconstructing the frame pointer.  Simplify
13191         deallocation of the local stack frame.
13192
13193         * reg-notes.def (CFA_EXPRESSION): New.
13194         * dwarf2out.c (dwarf2out_frame_debug): Handle it.
13195         (dwarf2out_frame_debug_cfa_expression): New.
13196         (dwarf2out_frame_debug_def_cfa): Handle simple MEMs.
13197
13198         * config/i386/i386.h (struct machine_frame_state): Add realigned flag.
13199         * config/i386/i386.c (ix86_expand_prologue): Set it.
13200         (ix86_expand_epilogue): Clear it.
13201         (ix86_emit_save_reg_using_mov): For registers saved in a realigned
13202         context, add REG_CFA_EXPRESSION notes.
13203
13204         * config/i386/i386.h (struct machine_frame_state): Rename from
13205         machine_cfa_state.  Add members tracking SP and FP regardless
13206         of the current CFA register.
13207         (ix86_cfa_state): Remove.
13208         * config/i386/i386.c (struct ix86_frame): Add reg_save_offset
13209         and sse_reg_save_offset members.
13210         (ix86_compute_frame_layout): Set them.
13211         (gen_push): Increment sp_offset too.
13212         (choose_baseaddr_len, choose_baseaddr): New.
13213         (ix86_emit_save_reg_using_mov): New.
13214         (ix86_emit_save_regs_using_mov): Use it.
13215         (ix86_emit_save_sse_regs_using_mov): Likewise.
13216         (ix86_add_cfa_restore_note): Take cfa_offset not red_offset argument;
13217         compare vs the saved red_zone_offset.
13218         (pro_epilogue_adjust_stack): Adjust sp_offset.
13219         (ix86_adjust_stack_and_probe): Likewise.
13220         (ix86_expand_prologue): Set up, use, and validate the new
13221         frame_state_info members.  Use gen_frame_mem.
13222         (ix86_emit_restore_regs_using_pop): Remove red_offset parameter.
13223         (ix86_emit_restore_reg_using_pop): Likewise.  Use and update the
13224         new frame_state_info members.
13225         (ix86_emit_leave): Likewise.
13226         (ix86_emit_restore_regs_using_mov): Likewise.  Don't check for
13227         out-of-range stack pointer offsets here.
13228         (ix86_emit_restore_sse_regs_using_mov): Likewise.
13229         (ix86_expand_epilogue): Use and validate the new frame_state_info
13230         members.  Break up and simplify the logic selecting the
13231         restore_regs_via_mov code path.  Ensure that there will be no
13232         out-of-range stack pointer offsets.
13233
13234         * config/i386/cygming.h (TARGET_64BIT_MS_ABI): Remove.
13235
13236         * config/i386/i386.c (ix86_function_ms_hook_prologue): Fix
13237         argument name to reflect the expected tree; fix indentation.
13238         (ix86_asm_output_function_label): Output the entire 32-bit
13239         ms_hook here as bytes ...
13240         (ix86_expand_prologue): ... not here as insns.  Attach the
13241         unwind info for the ms_hook to a blockage insn.
13242         (ix86_handle_fndecl_attribute): Don't check HAVE_AS_IX86_SWAP.
13243         (ix86_ms_bitfield_layout_p): Fix indentation.
13244         * config/i386/i386.md (UNSPECV_VSWAPMOV, vswapmov): Remove.
13245
13246         * config/i386/i386.c (ix86_using_red_zone): New.
13247         (ix86_compute_frame_layout, ix86_add_cfa_restore_note,
13248         ix86_expand_prologue, ix86_force_to_memory): Use it.
13249
13250         * config/i386/i386.c (ix86_expand_prologue): Simplify logic
13251         saving the int registers.
13252
13253         * dwarf2out.c: Remove most of the DWARF2_DEBUGGING_INFO
13254         and DWARF2_UNWIND_INFO conditional compilation.
13255
13256 2010-08-04  Richard Henderson  <rth@redhat.com>
13257
13258         PR debug/45171
13259         * dwarf2out.c (gen_typedef_die): Don't re-generate the die of
13260         an is_naming_typedef_decl.
13261
13262 2010-08-04  Bernd Schmidt  <bernds@codesourcery.com>
13263
13264         PR rtl-optimization/45162
13265         * df-problems.c (df_word_lr_bb_local_compute): Ignore DEBUG_INSNs.
13266         * dce.c (word_dce_process_block): Likewise.
13267
13268 2010-08-04  Steve Ellcey  <sje@cup.hp.com>
13269
13270         PR target/44583
13271         * config/ia64/constraints.md (Z): New.
13272         * config/ia64/predicates.md (fr_reg_or_signed_fp01_operand): New.
13273         (xfreg_or_signed_fp01_operand): New.
13274         * config/ia64/ia64.md (addsf3): Replace fr_reg_or_fp01_operand
13275         with fr_reg_or_signed_fp01_operand and constraint G with Z.
13276         (subsf3): Ditto.
13277         (*maddsf4): Ditto.
13278         (*msubsf4): Ditto.
13279         (adddf3): Ditto.
13280         (adddf3_trunc): Ditto.
13281         (subdf3): Ditto.
13282         (*subdf3_trunc): Ditto.
13283         (*madddf4): Ditto.
13284         (*madddf4_trunc): Ditto.
13285         (*msubdf4): Ditto.
13286         (*msubdf4_trunc): Ditto.
13287         (addxf3): Replace xfreg_or_fp01_operand with
13288         xfreg_or_signed_fp01_operand and constraint G with Z.
13289         (*addxf3_truncsf): Ditto.
13290         (*addxf3_truncdf): Ditto.
13291         (subxf3): Ditto.
13292         (*subxf3_truncsf): Ditto.
13293         (*subxf3_truncdf): Ditto.
13294         (*maddxf4): Ditto.
13295         (*maddxf4_truncsf): Ditto.
13296         (*maddxf4_truncdf): Ditto.
13297         (*msubxf4): Ditto.
13298         (*msubxf4_truncsf): Ditto.
13299         (*msubxf4_truncdf): Ditto.
13300
13301 2010-08-04  Richard Guenther  <rguenther@suse.de>
13302
13303         * alias.c (rtx_refs_may_alias_p): Do not resort to TBAA
13304         if either alias-set is zero.
13305
13306 2010-08-04  Richard Guenther  <rguenther@suse.de>
13307
13308         * tree-ssa-propagate.h (struct prop_value_d, prop_value_t): Move ...
13309         * tree-ssa-ccp.c: ... here.
13310         * tree-ssa-copy.c: ... and here.
13311         * tree-ssa-propagate.h (enum value_range_type, struct value_range_d,
13312         value_range_t): Move ...
13313         * tree-vrp.c: ... here.
13314         * tree-ssa-propagate.h (ssa_prop_get_value_fn): New typedef.
13315         (substitute_and_fold): Adjust prototype.
13316         * tree-ssa-propagate.c (replace_uses_in): Adjust.
13317         (replace_phi_args_in): Likewise.
13318         (substitute_and_fold): Take callback to query lattice instead
13319         of pointer to lattice.  Replace SSA name defs with lattice
13320         values first.
13321         * tree-ssa-ccp.c (ccp_finalize): Adjust.
13322         * tree-ssa-copy.c (copy_prop_visit_phi_node): Adjust.
13323         (get_value): New function.
13324         (fini_copy_prop): Adjust.
13325         * tree-vrp.c (vrp_finalize): Adjust.
13326
13327 2010-08-04  Richard Guenther  <rguenther@suse.de>
13328
13329         PR middle-end/45176
13330         * expr.c (expand_expr_real_1): Also preserve TARGET_MEM_REF
13331         points-to set for original MEM_REF.
13332
13333 2010-08-04  Richard Guenther  <rguenther@suse.de>
13334
13335         * tree-ssa-ccp.c (get_constant_value): New function.
13336         (get_rhs_assign_op_for_ccp): Remove.
13337         (valueize_op): New function.
13338         (ccp_fold): Use get_constant_value and valueize_op.
13339         (fold_const_aggregate_ref): Likewise.
13340         (ccp_fold_stmt): Likewise.
13341         (visit_assignment): Simplify.
13342
13343 2010-08-04  Richard Guenther  <rguenther@suse.de>
13344
13345         * Makefile.in (double-int.o): Add $(TOPLEV_H) dependency.
13346         * double-int.h (double_int_ctz): Declare.
13347         * double-int.c (double_int_ctz): New function.
13348
13349 2010-08-04  Hariharan Sandanagobalane  <hariharan@picochip.com>
13350
13351         * config/picochip/picochip.c (TARGET_OVERRIDE_OPTIONS_AFTER_CHANGE):
13352         Define.
13353         picochip_expand_movmemhi : Expand movmem pattern.
13354         * config/picochip/picochip-protos.h (picochip_expand_movmemhi) :
13355         Declare.
13356         * config/picochip/picochip.md (movmemhi) : New pattern.
13357
13358 2010-08-03  Uros Bizjak  <ubizjak@gmail.com>
13359
13360         * config/i386/unix.h (GLOBAL_ASM_OPS): Add tabs around .globl.
13361
13362 2010-08-03  Bernd Schmidt  <bernds@codesourcery.com>
13363
13364         * simplify-rtx.c (simplify_binary_operation_1): Try to simplify away
13365         NEG as operand of a MULT by merging it with the other operand.
13366         * combine.c (make_compound_operation): Use trunc_int_for_mode when
13367         generating a MULT with constant.  Canonicalize PLUS and MINUS involving
13368         MULT.
13369         * config/arm/constraints.md (M): Examine only 32 bits of a
13370         HOST_WIDE_INT.
13371         * config/arm/predicates.md (power_of_two_operand): Likewise.
13372
13373 2010-08-03  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
13374
13375         * config/spu/spu.c (spu_emit_branch_hint): Do not access NOTE_KIND of
13376         non-NOTE insns.
13377
13378 2010-08-03  Jan Hubicka  <jh@suse.cz>
13379
13380         * ipa-split.c (struct split_point): Add split_part_set_retval.
13381         (find_retval): Forward declare.
13382         (test_nonssa_use, mark_nonssa_use): Special case return by reference.
13383         (consider_split): Compute current->split_part_set_retval.
13384         (visit_bb): Do not look into return value.
13385         (split_function): Handle !split_part_set_retval
13386
13387 2010-08-03  Martin Jambor  <mjambor@suse.cz>
13388
13389         * tree-sra.c (completely_scalarize_record): New parameter REF, create
13390         its own access->expr intead of using build_ref_for_offset.
13391
13392 2010-08-03  Joseph Myers  <joseph@codesourcery.com>
13393
13394         * config/alpha/alpha.h (SWITCH_TAKES_ARG): Define.
13395         * config/alpha/osf5.h (LIB_SPEC): Don't handle -a.
13396         * config/bfin/bfin.h (ASM_SPEC, LINK_SPEC): Don't pass -G* options.
13397         * config/darwin.h (WORD_SWITCH_TAKES_ARG): Handle -iframework.
13398         * config/ia64/ia64.h (SWITCH_TAKES_ARG): Define.
13399         * config/iq2000/iq2000.h (SWITCH_TAKES_ARG): Remove.
13400         * config/rs6000/sysv4.h (SWITCH_TAKES_ARG): Define using
13401         DEFAULT_SWITCH_TAKES_ARG.
13402         * config/rx/rx.opt (-patch=): Remove option.
13403         * config/rx/rx.c (rx_handle_option): Don't handle OPT_patch_.
13404         * defaults.h (DEFAULT_WORD_SWITCH_TAKES_ARG): Handle -imultilib.
13405         * doc/invoke.texi (RX Options): Remove -patch=.
13406         * gcc.c (cc1_options): Pass -aux-info* instead of -a* options.
13407         (option_map): Remove --profile-blocks, --quiet and --silent.
13408
13409 2010-08-03  Uros Bizjak  <ubizjak@gmail.com>
13410
13411         * config/i386/i386.h (ix86_compare_op0, ix86_compare_op1): Remove.
13412         * config/i386/i386.c (ix86_compare_op0, ix86_compare_op1): Remove.
13413         (ix86_expand_branch): Add op0 and op1 arguments.  Do not access
13414         ix86_compare_op0 and ix86_compare_op1, use op0 and op1 instead.
13415         Update calls to ix86_expand_compare and ix86_expand_branch.
13416         (ix86_expand_setcc): Add op0 and op1 arguments.  Update calls to
13417         ix86_expand_compare.
13418         (ix86_expand_compare): Add op0 and op1 arguments.  Do not access
13419         ix86_compare_op0 and ix86_compare_op1, use op0 and op1 instead.
13420         Make static.
13421         (ix86_expand_carry_flag_compare): Do not set ix86_compare_op0
13422         and ix86_compare_op1.  Update calls to ix86_expand_compare.
13423         (ix86_expand_int_movcc): Ditto.
13424         (ix86_expand_fp_movcc): Ditto.  Update calls to ix86_expand_setcc.
13425         * config/i386/i386-protos.h (ix86_expand_branch): Update prototype.
13426         (ix86_expand_setcc): Ditto.
13427         (ix86_expand_compare): Remove prototype.
13428         * config/i386/i386.md (cbranch<SDWIM:mode>4): Do not set
13429         ix86_compare_op0 and ix86_compare_op1.  Update calls
13430         to ix86_expand_branch to directly pass operands[1] and operands[2].
13431         (cbranchxf4): Ditto.
13432         (cbranch<MODEF:mode>4): Ditto.
13433         (cbranchcc4): Ditto.
13434         (cstore<SWIM:mode>4): Do not set ix86_compare_op0 and ix86_compare_op1.
13435         Update calls to ix86_expand_setcc to directly pass operands[2] and
13436         operands[3].
13437         (cstorexf4): Ditto.
13438         (cstore<MODEF:mode>4): Ditto.
13439         (cstorecc4): Ditto.
13440
13441 2010-08-02  Bernd Schmidt  <bernds@codesourcery.com>
13442
13443         PR target/45063
13444         * caller-save.c (save_call_clobbered_regs): Remove regs from
13445         hard_regs_saved when they are set.
13446
13447 2010-08-02  Uros Bizjak  <ubizjak@gmail.com>
13448
13449         PR target/41089
13450         * config/alpha/alpha.c (alpha_build_builtin_va_list): Mark __offset
13451         as volatile.
13452
13453 2010-08-02  Sebastian Pop  <sebastian.pop@amd.com>
13454
13455         * common.opt (ftree-loop-distribute-patterns): New.
13456         * invoke.texi (-ftree-loop-distribute-patterns): Documented.
13457         * opts.c (decode_options): Enable flag_tree_loop_distribute_patterns
13458         at -O3.
13459         * tree-data-ref.c (stores_zero_from_loop): New.
13460         * tree-data-ref.h (stores_zero_from_loop): Declared.
13461         * tree-loop-distribution.c (tree_loop_distribution): Call
13462         stores_zero_from_loop.
13463         (tree_loop_distribution): Check flag_tree_loop_distribute_patterns.
13464
13465 2010-08-02  Bernd Schmidt  <bernds@codesourcery.com>
13466
13467         * postreload.c (reload_cse_simplify_operands): Take attribute enabled
13468         into account.
13469
13470         * final.c (final_scan_insn): Call CC_STATUS_INIT unconditionally.
13471         * config/arm/arm.c (thumb1_code): New variable.
13472         (arm_override_options): Set it.
13473         (thumb1_final_prescan_insn): Keep track of condition code status.
13474         (arm_adjust_cost): For Thumb, try to keep cc-setting insns next to
13475         jumps that depend on them.
13476         * config/arm/arm.h (thumb1_code): Declare variable.
13477         (struct machine_function): Guard with #ifndef GENERATOR_FILE.  Add
13478         members thumb1_cc_insn, thumb1_cc_op0, thumb1_cc_op1 and
13479         thumb1_cc_mode.
13480         (CC_STATUS_INIT): New macro.
13481         * config/arm/constraints.md (Pd): New constraint.
13482         * config/arm/predicates.md (noov_comparison_operator): New predicate.
13483         * config/arm/arm.md (is_thumb1): New define_attr.
13484         (conds): Set default to "clob" when generating Thumb1 code.
13485         (thumb1_bicsi3): Renamed from bicsi3.  All uses changed.  Condition
13486         code are set.  Use two-operand assembly syntax.
13487         (thumb1_subsi3_insn): Condition codes are set.  Now a properly named
13488         pattern.
13489         (thumb1_andsi3_insn, thumb1_iorsi3_insn, thumb1_xorsi3_insn): Condition
13490         codes are set.  Use two-operand assembly syntax.
13491         (zero_extendhisi splitter): Remove constraints.
13492         (thumb1_movsi_insn, thumb1_movhi_insn, thumb1_movqi_insn, thumb1_movhf,
13493         thumb1_movsf_insn): Set conds attribute as appropriate.
13494         (cbranchsi4_insn): Use condition code status from struct
13495         machine_function to determine whether the comparison can be eliminated.
13496         Discourage the alternative using high registers.
13497         (movsi_cbranchsi4, andsi3_cbranch, orrsi3_cbranch_scratch,
13498         orrsi3_cbranch, xorsi3_cbranch_scratch, xorsi3_cbranch,
13499         bicsi3_cbranch_scratch, bicsi3_cbranch, subsi3_cbranch_scratch,
13500         subsi3_cbranch): Delete.
13501         (movsi_cbranchsi4 peepholes): Rewrite to generate a sequence of
13502         one subtract and one cbranch insn.
13503
13504         * config/arm/thumb2.md (thumb2_movdi, thumb2_movsf_soft_insn,
13505         thumb2_movdf_soft_insn): Delete patterns.
13506         * config/arm/arm.md (arm_pool_range, thumb2_pool_range,
13507         arm_neg_pool_range, thumb2_neg_pool_range): New attributes.
13508         (pool_range, neg_pool_range): Use them to define defaults.
13509         (movdi, arm_movsf_soft_insn, arm_movdf_soft_insn): Define them
13510         and allow for TARGET_32BIT.
13511
13512         PR target/40457
13513         * config/arm/arm.h (arm_regs_in_sequence): Declare.
13514         * config/arm/arm-protos.h (emit_ldm_seq, emit_stm_seq,
13515         load_multiple_sequence, store_multiple_sequence): Delete
13516         declarations.
13517         (arm_gen_load_multiple, arm_gen_store_multiple): Adjust
13518         declarations.
13519         * config/arm/ldmstm.md: New file.
13520         * config/arm/arm.c (arm_regs_in_sequence): New array.
13521         (load_multiple_sequence): Now static.  New args SAVED_ORDER,
13522         CHECK_REGS.  All callers changed.
13523         If SAVED_ORDER is nonnull, copy the computed order into it.
13524         If CHECK_REGS is false, don't sort REGS.  Handle Thumb mode.
13525         (store_multiple_sequence): Now static.  New args NOPS_TOTAL,
13526         SAVED_ORDER, REG_RTXS and CHECK_REGS.  All callers changed.
13527         If SAVED_ORDER is nonnull, copy the computed order into it.
13528         If CHECK_REGS is false, don't sort REGS.  Set up REG_RTXS just
13529         like REGS.  Handle Thumb mode.
13530         (arm_gen_load_multiple_1): New function, broken out of
13531         arm_gen_load_multiple.
13532         (arm_gen_store_multiple_1): New function, broken out of
13533         arm_gen_store_multiple.
13534         (arm_gen_multiple_op): New function, with code from
13535         arm_gen_load_multiple and arm_gen_store_multiple moved here.
13536         (arm_gen_load_multiple, arm_gen_store_multiple): Now just
13537         wrappers around arm_gen_multiple_op.  Remove argument UP, all callers
13538         changed.
13539         (gen_ldm_seq, gen_stm_seq, gen_const_stm_seq): New functions.
13540         * config/arm/predicates.md (commutative_binary_operator): New.
13541         (load_multiple_operation, store_multiple_operation): Handle more
13542         variants of these patterns with different starting offsets.  Handle
13543         Thumb-1.
13544         * config/arm/arm.md: Include "ldmstm.md".
13545         (ldmsi_postinc4, ldmsi_postinc4_thumb1, ldmsi_postinc3, ldmsi_postinc2,
13546         ldmsi4, ldmsi3, ldmsi2, stmsi_postinc4, stmsi_postinc4_thumb1,
13547         stmsi_postinc3, stmsi_postinc2, stmsi4, stmsi3, stmsi2 and related
13548         peepholes): Delete.
13549         * config/arm/ldmstm.md: New file.
13550         * config/arm/arm-ldmstm.ml: New file.
13551
13552         * config/arm/arm.c (arm_rtx_costs_1): Remove second clause from the
13553         if statement which adds extra costs to frame-related expressions.
13554
13555 2010-08-02  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
13556
13557         * config/arm/arm.c (COSTS_N_INSNS): Remove definition.
13558
13559 2010-08-01  Uros Bizjak  <ubizjak@gmail.com>
13560
13561         PR target/45142
13562         * config/i386/sse.md (vec_set<mode>_0): Do not set mode attribute for
13563         alternative 2.
13564         (vec_set<mode>_0 splitter): Use SSEMODE4S mode iterator to also
13565         split V4SI operands.
13566
13567 2010-08-01  Anatoly Sokolov  <aesok@post.ru>
13568
13569         * config/mmix/mmix.h (ASM_OUTPUT_SOURCE_FILENAME): Remove macro.
13570         * config/mmix/mmix-protos.h (mmix_asm_output_source_filename): Remove.
13571         * config/mmix/mmix.c (mmix_asm_output_source_filename): Make static.
13572         (TARGET_ASM_OUTPUT_SOURCE_FILENAME): Define.
13573
13574 2010-07-31  Kai Tietz  <kai.tietz@onevision.com>
13575
13576         * cppdefault.c (cpp_include_defaults): Move GCC_INCLUDE_DIR before
13577         LOCAL_INCLUDE_DIR.
13578
13579 2010-07-31  Richard Sandiford  <rdsandiford@googlemail.com>
13580
13581         * tree-ssa-math-opts.c (convert_plusminus_to_widen): Fix type
13582         used in the call to optab_for_tree_code.  Fix the second
13583         is_widening_mult_p call.  Check that both unwidened operands
13584         have the same sign.
13585
13586 2010-07-31  John Tytgat  <John.Tytgat@aaug.net>
13587
13588         * config/arm/arm.c (arm_function_arg): Remove superfluous test.
13589
13590 2010-07-31  Anatoly Sokolov  <aesok@post.ru>
13591
13592         * config/spu/spu.h (ASM_OUTPUT_SOURCE_FILENAME): Remove macro.
13593
13594 2010-07-30  DJ Delorie  <dj@redhat.com>
13595
13596         * config/rx/predicates.md (rx_constshift_operand): New.
13597         * config/rx/rx.md (zs_cond): New.
13598         (cbranchsi4): Remove mode.
13599         (*cbranchsi4_<code>): Likewise.
13600         (*tstbranchsi4_<code>): New.
13601         (*tstbranchsi4r_<code>): New.
13602         (*tstbranchsi4m_eq): New.
13603         (*tstbranchsi4m_ne): New.
13604         (cbranchsf4): Remove mode.
13605         (*cbranchsf4_<code>): Likewise.
13606
13607 2010-07-30  Bernd Schmidt  <bernds@codesourcery.com>
13608
13609         * rtlanal.c (simplify_subreg_regno): Don't treat
13610         HARD_FRAME_POINTER_REGNUM specially.
13611
13612 2010-07-30  Joseph Myers  <joseph@codesourcery.com>
13613
13614         * common.opt (-G): Don't define option here.
13615         * config/g.opt: New.
13616         * config.gcc: Use g.opt for alpha, frv, ia64, lm32, m32r, mips,
13617         rs6000/powerpc and score targets.
13618         * opts.c (common_handle_option): Don't handle -G here.
13619         * config/alpha/alpha.c (alpha_handle_option): Handle -G.
13620         * config/frv/frv.c (frv_handle_option): Handle -G.
13621         * config/ia64/ia64.c (ia64_handle_option): Handle -G.
13622         * config/lm32/lm32.c (lm32_handle_option, TARGET_HANDLE_OPTION): New.
13623         * config/m32r/m32r.c (m32r_handle_option): Handle -G.
13624         * config/mips/mips.c (mips_handle_option): Handle -G.
13625         * config/rs6000/rs6000.c (rs6000_handle_option) Handle -G.
13626         * config/score/score.c (score_handle_option): Handle -G.
13627
13628 2010-07-30  Anatoly Sokolov  <aesok@post.ru>
13629
13630         * config/mmix/mmix.c: Include basic-block.h.
13631
13632 2010-07-30  Jakub Jelinek  <jakub@redhat.com>
13633
13634         PR debug/45055
13635         PR rtl-optimization/45137
13636         * rtl.h (prev_nonnote_nondebug_insn, next_nonnote_nondebug_insn): New
13637         prototypes.
13638         * emit-rtl.c (prev_nonnote_nondebug_insn, next_nonnote_nondebug_insn):
13639         New functions.
13640         * combine.c (next_nonnote_nondebug_insn): Removed.
13641         * ifcvt.c (noce_process_if_block): Use prev_nonnote_nondebug_insn.
13642         * haifa-sched.c (queue_to_ready): Use next_nonnote_nondebug_insn.
13643         * sched-deps.c (sched_analyze_insn): Likewise.
13644         (fixup_sched_groups, deps_start_bb): Use prev_nonnote_nondebug_insn.
13645         * rtlanal.c (canonicalize_condition): Likewise.
13646         * postreload.c (reload_combine_recognize_pattern): Likewise.
13647         (reload_cse_move2add): Use next_nonnote_nondebug_insn.
13648
13649 2010-07-29  Uros Bizjak  <ubizjak@gmail.com>
13650
13651         * config/i386/i386.md (int_cond): Remove code iterator.
13652         (fp_cond): Ditto.
13653         (cbranch<mode>4): Use ordered_comparison_operator predicate
13654         for operator0.
13655         (cstore<mode>4): Ditto for operator1.
13656         (mov<SWIM:mode>cc and corresponding splitter): Ditto.
13657         (add<mode>cc): ditto.
13658
13659 2010-07-30  Richard Guenther  <rguenther@suse.de>
13660
13661         PR middle-end/45141
13662         * expr.c (expand_expr_real_1): Check for not handled base address.
13663
13664 2010-07-30  Richard Guenther  <rguenther@suse.de>
13665
13666         * ipa-prop.c (ipa_modify_formal_parameters): Use
13667         build_distinct_type_copy.
13668
13669 2010-07-30  Anthony Green  <green@moxielogic.com>
13670
13671         * config/moxie/rtems.h: New file.
13672         * config.gcc: Add moxie-rtems support.
13673
13674 2010-07-29  Bernd Schmidt  <bernds@codesourcery.com>
13675
13676         * dce.c (run_word_dce): Take flag_dce into account.  Clear and restore
13677         df flags as in run_fast_df_dce.
13678
13679 2010-07-29  Jakub Jelinek  <jakub@redhat.com>
13680
13681         Revert:
13682         2010-07-27  Bernd Schmidt  <bernds@codesourcery.com>
13683
13684         * rtl.def (NOTE): Swap operands 4 and 5.
13685         * rtl.h (NOTE_DATA, NOTE_DELETED_LABEL_NAME, NOTE_BLOCK,
13686         NOTE_EH_HANDLER, NOTE_BASIC_BLOCK, NOTE_VAR_LOCATION, NOTE_KIND):
13687         Adjust accordingly.
13688         * gengtype.c (adjust_field_rtx_def): Swap operands 4 and 5 of NOTEs.
13689
13690 2010-07-29  Jakub Jelinek  <jakub@redhat.com>
13691
13692         PR debug/45110
13693         * dwarf2out.c (dwarf_attr_name): Handle DW_AT_object_pointer.
13694         (gen_formal_types_die): Add DW_AT_object_pointer in methods.
13695         (gen_subprogram_die): Likewise.  Remove it when removing declaration's
13696         formal parameters.
13697         (gen_decl_die): Change return type to dw_die_ref, return what
13698         gen_formal_parameter_die returned.
13699
13700 2010-07-29  Martin Jambor  <mjambor@suse.cz>
13701
13702         * dbgcnt.def (eipa_sra): New counter.
13703         * tree-sra.c (ipa_early_sra_gate): Also check eipa_sra debug counter.
13704
13705 2010-07-29  Xinliang David Li  <davidxl@google.com>
13706
13707         PR bootstrap/45119
13708         * tree-ssa-loop-ivopts.c (get_address_cost): Revert change
13709         in revision 162652.
13710
13711 2010-07-29  Richard Guenther  <rguenther@suse.de>
13712
13713         * timevar.def (TV_TREE_STORE_COPY_PROP): Remove.
13714         (TV_TREE_STORE_CCP): Likewise.
13715         (TV_TREE_REDPHI): Likewise.
13716
13717 2010-07-29  Richard Guenther  <rguenther@suse.de>
13718
13719         * double-int.h (double_int_and_not): New function.
13720         * combine.c (try_combine): Use it.
13721         * tree-vrp.c (simplify_bit_ops_using_ranges): Likewise.
13722
13723 2010-07-29  Bernd Schmidt  <bernds@codesourcery.com>
13724
13725         PR rtl-optimization/42575
13726         * dce.c (word_dce_process_block): Renamed from byte_dce_process_block.
13727         Argument AU removed.  All callers changed.  Ignore artificial refs.
13728         Use return value of df_word_lr_simulate_defs to decide whether an insn
13729         is necessary.
13730         (fast_dce): Rename arg to WORD_LEVEL.
13731         (run_word_dce): Renamed from rest_of_handle_fast_byte_dce.  No longer
13732         static.
13733         (pass_fast_rtl_byte_dce): Delete.
13734         * dce.h (run_word_dce): Declare.
13735         * df-core.c (df_print_word_regset): Renamed from df_print_byteregset.
13736         All callers changed.  Simplify code to only deal with two-word regs.
13737         * df.h (DF_WORD_LR): Renamed from DF_BYTE_LR.
13738         (DF_WORD_LR_BB_INFO): Renamed from DF_BYTE_LR_BB_INFO.
13739         (DF_WORD_LR_IN): Renamed from DF_BYTE_LR_IN.
13740         (DF_WORD_LR_OUT): Renamed from DF_BYTE_LR_OUT.
13741         (struct df_word_lr_bb_info): Renamed from df_byte_lr_bb_info.
13742         (df_word_lr_mark_ref): Declare.
13743         (df_word_lr_add_problem, df_word_lr_mark_ref, df_word_lr_simulate_defs,
13744         df_word_lr_simulate_uses): Declare or rename from byte variants.
13745         (df_byte_lr_simulate_artificial_refs_at_top,
13746         df_byte_lr_simulate_artificial_refs_at_end, df_byte_lr_get_regno_start,
13747         df_byte_lr_get_regno_len, df_compute_accessed_bytes): Delete
13748         declarations.
13749         (df_word_lr_get_bb_info): Rename from df_byte_lr_get_bb_info.
13750         (enum df_mm): Delete.
13751         * df-byte-scan.c: Delete file.
13752         * df-problems.c (df_word_lr_problem_data): Renamed from
13753         df_byte_lr_problem_data, all members deleted except for
13754         WORD_LR_BITMAPS, which is renamed from BYTE_LR_BITMAPS.  Uses changed.
13755         (df_word_lr_expand_bitmap, df_byte_lr_simulate_artificial_refs_at_top,
13756         df_byte_lr_simulate_artificial_refs_at_end, df_byte_lr_get_regno_start,
13757         df_byte_lr_get_regno_len, df_byte_lr_check_regs,
13758         df_byte_lr_confluence_0): Delete functions.
13759         (df_word_lr_free_bb_info): Renamed from df_byte_lr_free_bb_info; all
13760         callers changed.
13761         (df_word_lr_alloc): Renamed from df_byte_lr_alloc; all callers changed.
13762         Don't initialize members that were deleted, don't try to discover data
13763         about registers.  Ignore hard regs.
13764         (df_word_lr_reset): Renamed from df_byte_lr_reset; all callers changed.
13765         (df_word_lr_mark_ref): New function.
13766         (df_word_lr_bb_local_compute): Renamed from
13767         df_byte_bb_lr_local_compute; all callers changed.  Use
13768         df_word_lr_mark_ref.  Assert that artificial refs don't include
13769         pseudos.  Ignore hard registers.
13770         (df_word_lr_local_compute): Renamed from df_byte_lr_local_compute.
13771         Assert that exit block uses don't contain pseudos.
13772         (df_word_lr_init): Renamed from df_byte_lr_init; all callers changed.
13773         (df_word_lr_confluence_n): Renamed from df_byte_lr_confluence_n; all
13774         callers changed.  Ignore hard regs.
13775         (df_word_lr_transfer_function): Renamed from
13776         df_byte_lr_transfer_function; all callers changed.
13777         (df_word_lr_free): Renamed from df_byte_lr_free; all callers changed.
13778         (df_word_lr_top_dump): Renamed from df_byte_lr_top_dump; all callers
13779         changed.
13780         (df_word_lr_bottom_dump): Renamed from df_byte_lr_bottom_dump; all
13781         callers changed.
13782         (problem_WORD_LR): Renamed from problem_BYTE_LR; uses changed;
13783         confluence operator 0 set to NULL.
13784         (df_word_lr_add_problem): Renamed from df_byte_lr_add_problem; all
13785         callers changed.
13786         (df_word_lr_simulate_defs): Renamed from df_byte_lr_simulate_defs.
13787         Return bool, true if bitmap changed or insn otherwise necessary.
13788         All callers changed.  Simplify using df_word_lr_mark_ref.
13789         (df_word_lr_simulate_uses): Renamed from df_byte_lr_simulate_uses;
13790         all callers changed.  Simplify using df_word_lr_mark_ref.
13791         * lower-subreg.c: Include "dce.h"
13792         (decompose_multiword_subregs): Call run_word_dce if df available.
13793         * Makefile.in (lower-subreg.o): Adjust dependencies.
13794         (df-byte-scan.o): Delete.
13795         * timevar.def (TV_DF_WORD_LR): Renamed from TV_DF_BYTE_LR.
13796
13797 2010-07-29  Richard Guenther  <rguenther@suse.de>
13798
13799         * tree.c (build_vector): Assert that the vector constant
13800         has enough elements.
13801         (build_vector_from_ctor): Pad with trailing zeros.
13802
13803 2010-07-29  Richard Guenther  <rguenther@suse.de>
13804
13805         PR tree-optimization/45120
13806         * tree-ssa-structalias.c (get_constraint_for_component_ref):
13807         Handle offset in DEREFs properly.
13808         (get_constraint_for_1): Handle MEM_REF offset properly.
13809
13810 2010-07-29  Richard Guenther  <rguenther@suse.de>
13811
13812         PR middle-end/45034
13813         * convert.c (convert_to_integer): Always use an unsigned
13814         type for narrowed negate and bitwise not.
13815
13816 2010-07-29  Ira Rosen  <irar@il.ibm.com>
13817
13818         * tree-vect-loop.c (vect_create_epilog_for_reduction): Switch
13819         to outer loop when creating reduction epilogue for double reduction,
13820         and switch back to the inner loop when updating the phi nodes.
13821         Update uses of outer loop exit phi nodes in double reduction (instead
13822         of uses of reduction).
13823
13824 2010-07-28  Michael Meissner  <meissner@linux.vnet.ibm.com>
13825
13826         * config/rs6000/rs6000.c (rs6000_rtx_costs): Update costs for
13827         popcount on power7 and parity on power6 systems.
13828         (rs6000_emit_popcount): Rename gen_popcntwsi2 to gen_popcntddi2.
13829         (rs6000_emit_parity): Add support for power6 prtyd/prtyw
13830         instructions.
13831
13832         * config/rs6000/rs6000.md (UNSPEC_COPYSIGN): New unspec.
13833         (UNSPEC_PARITY): Ditto.
13834         (SFDF): New iterator for SF/DF.
13835         (rreg2): New mode attribute for floating register constraint.
13836         (TARGET_FLOAT): New mode attribute for whether single/double float
13837         is supported.
13838         (popcntd<mode>2): Combine popcntwsi2 and popcntddi2 into one
13839         pattern.
13840         (parity<mode>2_cmpb): New insn for parity on power6 and newer
13841         machines.
13842         (copysign<mode>3): Combine copysignsf3, copysigndf3 into one
13843         pattern.  Add support for fcpsgn instruction added in power6.
13844         (copysignsf3): Delete.
13845         (copysigndf3): Delete.
13846         (copysign<mode>3_fcpsgn): New insn to generate fcpsgn.  Use UNSPEC
13847         instead of if_then_else in RTL to avoid problems with -0.
13848
13849         * config/rs6000/vsx.md (vsx_copysign<mode>3): Use UNSPEC instead
13850         of if_then_else to mirror scalar code.
13851         (vsx_copysignsf3): Delete, use copysign<mode>3_fcpsgn in
13852         rs6000.md.
13853
13854         * config/rs6000/vector.md (vector_copysign<mode>3): Use UNSPEC
13855         instead of if_then_else.
13856
13857 2010-07-28  Xinliang David Li  <davidxl@google.com>
13858
13859         * tree-ssa-loop-ivopts.c (avg_loop_niter): New function.
13860         (dump_cand): Dump var_before/after.
13861         (htab_inv_expr_eq): New function.
13862         (htab_inv_expr_hash): New function.
13863         (tree_ssa_iv_optimize_init): Support pseudo invariants.
13864         (add_candidate_1): consider base type precision.
13865         (set_use_iv_cost): New parameter.
13866         (adjust_setup_cost): Use profile information.
13867         (get_address_cost): Do not hard code width in computing address
13868         offset limits.
13869         (compare_aff_trees): New function.
13870         (get_loop_invariant_expr_id): New function.
13871         (get_computation_cost_at): New parameter and use profile information.
13872         (get_computation_cost): New parameter.
13873         (determine_use_iv_cost_generic): Pass new parameter.
13874         (determine_use_iv_cost_address): Ditto.
13875         (determine_use_iv_cost_condition): Ditto.
13876         (autoinc_possible_for_pair): Ditto.
13877         (determine_use_iv_costs): More dumps.
13878         (iv_ca_get_num_inv_exprs): New function.
13879         (iv_ca_recount_cost): Consider loop invariants in register pressure
13880         cost.
13881         (iv_ca_add_use): New parameter.
13882         (iv_ca_dump): Better dumping.
13883         (iv_ca_extend): New parameter.
13884         (try_add_cand_for): Attempt to get better partial solution.
13885         (try_improve_iv_set): Pass new parameter to iv_ca_extend.
13886         (create_new-ivs): More dumps.
13887         (rewrite_use_compare): Ditto.
13888         (free_loop_data): More cleanup.
13889         (treee_ssa_iv_optimize_finalize): Ditto.
13890
13891 2010-07-28  Kai Tietz  <kai.tietz@onevision.com>
13892
13893         * config/i386/i386.h (MCOUNT_NAME_BEFORE_PROLOGUE): New.
13894         * config/i386/i386.c (ix86_profile_before_prologue): New.
13895         (override_options): Add special handling for -mfentry.
13896         (ix86_function_regparm): Likewise.
13897         (ix86_function_sseregparm): Likewise.
13898         (ix86_frame_pointer_required): Likewise.
13899         (ix86_expand_prologue): Check for ms_hook_prologue.
13900         (x86_function_profiler): Adjust mcount output.
13901         (TARGET_PROFILE_BEFORE_PROLOGUE): Define hook.
13902         * config/i386/i386.opt (mfentry): New.
13903         * doc/invoke.texi (mfentry): Add documentation.
13904         * doc/tm.texi: Regenerated..
13905         * doc/tm.texi.in (TARGET_PROFILE_BEFORE_PROLOGUE): New.
13906         * final.c (final_start_function): Replace macro
13907         PROFILE_BEFORE_PROLOGUE by target hook.
13908         * function.c (thread_prologue_and_epilogue_insns): Likewise.
13909         * target.def (profile_before_prologue): New hook.
13910         * targhooks.c (default_profile_before_prologue): New.
13911         * targhooks.h (default_profile_before_prologue): New.
13912
13913 2010-07-28  Jakub Jelinek  <jakub@redhat.com>
13914
13915         PR debug/45105
13916         * gcse.c (hoist_code): Use FOR_BB_INSNS macro.
13917
13918         PR debug/45103
13919         * dwarf2out.c (dwarf2out_var_location): Always consider
13920         NOTE_DURING_CALL_P notes, even when not followed by real instructions.
13921
13922 2010-07-28  Maxim Kuvyrkov  <maxim@codesourcery.com>
13923
13924         PR rtl-optimization/45107
13925         * gcse.c (hash_scan_set): Use max_distance for gcse-las.
13926
13927 2010-07-28  Richard Guenther  <rguenther@suse.de>
13928
13929         * tree-ssa-ccp.c: Remove comment regarding STORE-CCP.
13930         (set_lattice_value): Do not query an old default value.
13931         (get_value_for_expr): New function.  Properly canonicalize
13932         float values.
13933         (ccp_visit_phi_node): Use it.
13934
13935 2010-07-28  Chung-Lin Tang  <cltang@codesourcery.com>
13936
13937         * config/arm/arm.c (arm_pcs_default): Remove static.
13938         * config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Define __ARM_PCS or
13939         __ARM_PCS_VFP to indicate soft/hard-float calling convention.
13940         (arm_pcs_default): Declare.
13941
13942 2010-07-28  Iain Sandoe  <iains@gcc.gnu.org>
13943
13944         * config/rs6000/rs6000.c (rs6000_override_options):
13945         Use TARGET_MACHO inline, move darwin_one_byte_bool from here...
13946         ... to darwin_rs6000_override_options.
13947         (rs6000_return_in_memory): Update preceding comment for darwin
13948         64 bit ABI.  Use TARGET_MACHO inline.
13949         (rs6000_darwin64_struct_check_p): New.
13950         (function_arg_advance): Use rs6000_darwin64_struct_check_p.
13951         (function_arg): Likewise.
13952         (rs6000_arg_partial_bytes): Likewise.
13953         (rs6000_function_value): Likewise.
13954
13955 2010-07-28  Andi Kleen  <ak@linux.intel.com>
13956
13957         * lto-opts.c (lto_file_read_options): Add loop over all inputs.
13958
13959 2010-07-28  Richard Guenther  <rguenther@suse.de>
13960
13961         PR middle-end/44903
13962         * builtins.c (fold_builtin_memory_op): On STRICT_ALIGNMENT
13963         targets try harder to not generate unaligned accesses.
13964
13965 2010-07-28  Maxim Kuvyrkov  <maxim@codesourcery.com>
13966
13967         PR rtl-optimization/45101
13968         * gcse.c (hash_scan_set): Fix argument ordering of insert_expr_in_table
13969         for gcse-las.
13970
13971 2010-07-28  Eric Botcazou  <ebotcazou@adacore.com>
13972
13973         PR tree-optimization/44885
13974         * tree-sra.c (find_param_candidates): Skip pointer types to arrays
13975         with non-aliased component.
13976
13977 2010-07-28  Joseph Myers  <joseph@codesourcery.com>
13978
13979         * config/darwin-driver.c (SWITCH_TAKES_ARG,
13980         WORD_SWITCH_TAKES_ARG): Remove.
13981         * cppspec.c (SWITCH_TAKES_ARG, WORD_SWITCH_TAKES_ARG): Remove.
13982         * defaults.h (DEFAULT_SWITCH_TAKES_ARG,
13983         DEFAULT_WORD_SWITCH_TAKES_ARG): Move from gcc.h.
13984         (SWITCH_TAKES_ARG, WORD_SWITCH_TAKES_ARG): Move default
13985         definitions from gcc.c.
13986         * gcc.c (SWITCH_TAKES_ARG, WORD_SWITCH_TAKES_ARG): Move to
13987         defaults.h.
13988         * gcc.h (DEFAULT_SWITCH_TAKES_ARG, DEFAULT_WORD_SWITCH_TAKES_ARG):
13989         Move to defaults.h.
13990         * opts-common.c: Include tm.h.
13991         (decode_cmdline_option): Use SWITCH_TAKES_ARG and
13992         WORD_SWITCH_TAKES_ARG to count arguments to unknown options.
13993         Handle more than one argument.  Set canonical_option_num_elements.
13994         (decode_cmdline_options_to_array): Set
13995         canonical_option_num_elements and trailing elements of
13996         canonical_option.
13997         * opts.h (struct cl_decoded_option): Allow four elements in
13998         canonical_option.  Add field canonical_option_num_elements.
13999         * Makefile.in (opts-common.o): Update dependencies.
14000
14001 2010-07-28  Eric Botcazou  <ebotcazou@adacore.com>
14002
14003         PR middle-end/44790
14004         PR middle-end/44993
14005         * expr.c (expand_expr_real_1) <MEM_REF>: Revert latest change.  Make
14006         sure the base has address_mode before adding the offset.
14007
14008 2010-07-27  Xinliang David Li  <davidxl@google.com>
14009
14010         * tree-flow.h (create_mem_ref): Add one new parameter.
14011         * tree-ssa-address.c (create_mem_ref): New parameter.
14012         (addr_to_parts): Ditto.
14013         (move_variant_to_index): New function.
14014         * tree-ssa-loop-ivopts.c (rewrite_use_address): Pass new argument.
14015
14016 2010-07-27  Bernd Schmidt  <bernds@codesourcery.com>
14017
14018         * rtl.def (DEBUG_INSN, INSN, JUMP_INSN, CALL_INSN, NOTE): Swap operands
14019         4 and 5.
14020         * rtl.h (PATTERN, INSN_LOCATOR, NOTE_DATA, NOTE_DELETED_LABEL_NAME,
14021         NOTE_BLOCK, NOTE_EH_HANDLER, NOTE_BASIC_BLOCK, NOTE_VAR_LOCATION,
14022         NOTE_KIND, LABEL_NUSES, LABEL_REFS): Adjust accordingly.
14023         * gengtype.c (adjust_field_rtx_def): Swap operands 4 and 5 of
14024         CODE_LABELs and NOTEs.
14025         * caller-save.c (init_caller_save): Fix up gen_rtx_INSN call.
14026         * combine.c (try_combine): Likewise.
14027         * ira.c (setup_prohibited_mode_move_regs): Likewise.
14028         * print-rtl.c (print_rtx): Start REG_NOTES on a new line.
14029
14030 2010-07-27  Joseph Myers  <joseph@codesourcery.com>
14031
14032         * coretypes.h (struct cl_option_handlers): Declare.
14033         * hooks.c (hook_int_size_t_constcharptr_int_0): Remove.
14034         * hooks.h (hook_int_size_t_constcharptr_int_0): Remove.
14035         * langhooks-def.h (lhd_handle_option): Declare.
14036         (LANG_HOOKS_HANDLE_OPTION): Use lhd_handle_option.
14037         * langhooks.c (lhd_handle_option): New.
14038         * langhooks.h (struct lang_hooks): Update prototype and return
14039         value type of handle_option hook.
14040         * optc-gen.awk: Generate target_flags_explicit definition for the
14041         driver.
14042         * opts-common.c: Include diagnostic.h.
14043         (handle_option): Move from opts.c.  Update prototype and return
14044         value type.  Use handlers structure.
14045         (read_cmdline_option): Move from opts.c.  Update prototype.  Use
14046         handlers structure.
14047         (set_option): Move from opts.c.
14048         * opts.c (common_handle_option): Update prototype and return value
14049         type.  Update calls to handle_option and enable_warning_as_error.
14050         (unknown_option_callback, post_handling_callback,
14051         lang_handle_option, target_handle_option): New.
14052         (handle_option, read_cmdline_option): Move to opts-common.c.
14053         (read_cmdline_options): Update prototype.  Update call to
14054         read_cmdline_option.
14055         (decode_options): Initialize and use handlers structure.
14056         (set_option): Move to opts-common.c.
14057         (enable_warning_as_error): Update prototype.  Update call to
14058         handle_option.
14059         * opts.h (struct cl_option_handler_func, struct
14060         cl_option_handlers): New.
14061         (handle_option, enable_warning_as_error): Update prototypes.
14062         (read_cmdline_option): Declare.
14063         * Makefile.in (opts-common.o): Update dependencies.
14064
14065 2010-07-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
14066
14067         * config/arm/arm.c (params.h): Include.
14068         (arm_override_options): Tune gcse-unrestricted-cost.
14069         * config/arm/t-arm (arm.o): Define dependencies.
14070
14071 2010-07-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
14072
14073         PR target/42495
14074         PR middle-end/42574
14075         * basic-block.h (get_dominated_to_depth): Declare.
14076         * dominance.c (get_dominated_to_depth): New function, use
14077         get_all_dominated_blocks as a base.
14078         (get_all_dominated_blocks): Use get_dominated_to_depth.
14079
14080         * gcse.c (occr_t, VEC (occr_t, heap)): Define.
14081         (hoist_exprs): Remove.
14082         (alloc_code_hoist_mem, free_code_hoist_mem): Update.
14083         (compute_code_hoist_vbeinout): Add debug print outs.
14084         (hoist_code): Partially rewrite, simplify.  Use get_dominated_to_depth.
14085
14086         * params.def (PARAM_MAX_HOIST_DEPTH): New parameter to avoid
14087         quadratic behavior.
14088         * params.h (MAX_HOIST_DEPTH): New macro.
14089         * doc/invoke.texi (max-hoist-depth): Document.
14090
14091 2010-07-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
14092
14093         PR rtl-optimization/40956
14094         * config/arm/arm.c (thumb1_size_rtx_costs): Fix cost of simple
14095         constants.
14096
14097 2010-07-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
14098
14099         PR target/42495
14100         PR middle-end/42574
14101         * config/arm/arm.c (legitimize_pic_address): Use
14102         gen_calculate_pic_address pattern to emit calculation of PIC address.
14103         (will_be_in_index_register): New function.
14104         (arm_legitimate_address_outer_p, thumb2_legitimate_address_p,)
14105         (thumb1_legitimate_address_p): Use it provided !strict_p.
14106         * config/arm/arm.md (calculate_pic_address): New expand and split.
14107
14108 2010-07-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
14109
14110         PR target/42495
14111         PR middle-end/42574
14112         * config/arm/arm.c (thumb1_size_rtx_costs): Add cost for "J" constants.
14113         * config/arm/arm.md (define_split "J", define_split "K"): Make
14114         IRA/reload friendly.
14115
14116 2010-07-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
14117
14118         * gcse.c (insert_insn_end_basic_block): Update signature, remove
14119         unused checks.
14120         (pre_edge_insert, hoist_code): Update.
14121
14122 2010-07-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
14123
14124         PR target/42495
14125         PR middle-end/42574
14126         * gcse.c (hoist_expr_reaches_here_p): Remove excessive check.
14127
14128 2010-07-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
14129
14130         * gcse.c (hoist_code): Generate new pseudo for every new set insn.
14131
14132 2010-07-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
14133
14134         PR rtl-optimization/40956
14135         PR target/42495
14136         PR middle-end/42574
14137         * gcse.c (compute_code_hoist_vbeinout): Consider more expressions
14138         for hoisting.
14139         (hoist_code): Count occurences in current block too.
14140
14141 2010-07-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
14142
14143         * gcse.c (struct expr:max_distance): New field.
14144         (doing_code_hoisting_p): New static variable.
14145         (want_to_gcse_p): Change signature.  Allow constrained hoisting of
14146         simple expressions, don't change behavior for PRE.  Set max_distance.
14147         (insert_expr_in_table): Set new max_distance field.
14148         (hash_scan_set): Update.
14149         (hoist_expr_reaches_here_p): Stop search after max_distance
14150         instructions.
14151         (find_occr_in_bb): New static function.  Use it in ...
14152         (hoist_code): Calculate sizes of basic block before any changes are
14153         done.  Pass max_distance to hoist_expr_reaches_here_p.
14154         (one_code_hoisting_pass): Set doing_code_hoisting_p.
14155
14156         * params.def (PARAM_GCSE_COST_DISTANCE_RATIO,)
14157         (PARAM_GCSE_UNRESTRICTED_COST): New parameters.
14158         * params.h (GCSE_COST_DISTANCE_RATIO, GCSE_UNRESTRICTED_COST): New
14159         macros.
14160         * doc/invoke.texi (gcse-cost-distance-ratio, gcse-unrestricted-cost):
14161         Document.
14162
14163 2010-07-27  Jeff Law  <law@redhat.com>
14164             Maxim Kuvyrkov  <maxim@codesourcery.com>
14165
14166         * gcse.c (compute_transpout, transpout): Remove, move logic
14167         to prune_expressions.
14168         (compute_pre_data): Move pruning of trapping expressions ...
14169         (prune_expressions): ... here.  New static function.
14170         (compute_code_hoist_data): Use it.
14171         (alloc_code_hoist_mem, free_code_hoist_mem, hoist_code): Update.
14172
14173 2010-07-27  Xinliang David Li  <davidxl@google.com>
14174
14175         * tree-ssa-loop-ivopts.c (adjust_iv_update_pos): New function.
14176         (rewrite_use_address): Adjust iv update position when needed.
14177
14178 2010-07-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
14179
14180         * dbgcnt.def (hoist_insn): New debug counter.
14181         * gcse.c (hoist_code): Use it.
14182
14183 2010-07-27  Xinliang David Li  <davidxl@google.com>
14184
14185         * tree-ssa-loop-ivopts.c (niter_for_exit): New parameter.
14186         (niter_for_single_dom_exit): Passes additional parameter.
14187         (iv_period): Fix comments.
14188         (may_eliminate_iv): Handles multiple exit loops properly.
14189         (free_tree_niter_desc): New function.
14190         (free_loop_data): Frees up loop iteration descriptors.
14191
14192 2010-07-27  Jakub Jelinek  <jakub@redhat.com>
14193
14194         PR target/44542
14195         * cfgexpand.c (expand_one_stack_var_at): Limit align to maximum
14196         of max_used_stack_slot_alignment and PREFERRED_STACK_BOUNDARY
14197         instead of MAX_SUPPORTED_STACK_ALIGNMENT.
14198         (expand_one_var): Don't consider DECL_ALIGN for variables for
14199         which expand_one_stack_var_at has been already called.
14200
14201         PR testsuite/44701
14202         * doc/md.texi: Clarify m and es constraints on PowerPC and m and S
14203         constraints on IA-64.
14204
14205 2010-07-27  Jie Zhang  <jie@codesourcery.com>
14206
14207         PR target/44290
14208         Revert:
14209         2010-07-23  Jie Zhang  <jie@codesourcery.com>
14210
14211         * tree-sra.c (ipa_sra_preliminary_function_checks): Return
14212         false if ! tree_versionable_function_p.
14213
14214 2010-07-27  Jakub Jelinek  <jakub@redhat.com>
14215
14216         * dwarf2out.c (add_data_member_location_attribute): Use
14217         add_AT_unsigned instead of add_AT_int if offset is non-negative.
14218
14219 2010-07-27  Bernd Schmidt  <bernds@codesourcery.com>
14220
14221         * postreload.c (try_replace_in_use): New static function.
14222         (reload_combine_recognize_const_pattern): Use it here.  Allow
14223         substituting into a final add insn, and substituting into a memory
14224         reference in an insn that sets the reg.
14225
14226 2010-07-27  Joseph Myers  <joseph@codesourcery.com>
14227
14228         * common.opt (o): Add MissingArgError.
14229         * doc/options.texi (MissingArgError): Document.
14230         * hooks.c (hook_bool_constcharptr_size_t_false): Remove.
14231         * hooks.h (hook_bool_constcharptr_size_t_false): Remove.
14232         * langhooks-def.h (LANG_HOOKS_MISSING_ARGUMENT): Remove.
14233         (LANG_HOOKS_INITIALIZER): Remove missing_argument hook initializer.
14234         * langhooks.h (struct lang_hooks): Remove missing_argument.
14235         * optc-gen.awk: Handle MissingArgError and output new structure
14236         field initializers.
14237         * opts.c (read_cmdline_option): Use missing_argument_error field
14238         instead of missing_argument langhook.
14239         * opts.h (struct cl_option): Add missing_argument_error field.
14240         * system.h (LANG_HOOKS_MISSING_ARGUMENT): Poison.
14241
14242 2010-07-27  Iain Sandoe  <iains@gcc.gnu.org>
14243
14244         PR target/29090
14245         * config/rs6000/rs6000.c (rs6000_gimplify_va_arg): Special-case the
14246         Darwin64 ABI, for zero-sized objects.
14247
14248 2010-07-27  Iain Sandoe  <iains@gcc.gnu.org>
14249
14250         PR target/35491
14251         PR target/29090
14252
14253         Merge from Apple local 4.2.1.
14254         2005-05-11  Stan Shebs  <shebs@apple.com>
14255         Fix 64-bit varargs for Darwin (Radar 4028089).
14256         * config/rs6000/rs6000.h (rs6000_args): New field floats_in_gpr.
14257         * config/rs6000/rs6000.c (rs6000_darwin64_record_arg_advance_flush):
14258         Add argument, add case for 8-byte register half-filled with a float.
14259         (rs6000_darwin64_record_arg_advance_recurse): Detect and handle
14260         single-precision floats specially.
14261
14262 2010-07-27  Ira Rosen  <irar@il.ibm.com>
14263
14264         PR tree-optimization/44152
14265         * tree-vect-slp.c (vect_build_slp_tree): Collect nodes with
14266         complex numbers for further check.
14267         (vect_supported_load_permutation_p): Check nodes with
14268         complex numbers.
14269
14270 2010-07-27  Joseph Myers  <joseph@codesourcery.com>
14271
14272         * langhooks-def.h (lhd_init_options, LANG_HOOKS_OPTION_LANG_MASK,
14273         LANG_HOOKS_COMPLAIN_WRONG_LANG_P): New.
14274         (LANG_HOOKS_INIT_OPTIONS): Update default definition.
14275         (LANG_HOOKS_INITIALIZER): Add new hooks.
14276         * langhooks.c (lhd_init_options, lhd_complain_wrong_lang_p): New.
14277         * langhooks.h (struct lang_hooks): Add new hooks option_lang_mask
14278         and complain_wrong_lang_p.  Update init_options prototype.
14279         * c-objc-common.c (c_initialize_diagnostics): First call
14280         c_common_initialize_diagnostics.
14281         * c-objc-common.h (LANG_HOOKS_OPTION_LANG_MASK,
14282         LANG_HOOKS_COMPLAIN_WRONG_LANG_P): Define.
14283         * coretypes.h (struct cl_option, struct cl_decoded_option): Declare.
14284         * hooks.c (hook_uint_uint_constcharptrptr_0): Remove.
14285         (hook_uint_void_0): New.
14286         * hooks.h (hook_uint_uint_constcharptrptr_0): Remove.
14287         (hook_uint_void_0): New.
14288         * opts-common.c (decode_cmdline_option,
14289         decode_cmdline_options_to_array): Also fill in canonical_option field.
14290         * opts.c (complain_wrong_lang): Use langhook to determine whether
14291         to complain instead of special-casing LTO.
14292         (decode_options): Separate lang_mask determination with
14293         option_lang_mask hook from call of init_options hook.
14294         * opts.h (struct cl_decoded_option): Add canonical_option.
14295
14296 2010-07-27  Jakub Jelinek  <jakub@redhat.com>
14297
14298         PR tree-optimization/45083
14299         * tree-inline.c (add_local_variables): Also remap DECL_DEBUG_EXPR.
14300
14301 2010-07-27  Bernd Schmidt  <bernds@codesourcery.com>
14302
14303         * postreload.c (reload_combine_recognize_const_pattern): Move test
14304         for limiting the insn movement to the right scope.
14305
14306         PR rtl-optimization/45051
14307         * reload1.c (delete_output_reload): Use refers_to_regno_p rather
14308         than reg_mentioned_p.
14309
14310 2010-07-26  Richard Henderson  <rth@redhat.com>
14311
14312         PR target/44132
14313         * tree-emutls.c: New file.
14314         * Makefile.in (OBJS-common): Add it.
14315         * tree-pass.h (pass_ipa_lower_emutls): Declare.
14316         * passes.c (init_optimization_passes): Add it.
14317
14318         * dwarf2out.c (loc_list_from_tree): If emutls.debug_form_tls_address,
14319         pull the control variable from DECL_VALUE_EXPR, not emutls_decl.
14320         * expr.c (emutls_var_address): Delete.
14321         (expand_expr_addr_expr_1, expand_expr_real_1): Don't use it.
14322         * output.h (SECCAT_EMUTLS_VAR, SECCAT_EMUTLS_TMPL): Delete.
14323         (emutls_finish): Delete.
14324         * toplev.c (compile_file): Don't call it.
14325         * tree.h (emutls_decl): Delete.
14326         * varasm.c (emutls_htab, DECL_EMUTLS_VAR_P): Delete.
14327         (emutls_finish, emutls_finalize_control_var): Delete.
14328         (emutls_object_type): Move to tree-emutls.c.
14329         (EMUTLS_SEPARATOR, prefix_name, get_emutls_object_name,
14330         default_emutls_var_fields, get_emutls_object_type,
14331         get_emutls_init_templ_addr, emutls_decl, emutls_common_1
14332         default_emutls_var_init): Likewise.
14333         (get_variable_section): Don't special case emutls.
14334         (assemble_variable, do_assemble_alias, categorize_decl_for_section,
14335         default_elf_select_section, default_unique_section,
14336         default_encode_section_info): Likewise.
14337         * varpool.c (decide_is_variable_needed): Likewise.
14338         * gimple-iterator.c (update_call_edge_frequencies): New
14339         (gsi_insert_on_edge_immediate): Use it.
14340         (gsi_insert_seq_on_edge_immediate): Likewise.
14341         (gsi_commit_one_edge_insert): Likewise.
14342
14343         * config/i386/i386.c (x86_64_elf_select_section): Don't handle
14344         SECCAT_EMUTLS_VAR, SECCAT_EMUTLS_TMPL.
14345         (x86_64_elf_unique_section): Likewise.
14346
14347 2010-07-26  Jan Hubicka  <jh@suse.cz>
14348
14349         * lto-streamer.h (struct lto_file_decl_data): Mark resolutions with
14350         GTY((skip)).
14351
14352 2010-07-26  Anatoly Sokolov  <aesok@post.ru>
14353
14354         * target.def (output_source_filename): New hook.
14355         * doc/tm.texi.in (TARGET_ASM_OUTPUT_SOURCE_FILENAME): Document.
14356         * doc/tm.texi: Regenerate.
14357         * toplev.c (output_file_directive) Remove function.
14358         * toplev.h (output_file_directive) Remove.
14359         * output.h (default_asm_output_source_filename,
14360         output_file_directive): Declare.
14361         * varasm.h (default_asm_output_source_filename,
14362         output_file_directive): New functions.
14363
14364         * config/mips/mips.h (ASM_OUTPUT_SOURCE_FILENAME): Remove macro.
14365         * config/mips/mips-protos.h (mips_output_filename): Remove.
14366         * config/mips/mips.c (mips_output_filename): Make Static.
14367         (TARGET_ASM_OUTPUT_SOURCE_FILENAME): Define.
14368
14369 2010-07-26  Richard Guenther  <rguenther@suse.de>
14370
14371         PR tree-optimization/43784
14372         * tree-nrv.c (dest_safe_for_nrv_p): It's not safe to NRV
14373         if the destination is used by the call.
14374
14375 2010-07-26  Richard Guenther  <rguenther@suse.de>
14376
14377         PR middle-end/45073
14378         * gimple-fold.c (gimplify_and_update_call_from_tree): Conditionalize
14379         SSA updating on being in SSA form.
14380
14381 2010-07-26  Richard Guenther  <rguenther@suse.de>
14382
14383         PR middle-end/45056
14384         * gimple-fold.c (fold_stmt_1): Also fold references in debug stmts.
14385
14386 2010-07-26  Richard Guenther  <rguenther@suse.de>
14387
14388         PR tree-optimization/45071
14389         * tree-ssa-sccvn.c (vn_reference_maybe_forwprop_address): Always
14390         adjust op->opcode.
14391
14392 2010-07-26  Naveen.H.S  <naveen.S@kpitcummins.com>
14393
14394         * config/v850/lib1funcs.asm (save_r2_r31, return_r2_r31,
14395         save_r20_r31, return_r20_r31, save_r21_r31, return_r21_r31,
14396         save_r22_r31, return_r22_r31, save_r23_r31, return_r23_r31,
14397         save_r24_r31, return_r24_r31, save_r25_r31, return_r25_r31,
14398         save_r26_r31, return_r26_r31, save_r27_r31, return_r27_r31,
14399         save_r28_r31, return_r28_r31, save_r29_r31, return_r29_r31,
14400         save_r31, return_r31, save_interrupt, return_interrupt,
14401         save_all_interrupt, return_all_interrupt, L_save_r2_r31,
14402         L_return_interrupt, callt_return_interrupt, L_restore_all_interrupt,
14403         L_save_##START##_r31c, L_callt_save_r31c): Updated as per the
14404         new ABI requirements.
14405         (save_r6_r9, L_callt_save_r6_r9): Remove.
14406         * config/v850/predicates.md (even_reg_operand, disp23_operand,
14407         const_float_1_operand const_float_0_operand): New Predicates.
14408         (pattern_is_ok_for_prepare, pattern_is_ok_for_prologue,
14409         pattern_is_ok_for_epilogue): Update as per the ABI requirements.
14410         * config/v850/t-v850: Update multilibs for new target variants.
14411         (save_varargs, callt_save_varargs, callt_save_r6_r9): Remove.
14412         * config/v850/t-v850e: Likewise.
14413         * config/v850/v850.c (v850_issue_rate): New.
14414         (v850_strict_argument_naming): New.
14415         (function_arg): Modify to generate a different ABI.
14416         (print_operand): Update case 'z' to support float modes.
14417         (output_move_single): Modify to generate appropriate and better
14418         assembly.
14419         (v850_float_z_comparison_operator, v850_select_cc_mode,
14420         v850_float_nz_comparison_operator,  v850_gen_float_compare,
14421         v850_gen_compare): New functions to support comparison of float values.
14422         (ep_memory_offset): Add support for V850E2 targets.
14423         (INTERRUPT_FIXED_NUM, INTERRUPT_ALL_SAVE_NUM): Update.
14424         (INTERRUPT_REGPARM_NUM): Remove.
14425         (compute_register_save_size): Add extra case to save/restore long call.
14426         (use_prolog_function): New function to support prologue.
14427         (expand_prologue): Add support for V850E2 targets and modified
14428         as per the current ABI requirements.
14429         (expand_epilogue): Likewise.
14430         (construct_restore_jr): Modify based on TARGET_LONG_CALLS.
14431         (construct_save_jarl): Likewise.
14432         (construct_dispose_instruction): Update as per the current ABI
14433         requirements.
14434         (construct_prepare_instruction): Likewise.
14435         * config/v850/v850.h (TARGET_CPU_DEFAULT): Add target predefines.
14436         (TARGET_CPU_v850e2, TARGET_CPU_v850e2v3): Define
14437         (CPP_SPEC): Updated to support v850e2 targets.
14438         (STRICT_ALIGNMENT): Modified.
14439         (FIRST_PSEUDO_REGISTER): Updated to add even registers.
14440         (FIXED_REGISTERS): Likewise.
14441         (CALL_USED_REGISTERS): Likewise.
14442         (CONDITIONAL_REGISTER_USAGE): Updated.
14443         (HARD_REGNO_MODE_OK): Updated.
14444         (reg_class): Updated to add even registers.
14445         (REG_CLASS_NAMES): Likewise.
14446         (REG_CLASS_CONTENTS): Likewise.
14447         (REGNO_REG_CLASS): Updated for CC registers.
14448         (REG_CLASS_FROM_LETTER): Added support for even registers.
14449         (REGNO_OK_FOR_BASE_P): Updated for CC registers.
14450         (STACK_POINTER_REGNUM, FRAME_POINTER_REGNUM, LINK_POINTER_REGNUM,
14451         ARG_POINTER_REGNUM): Updated.
14452         (FUNCTION_ARG_ADVANCE): Define.
14453         (REG_PARM_STACK_SPACE): Update as per the current ABI requirements.
14454         (OUTGOING_REG_PARM_STACK_SPACE): Remove.
14455         (EXTRA_CONSTRAINT): Add new constraint 'W' for 23-bit displacement.
14456         (GO_IF_LEGITIMATE_ADDRESS): Updated.
14457         (SELECT_CC_MODE): Define.
14458         (REGISTER_NAMES): Updated to add psw and fcc registers.
14459         (ADDITIONAL_REGISTER_NAMES): Updated.
14460         (ASM_OUTPUT_ADDR_DIFF_ELT): Updated to support new targets.
14461         (JUMP_TABLES_IN_TEXT_SECTION): Updated.
14462         * config/v850/v850.md (define_constants): Define new constants.
14463         (type): Update store,bit1,macc,div,fpu and single attributes.
14464         (cpu): New attribute.
14465         (cc): Add set_z attribute.
14466         (unsign23byte_load, sign23byte_load, unsign23hword_load,
14467         sign23hword_load, 23word_load, 23byte_store, 23hword_store,
14468         23word_store): New instructions for 23-bit displacement load and store.
14469         (movqi_internal, movhi_internal): Update the attributes.
14470         (movsi, movsi_internal_v850e): Updated to support v850e2 targets.
14471         (movsi_internal_v850e, movsi_internal, movsf_internal): Update
14472         the attributes.
14473         (v850_tst1): Modified using CC_REGNUM.
14474         (tstsi): Remove.
14475         (cmpsi): Modified as define_expand from define_insn.
14476         (cmpsi_insn, cmpsf, cmpdf): New instructions.
14477         (addsi3, subsi3, negsi2, divmodsi4, udivmodsi4, divmodhi4,
14478         udivmodhi4, v850_clr1_1, v850_clr1_2, v850_clr1_3, andsi3,
14479         v850_set1_1, v850_set1_3, iorsi3, v850_not1_1, v850_not1_3, xorsi3,
14480         one_cmplsi2): Clobber the CC_REGNUM register.
14481         (v850_clr1_1, v850_clr1_2, v850_clr1_3, andsi3, v850_set1_1,
14482         v850_set1_2, v850_set1_3, iorsi3, v850_not1_1, v850_not1_2,
14483         v850_not1_3, xorsi3, one_cmplsi2): Update the attributes accordingly.
14484         (setf_insn, set_z_insn, set_nz_insn): New instructions for
14485         v850e2v3 target.
14486         (movsicc_normal_cc, movsicc_reversed_cc): New instructions.
14487         (movsicc, movsicc_normal, movsicc_reversed): Add support for V850E2
14488         targets.
14489         (sasf_1, sasf_2): Remove.
14490         (sasf): New instruction.
14491         (rotlhi3, rotlhi3_8, rotlsi3, rotlsi3_16): Update to support V850E2
14492         targets. CC_REGNUM register is clobbered and attributes are
14493         updated.
14494         (branch_z_normal, branch_z_invert, branch_nz_normal,
14495         branch_nz_invert): New branch related instructions.
14496         (jump): Updated the attributes.
14497         (switch): Update to support new targets. CC_REGNUM register is
14498         clobbered and attributes are updated.
14499         (call_internal_short, call_internal_long, call_value_internal_short,
14500         call_value_internal_long): Updated the attributes.
14501         (zero_extendhisi2, zero_extendqisi2): CC_REGNUM register is
14502         clobbered and attributes are updated.
14503         (extendhisi_insn, extendhisi2, extendqisi_insn, extendqisi2):
14504         Update to support new targets. CC_REGNUM register is clobbered.
14505         (ashlsi3_v850e2, lshrsi3_v850e2, ashrsi3_v850e2): New shift
14506         instructions.
14507         (lshrsi3, ashrsi3): CC_REGNUM register is clobbered and attributes
14508         are updated.
14509         (ffssi2, addsf3, adddf3, subsf3, subdf3, mulsf3, muldf3, divsf3,
14510         divdf3, minsf3, mindf3, maxsf3, maxdf3, abssf2, absdf2, negsf2,
14511         negdf2, sqrtsf2, sqrtdf2, truncsfsi2, truncdfsi2, floatsisf2,
14512         floatsidf2, extendsfdf2, extenddfsf2, recipsf2, recipdf2,
14513         rsqrtsf2, rsqrtdf2, maddsf4, msubsf4, nmaddsf4, nmsubsf4,
14514         cmpsf_le_insn, cmpsf_lt_insn, cmpsf_ge_insn, cmpsf_gt_insn,
14515         cmpsf_eq_insn, cmpsf_ne_insn, cmpdf_le_insn, cmpdf_lt_insn,
14516         cmpdf_ge_insn, cmpdf_gt_insn, cmpdf_eq_insn, cmpdf_ne_insn, trfsr,
14517         movsfcc, movdfcc, movsfcc_z_insn, movsfcc_nz_insn, movdfcc_z_insn,
14518         movdfcc_nz_insn, movedfcc_z_zero, movedfcc_nz_zero): New floating
14519         point instructions defined for V850e2v3 target.
14520         (callt_save_interrupt, callt_return_interrupt, return_interrupt):
14521         Add support for V850E2 targets and CC_REGNUM register is clobbered.
14522         (callt_save_all_interrupt, callt_restore_all_interrupt): Add
14523         support for new targets.
14524         * config/v850/v850-modes.def: New file.
14525         * config/v850/v850.opt(mstrict-align): Remove.
14526         (mno-strict-align, mjump-tables-in-data-section, mv850e2,
14527         mv850e2v3): New command line options for V850.
14528         * config.gcc: Update the newly added files.
14529         * doc/invoke.texi: Update the newly added command line options for
14530         V850 target.
14531
14532 2010-07-26  Richard Guenther  <rguenther@suse.de>
14533
14534         PR tree-optimization/45052
14535         * ipa-pure-const.c (check_stmt): Check volatileness.
14536
14537 2010-07-25  Eric Botcazou  <ebotcazou@adacore.com>
14538
14539         PR target/44707
14540         * config/sparc/sparc-protos.h (sparc_legitimize_reload_address): New.
14541         * config/sparc/sparc.c: Include reload.h.
14542         (legitimize_tls_address): Rename into...
14543         (sparc_legitimize_tls_address): ...this.
14544         (legitimize_pic_address): Rename into...
14545         (sparc_legitimize_pic_address): ...this.
14546         (sparc_expand_move): Adjust to above renaming.
14547         (sparc_tls_referenced_p): Likewise.
14548         (sparc_legitimize_tls_address): Likewise.
14549         (sparc_legitimize_pic_address): Likewise.
14550         (sparc_legitimize_address): Likewise.
14551         (sparc_output_mi_thunk): Likewise.
14552         (sparc_legitimize_reload_address): New global function.  Recognize
14553         (lo_sum (high ...) ...) patterns generated by earlier passes.
14554         * config/sparc/sparc.h (LEGITIMIZE_RELOAD_ADDRESS): Use above function.
14555
14556 2010-07-25  Eric Botcazou  <ebotcazou@adacore.com>
14557
14558         PR target/44484
14559         * config/sparc/predicates.md (memory_reg_operand): Delete.
14560         * config/sparc/sync.md (sync_compare_and_swap): Minor tweaks.
14561         (*sync_compare_and_swap): Encode the address form in the pattern.
14562         (*sync_compare_and_swapdi_v8plus): Likewise.
14563
14564 2010-07-24  Gerald Pfeifer  <gerald@pfeifer.com>
14565
14566         * doc/install.texi (Specific, *-*-freebsd*): Adjust to recent changes.
14567         Streamline paragraph on compatibility with the system compiler.
14568
14569 2010-07-24  Steven Bosscher  <steven@gcc.gnu.org>
14570
14571         PR middle-end/45035
14572         * alias.c (true_dependence_1): Fix thinko in merge of old
14573         true_dependence and canon_true_dependence.
14574
14575 2010-07-23  Jan Hubicka  <jh@suse.cz>
14576
14577         * lto-streamer-out.c (write_symbol): Fix visibilities of external
14578         references.
14579
14580 2010-07-23  Le-Chun Wu  <lcwu@google.com>
14581
14582         * omega.c (omega_eliminate_redundant): Remove a self-assign statement.
14583         * tree-ssa-ccp.c (ccp_lattice_meet): Remove a self-assign statement
14584         and an unnecessary assignment.
14585         * dbxout.c (DEBUGGER_ARG_OFFSET): Change OFFSET to OFFSET+0 to avoid
14586         self-assign warning.
14587         * config/i386/i386.c (ix86_vectorize_builtin_vec_perm): Remove
14588         unnecessary self-init.
14589
14590 2010-07-23  Richard Guenther  <rguenther@suse.de>
14591
14592         PR lto/43071
14593         * gcc.c (LINK_COMMAND_SPEC): Filter out -fcompare-debug
14594         for -flto and -fwhopr.
14595
14596 2010-07-23  Kai Tietz  <kai.tietz@onevision.com>
14597
14598         PR target/41943
14599         * Makefile.in (USER_H_INC_NEXT_PRE, USER_H_INC_NEXT_POST): New.
14600         (stmp-int-hdrs): Prefix/postfix headers by include_next.
14601         * config.gcc (user_headers_inc_next_pre): New.
14602         (user_headers_inc_next_post): Likewise.
14603         (*-w64-mingw*): Use for float.h post-fixing, and for
14604         stddef.h/stdarg.h pre-fixing by include_next.
14605         * configure.ac (user_headers_inc_next_post): New.
14606         (user_headers_inc_next_pre): New.
14607         * configure: Regenerated.
14608
14609 2010-07-23  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
14610
14611         * configure.ac: Don't disable TLS on Solaris 8/9 by default
14612         Set tga_func for Solaris 2/x86 resp. SPARC.
14613         Remove duplicate parts of sparc*-sun-solaris2.* TLS check.
14614         (LIB_THREAD_LDFLAGS_SPEC): Define.
14615         (LIB_TLS_SPEC): Define.  Check for required Sun ld version.
14616         * configure: Regenerate.
14617         * config.in: Regenerate.
14618         * config/sol2.h (LIB_SPEC): Use LIB_THREAD_LDFLAGS_SPEC with
14619         -pthread, -threads, LIB_TLS_SPEC with -pthread.
14620         * doc/install.texi (Specific, *-*-solaris2*): Document use of
14621         alternate thread libraries on Solaris 8.
14622         Document TLS patch requirements.
14623         * doc/sourcebuild.texi (Add Options): Sort alphabetically.
14624         Document tls.
14625
14626         PR target/18788
14627         * config/sol2.h (LIB_SPEC): Link with thread libraries even with
14628         -shared.
14629
14630 2010-07-23  Jakub Jelinek  <jakub@redhat.com>
14631
14632         * tree.h (struct tree_base): Add nameless_flag bitfield.
14633         (TYPE_NAMELESS, DECL_NAMELESS): Define.
14634         * omp-low.c (create_omp_child_function, scan_omp_parallel,
14635         scan_omp_task, lower_omp_taskreg): Set DECL_NAMELESS and/or
14636         DECL_ARTIFICIAL where needed.
14637         * dwarf2out.c (dwarf2_name): Return NULL if DECL_NAMELESS.
14638         (type_tag): Return NULL if TYPE_NAMELESS or if TYPE_DECL
14639         has DECL_NAMELESS set.
14640
14641 2010-07-23  Martin Jambor  <mjambor@suse.cz>
14642
14643         PR tree-optimization/44915
14644         * ipa-cp.c (cgraph_gate_cp): Also check that optimize is true.
14645         * ipa-inline.c (cgraph_mark_inline_edge): Likewise.
14646         (analyze_function): Likewise.
14647
14648 2010-07-23  Martin Jambor  <mjambor@suse.cz>
14649
14650         PR tree-optimization/44914
14651         * tree-sra.c (sra_modify_function_body): Return true if CFG was
14652         changed, add purging dead eh edges.
14653         (ipa_sra_modify_function_body): Return true if CFG was changed,
14654         simplify purging dead eh edges.
14655         (modify_function): Return true if CFG was changed.
14656         (perform_intra_sra): Add TODO_cleanup_cfg to the return value if CFG
14657         was changed.
14658         (ipa_early_sra): Likewise.
14659
14660 2010-07-23  Jie Zhang  <jie@codesourcery.com>
14661
14662         PR target/44290
14663         * attribs.c (decl_attributes): Insert "noinline" and "noclone"
14664         if "naked".
14665         * tree-sra.c (ipa_sra_preliminary_function_checks): Return
14666         false if ! tree_versionable_function_p.
14667
14668 2010-07-23  Nathan Froyd  <froydnj@codesourcery.com>
14669
14670         * builtins.def (BUILT_IN_ARGS_INFO): Remove.
14671         * ipa-pure-const.c (special_builtlin_state): Remove
14672         BUILT_IN_ARGS_INFO case.
14673         * tree-stdarg.c (execute_optimize_stdarg): Likewise.
14674         * builtins.c (expand_builtin): Likewise.
14675         (expand_builtin_args_info): Remove.
14676         * doc/tm.texi (__builtin_args_info): Remove.
14677         (__builtin_next_arg): Adjust to not refer to __builtin_args_info.
14678         * doc/tm.text.in: Likewise.
14679
14680 2010-07-23  Richard Guenther  <rguenther@suse.de>
14681
14682         * lto-symtab.c (lto_symtab_merge): Use gtc_mode enum values.
14683         (lto_symtab_merge_decls_2): Likewise.
14684         * tree-ssa.c (useless_type_conversion_p): Likewise.
14685         * lto-streamer-in.c (input_gimple_stmt): Likewise.
14686         * gimple.c (gtc_visited2, gtc_ob2): Remove.
14687         (struct type_pair_d): Make same_p an array indexed by mode.
14688         Update comment.
14689         (lookup_type_pair): Update initialization.
14690         (struct sccs): Adjust same_p type.
14691         (gimple_types_compatible_p_1, gtc_visit, gimple_types_compatible_p):
14692         Adjust.
14693         (print_gimple_types_stats): Likewise.
14694         * gimple.h (enum gtc_mode): New.
14695         (gimple_types_compatible_p): Adjust prototype.
14696
14697 2010-07-23  Daniel Jacobowitz  <dan@codesourcery.com>
14698
14699         * dwarf2out.c (dwarf2out_frame_debug): Check for queued saves
14700         again after processing insn.
14701
14702 2010-07-23  Jie Zhang  <jie@codesourcery.com>
14703
14704         * tree-sra.c (ipa_sra_preliminary_function_checks): Dump
14705         proper words when !tree_versionable_function_p.
14706
14707 2010-07-23  Richard Guenther  <rguenther@suse.de>
14708
14709         PR tree-optimization/45037
14710         * tree-ssa-loop-ivopts.c (copy_ref_info): Handle NULL base.
14711
14712 2010-07-23  Jie Zhang  <jie@codesourcery.com>
14713
14714         * doc/extend.texi: Remove IP2K from the description of naked attribute.
14715         Add MCORE instead.
14716
14717 2010-07-10  Andi Kleen  <ak@linux.intel.com>
14718
14719         PR lto/44992
14720         * lto-opts.c (lto_write_options): Add NULL file_data argument to
14721         lto_get_section_name.
14722         * lto-section-out.c (lto_destroy_simple_output_block): Likewise.
14723         * lto-streamer-out.c (produce_asm): Likewise.
14724         (copy_function): Likewise.
14725         (produce_symtab): Likewise.
14726         (produce_asm_for_decls): Likewise.
14727         * lto-streamer.c (lto_get_section_name): Add file_data argument.
14728         Rewrite to add random postfix to LTO sections.
14729         * lto-streamer.h (lto_file_decl_data): Add next, id, resolutions.
14730         (lto_get_section_name): Add file_data argument to prototype.
14731
14732 2010-07-10  Andi Kleen  <ak@linux.intel.com>
14733
14734         * lto-section-in.c (lto_section_name): Synchronize names
14735         with lto_get_section_name.
14736
14737 2010-07-10  Andi Kleen  <ak@linux.intel.com>
14738
14739         * lto-opts.c (lto_read_file_options): Check for missing section.
14740
14741 2010-07-22  Bernd Schmidt  <bernds@codesourcery.com>
14742
14743         * ira.c (check_allocation): Correctly handle the case where an allocno
14744         with two objects was allocated to a single reg.
14745
14746 2010-07-22  Richard Sandiford  <rdsandiford@googlemail.com>
14747
14748         * tree-ssa-math-opts.c (is_widening_mult_rhs_p): New function.
14749         (is_widening_mult_p): Likewise.
14750         (convert_to_widen): Use them.
14751         (convert_plusminus_to_widen): Likewise.  Handle fixed-point types as
14752         well as integer ones.
14753
14754 2010-07-22  Steven Bosscher  <steven@gcc.gnu.org>
14755
14756         * alias.c (true_dependence_1): New function, merged version of
14757         true_dependence and canon_true_dependence.
14758         (true_dependence): Simplify.
14759         (canon_true_dependence): Simplify.
14760
14761 2010-07-22  Richard Henderson  <rth@redhat.com>
14762
14763         PR target/45027
14764         * config/i386/i386.c (setup_incoming_varargs_64): Force the use
14765         of V4SFmode for the SSE saves; increase stack alignment if needed.
14766         (ix86_gimplify_va_arg): Don't increase stack alignment here.
14767
14768 2010-07-22  Jakub Jelinek  <jakub@redhat.com>
14769
14770         PR bootstrap/45028
14771         * recgprop.c (copyprop_hardreg_forward_1): If changed is true,
14772         call cprop_find_used_regs again via note_uses.
14773
14774 2010-07-22  Eric Botcazou  <ebotcazou@adacore.com>
14775
14776         * alias.c (get_alias_set): Fix formatting issues.
14777
14778 2010-07-22  Steve Ellcey  <sje@cup.hp.com>
14779
14780         PR middle-end/44878
14781         * stmt.c (expand_value_return):  Call promote_function_mode with
14782         a for_return argument of 2 when returning by reference.
14783
14784 2010-07-22  Dodji Seketeli  <dodji@redhat.com>
14785
14786         PR debug/45024
14787         * dwarf2out.c (scope_die_for): Don't fall back to the compilation
14788         unit DIE if we can find the scope DIE.
14789
14790 2010-07-22  Bernd Schmidt  <bernds@codesourcery.com>
14791
14792         * ira-build.c (ira_create_object): New arg SUBWORD; all callers
14793         changed.  Initialize OBJECT_SUBWORD.
14794         (ira_create_allocno): Clear ALLOCNO_NUM_OBJECTS.
14795         (ira_create_allocno_objects): Renamed from ira_create_allocno_object;
14796         all callers changed.
14797         (merge_hard_reg_conflicts): Iterate over allocno subobjects.
14798         (finish_allocno): Likewise.
14799         (move_allocno_live_ranges, copy_allocno_live_ranges): Likewise.
14800         (remove_low_level_allocnos): Likewise.
14801         (update_bad_spill_attribute): Likewise.
14802         (setup_min_max_allocno_live_range_point): Likewise.
14803         (sort_conflict_id_map): Likewise.
14804         (ira_flattening): Likewise.  Use ior_hard_reg_conflicts.
14805         (ior_hard_reg_conflicts): New function.
14806         (ior_allocate_object_conflicts): Renamed first argument to OBJ.
14807         (compress_conflict_vecs): Iterate over objects, not allocnos.
14808         (ira_add_live_range_to_object): New function.
14809         (object_range_compare_func): Renamed from allocno_range_compare_func.
14810         All callers changed.
14811         (setup_min_max_conflict_allocno_ids): For allocnos with multiple
14812         subobjects, widen the min/max range of the lowest-order object to
14813         potentially include all other such low-order objects.
14814         * ira.c (ira_bad_reload_regno_1): Iterate over allocno subobjects.
14815         (check_allocation): Likewise.  Use more fine-grained tests for register
14816         conflicts.
14817         * ira-color.c (allocnos_have_intersected_live_ranges_p): Iterate over
14818         allocno subobjects.
14819         (assign_hard_reg): Keep multiple sets of conflicts.  Make finer-grained
14820         choices about which bits to set in each set.  Don't use
14821         ira_hard_reg_not_in_set_p, perform a more elaborate test for conflicts
14822         using the multiple sets we computed.
14823         (push_allocno_to_stack): Iterate over allocno subobjects.
14824         (all_conflicting_hard_regs_coalesced): New static function.
14825         (setup_allocno_available_regs_num): Use it.
14826         (setup_allocno_left_conflicts_size): Likewise.  Iterate over allocno
14827         subobjects.
14828         (coalesced_allocno_conflict): Test subobject 0 in each allocno.
14829         (setup_allocno_priorities): Divide ALLOCNO_EXCESS_PRESSURE_POINTS_NUM
14830         by ALLOCNO_NUM_OBJECTS.
14831         (calculate_spill_cost): Likewise.
14832         (color_pass): Express if statement in a more normal way.
14833         (ira_reassign_conflict_allocnos): Iterate over allocno subobjects.
14834         (slot_coalesced_allocno_live_ranges_intersect_p): Likewise.
14835         (setup_slot_coalesced_allocno_live_ranges): Likewise.
14836         (allocno_reload_assign): Likewise.
14837         (ira_reassign_pseudos): Likewise.
14838         (fast_allocation): Likewise.
14839         * ira-conflicts.c (build_conflict_bit_table): Likewise.
14840         (print_allocno_conflicts): Likewise.
14841         (ira_build_conflicts): Likewise.
14842         (allocnos_conflict_for_copy_p): Renamed from allocnos_conflict_p.  All
14843         callers changed.  Test subword 0 of each allocno for conflicts.
14844         (build_object_conflicts): Renamed from build_allocno_conflicts.  All
14845         callers changed.  Iterate over allocno subobjects.
14846         * ira-emit.c (modify_move_list): Iterate over allocno subobjects.
14847         * ira-int.h (struct ira_allocno): New member: num_objects.
14848         Rename object to objects and change it into an array.
14849         (ALLOCNO_OBJECT): Add new argument N.
14850         (ALLOCNO_NUM_OBJECTS, OBJECT_SUBWORD): New macros.
14851         (ira_create_allocno_objects): Renamed from ira_create_allocno_object.
14852         (ior_hard_reg_conflicts): Declare.
14853         (ira_add_live_range_to_object): Declare.
14854         (ira_allocno_object_iterator): New.
14855         (ira_allocno_object_iter_init, ira_allocno_object_iter_cond): New.
14856         (FOR_EACH_ALLOCNO_OBJECT): New macro.
14857         * ira-lives.c (objects_live): Renamed from allocnos_live; all
14858         uses changed.
14859         (allocnos_processed): New sparseset.
14860         (make_object_born): Renamed from make_allocno_born; take an
14861         ira_object_t argument.  All callers changed.
14862         (make_object_dead): Renamed from make_allocno_dead; take an
14863         ira_object_t argument.  All callers changed.
14864         (update_allocno_pressure_excess_length): Take an ira_obejct_t argument.
14865         All callers changed.
14866         (mark_pseudo_regno_live): Iterate over allocno subobjects.
14867         (mark_pseudo_regno_dead): Likewise.
14868         (mark_pseudo_regno_subword_live, mark_pseudo_regno_subword_dead): New
14869         functions.
14870         (mark_ref_live): Detect subword accesses and call
14871         mark_pseudo_regno_subword_live as appropriate.
14872         (mark_ref_dead): Likewise for mark_pseudo_regno_subword_dead.
14873         (process_bb_nodes_live): Deal with object-related updates first; set
14874         and test bits in allocnos_processed to avoid computing allocno
14875         statistics more than once.
14876         (create_start_finish_chains): Iterate over objects, not allocnos.
14877         (print_object_live_ranges): New function.
14878         (print_allocno_live_ranges): Use it.
14879         (ira_create_allocno_live_ranges): Allocate and free allocnos_processed
14880         and objects_live.
14881
14882 2010-07-22  Richard Guenther  <rguenther@suse.de>
14883
14884         PR lto/42451
14885         * gimple.c (gtc_next_dfs_num): New global.
14886         (struct sccs): Make value a union, add integer same_p member.
14887         (gtc_visit): New function.
14888         (gimple_types_compatible_p_1): New function, split out from ...
14889         (gimple_types_compatible_p): ... here.  Start a DFS walk here.
14890         (iterative_hash_gimple_type): Adjust for sccs change.
14891
14892 2010-07-22  Martin Jambor  <mjambor@suse.cz>
14893
14894         PR tree-optimization/44891
14895         * tree-sra.c: Include gimple-pretty-print.h.
14896         (replace_uses_with_default_def_ssa_name): Renamed to
14897         get_repl_default_def_ssa_name, return the new SSA name instead of
14898         replacing the old one.
14899         (sra_modify_assign): Dump a message when removing a load, if the LHS
14900         is an SSA_NAME, do not do any propagation, just set the RHS to a
14901         default definition SSA NAME, type convert if necessary.
14902         * Makefile.in (tree-sra.o): Add gimple-pretty-print.h to dependencies.
14903
14904 2010-07-22  Richard Guenther  <rguenther@suse.de>
14905
14906         PR tree-optimization/45017
14907         * tree-ssa-sccvn.c (vn_reference_eq): Make sure we honor
14908         TYPE_PRECISION of integral types in addition to size.
14909
14910 2010-07-22  Maxim Kuvyrkov  <maxim@codesourcery.com>
14911
14912         * config/rs6000/sysv4.h (CHOOSE_DYNAMIC_LINKER): Default to GLIBC
14913         when no C library is specified.
14914
14915 2010-07-22  Martin Jambor  <mjambor@suse.cz>
14916
14917         * ipa-prop.h (struct ipa_node_params): Updated comment.
14918         (struct ipa_edge_args): Likewise.
14919         * Makefile.in (ipa-prop.o): Remove bogus $(GIMPLE_FOLD_H) dependency.
14920
14921 2010-07-22  Martin Jambor  <mjambor@suse.cz>
14922
14923         * cgraphunit.c (verify_edge_count_and_frequency): New function.
14924         (verify_cgraph_node): Verify frequencies of indirect edges.
14925         * tree-inline.c (tree_function_versioning): Update frequencies of
14926         indirect edges.
14927
14928 2010-07-22  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
14929
14930         PR target/43698
14931         * config/arm/arm.md: Split arm_rev into *arm_rev and *thumb1_rev.
14932         Set *arm_rev to be predicable.
14933
14934 2010-07-22  Iain Sandoe  <iains@gcc.gnu.org>
14935
14936         * config/darwin.h (LINK_COMMAND_SPEC): Split into...
14937         (LINK_COMMAND_SPEC_A): New.
14938         (DSYMUTIL): New.
14939         (DSYMUTIL_SPEC): New.
14940         * config/darwin9.h (LINK_COMMAND_SPEC): Remove.
14941         (DSYMUTIL_SPEC): Update for darwin >= 9 requirements.
14942
14943 2010-07-22  Iain Sandoe  <iains@gcc.gnu.org>
14944
14945         * calls.c (load_register_parameters): Move check for zero
14946         sized items so that only the call to
14947         mem_overlaps_already_clobbered_arg_p () is protected.
14948
14949 2010-07-22  Jan Hubicka  <jh@suse.cz>
14950
14951         * ipa-pure-const.c (varying_state): Break out from ...
14952         (get_function_state): ... here; always return varying_state
14953         when state would be NULL otherwise.
14954         (remove_node_data): Do not free varying state.
14955
14956 2010-07-22  Bernd Schmidt  <bernds@codesourcery.com>
14957
14958         PR bootstrap/44970
14959         PR middle-end/45009
14960         * postreload.c: Include "target.h".
14961         (reload_combine_closest_single_use): Don't take DEBUG_INSNs
14962         into account.
14963         (fixup_debug_insns): Don't copy the rtx.
14964         (reload_combine_recognize_const_pattern): DEBUG_INSNs can't have uses.
14965         Don't copy when replacing.  Call fixup_debug_insns in the case where
14966         we merged one add with another.
14967         (reload_combine_recognize_pattern): Fail if there aren't any uses.
14968         Try harder to determine whether we're picking a valid index register.
14969         Don't set store_ruid for an insn we're going to scan in the
14970         next iteration.
14971         (reload_combine): Remove unused code.
14972         (reload_combine_note_use): When updating use information for
14973         an old insn, ignore a use that occurs after store_ruid.
14974         * Makefile.in (postreload.o): Update dependencies.
14975
14976         * function.c (record_hard_reg_sets): Restrict the previous change
14977         to cases where the incoming nominal mode is the same as the
14978         incoming promoted mode and everything happens in MODE_INT.
14979
14980 2010-07-21  Jakub Jelinek  <jakub@redhat.com>
14981
14982         PR debug/45015
14983         * var-tracking.c (adjust_mems): Ignore ASM_OPERANDS with non-zero
14984         ASM_OPERANDS_OUTPUT_IDX.
14985         (adjust_insn): For inline asm with multiple sets ensure first
14986         ASM_OPERANDS vectors are used by all following ASM_OPERANDS in
14987         the insn.
14988
14989 2010-07-21  Richard Henderson  <rth@redhat.com>
14990
14991         * config/i386/i386.c (setup_incoming_varargs_64): Emit a simple
14992         comparison for avoiding xmm register saves.  Emit the xmm register
14993         saves explicitly.
14994         * config/i386/i386.md (UNSPEC_SSE_PROLOGUE_SAVE): Remove.
14995         (UNSPEC_SSE_PROLOGUE_SAVE_LOW): Remove.
14996         (sse_prologue_save, sse_prologue_save_insn1, sse_prologue_save_insn):
14997         Remove patterns and the associated splitters.
14998
14999 2010-07-21  Changpeng Fang  <changpeng.fang@amd.com>
15000
15001         * tree-ssa-loop-prefetch.c (analyze_ref): Strip off the real
15002         and imagine parts of a complex, so that they can have the same
15003         base and fall into the same group.
15004
15005 2010-07-21  Richard Guenther  <rguenther@suse.de>
15006
15007         PR lto/45018
15008         * tree.c (find_decls_types_r): Do not follow TREE_CHAIN
15009         of TYPE_DECLs.  Do not follow TYPE_NEXT_VARIANT,
15010         TYPE_NEXT_PTR_TO, nor TYPE_NEXT_REF_TO or TYPE_CANONICAL.
15011
15012 2010-07-21  Martin Jambor  <mjambor@suse.cz>
15013
15014         PR tree-optimization/44900
15015         * tree-sra.c (load_assign_lhs_subreplacements): Updated comments.
15016         (sra_modify_assign): Move gsi to the next statmenent unconditionally.
15017
15018 2010-07-21  Bernd Schmidt  <bernds@codesourcery.com>
15019
15020         PR middle-end/44738
15021         * tree-ssa.c (warn_uninit): Avoid emitting an unnecessary message.
15022
15023 2010-07-21  Richard Guenther  <rguenther@suse.de>
15024
15025         PR middle-end/45013
15026         * tree-ssa.c (useless_type_conversion_p): Dispatch to
15027         gimple_types_compatible_p only when in lto.
15028         * gimple.c (gimple_types_compatible_p): Use canonical types
15029         to speed up comparison.
15030
15031 2010-07-21  Richard Guenther  <rguenther@suse.de>
15032
15033         * tree-flow.h (referenced_var): Move define ...
15034         * tree-flow-inline.h (referenced_var): ... here as an inline
15035         function.  Assert here ...
15036         * tree-dfa.c (referenced_var_lookup): ... instead of here.
15037         * tree-ssa.c (maybe_optimize_var): Check if the variable
15038         is in referenced vars.
15039         (execute_update_addresses_taken): Remove old broken check.
15040         * gimple-pretty-print.c (pp_points_to_solution): Use
15041         referenced_var_lookup.
15042         * tree-into-ssa.c (dump_decl_set): Likewise.
15043
15044 2010-07-21  Jakub Jelinek  <jakub@redhat.com>
15045
15046         PR debug/45003
15047         * var-tracking.c (reverse_op): Also handle {SIGN,ZERO}_EXTEND of a MEM.
15048         * dwarf2out.c (loc_descriptor): Don't handle SIGN_EXTEND nor
15049         ZERO_EXTEND here.
15050
15051 2010-07-20  Richard Henderson  <rth@redhat.com>
15052
15053         * vxworks.c (vxworks_emutls_var_fields): Pass locus to build_decls.
15054
15055 2010-07-20  Bernd Schmidt  <bernds@codesourcery.com>
15056
15057         * config/arm/arm.md (thumb1_addsi3): Add alternative and split for
15058         computing the sum of the stack pointer and a large constant.
15059         * config/arm/constraints.md (M): Remove superfluous parentheses.
15060         (Pc): New constraint.
15061
15062 2010-07-20  Jakub Jelinek  <jakub@redhat.com>
15063
15064         PR debug/45006
15065         * cfgexpand.c (expand_debug_expr): Only look at TYPE_UNSIGNED of
15066         operand's type if exp is tcc_unary class tree.
15067
15068 2010-07-20  Nathan Froyd  <froydnj@codesourcery.com>
15069
15070         * config/rs6000/rs6000.md (abs<mode>2_isel, nabs<mode>2_isel):
15071         Reverse sense of if_then_else condition.
15072
15073 2010-07-20  Nathan Froyd  <froydnj@codesourcery.com>
15074
15075         * config/rs6000/rs6000.opt (mblock-move-inline-limit): New option.
15076         * config/rs6000/rs6000.c (rs6000_override_options): Set
15077         rs6000_block_move_inline_limit appropriately.
15078         (expand_block_move): Use rs6000_block_move_inline_limit.
15079         * doc/invoke.texi (mblock-move-inline-limit): Document.
15080
15081 2010-07-20  Bernd Schmidt  <bernds@codesourcery.com>
15082
15083         * postreload.c (fixup_debug_insns): Remove arg REGNO.  New args
15084         FROM and TO.  All callers changed.  Don't look for tracked uses,
15085         just scan the RTL for DEBUG_INSNs and substitute.
15086         (reload_combine_recognize_pattern): Call fixup_debug_insns.
15087         (reload_combine): Ignore DEBUG_INSNs.
15088
15089 2010-07-20  Jakub Jelinek  <jakub@redhat.com>
15090
15091         * var-tracking.c (vt_expand_loc, vt_expand_loc_dummy): Bump maximum
15092         depth to 8 from 5.
15093
15094         PR debug/45003
15095         * cfgexpand.c (expand_debug_expr) <case NOP_EXPR>: Use ZERO_EXTEND
15096         or SIGN_EXTEND depending on TYPE_UNSIGNED of the operand's type
15097         instead of the result's type.
15098
15099 2010-07-20  Richard Guenther  <rguenther@suse.de>
15100
15101         PR tree-optimization/44977
15102         * tree-ssa-dom.c (propagate_rhs_into_lhs): Do not create invalid
15103         SSA form.
15104
15105 2010-07-20  Richard Guenther  <rguenther@suse.de>
15106
15107         * lto-symtab.c (lto_symtab_merge): Use gimple_types_compatible_p.
15108         (lto_symtab_merge_decls_2): Likewise.
15109         * gimple.h (gimple_types_compatible_p): Declare.
15110         * gimple.c (gimple_queue_type_fixup): Remove.
15111         (gimple_fixup_complete_and_incomplete_subtype_p): Likewise.
15112         (gimple_compatible_complete_and_incomplete_type_p): New function.
15113         (gimple_types_compatible_p): Adjust.
15114         (gimple_register_type): Remove type fixup code.
15115         (print_gimple_types_stats): Adjust.
15116         (free_gimple_type_tables): Likewise.
15117         * lto-streamer-in.c (input_gimple_stmt): Use gimple_types_compatible_p.
15118         * tree-ssa.c (useless_type_conversion_p): Likewise.
15119
15120 2010-07-20  Richard Guenther  <rguenther@suse.de>
15121
15122         PR middle-end/44971
15123         PR middle-end/44988
15124         * tree-ssa.c (maybe_optimize_var): New function split out from ...
15125         (execute_update_addresses_taken): ... here.
15126         (non_rewritable_mem_ref_base): Likewise.
15127         (execute_update_addresses_taken): Do not iterate over all referenced
15128         vars but just all local decls and parms.
15129         Properly check call and asm arguments and rewrite call arguments.
15130
15131 2010-07-20  Maxim Kuvyrkov  <maxim@codesourcery.com>
15132
15133         * config.gcc (LIBC_GLIBC, LIBC_UCLIBC, LIBC_BIONIC): Move constants
15134         to top level.
15135         * config/linux.h (LINUX_TARGET_OS_CPP_BUILTINS): Move Android-specific
15136         definitions ...
15137         * config/linux-android.h (ANDROID_TARGET_OS_CPP_BUILTINS): ... here.
15138         New macro.
15139         * config/arm/linux-eabi.h (TARGET_OS_CPP_BUILTINS): Use it.
15140
15141 2010-07-19  Richard Sandiford  <rdsandiford@googlemail.com>
15142
15143         * gengtype.c (start_root_entry): New function, split out from
15144         write_root.  Check whether V is null and raise an error if so.
15145         (write_field_root): Check for V being null.  Don't raise an error here;
15146         set V to null instead.
15147         (write_root): Update comment above function.  Use start_root_entry.
15148
15149 2010-07-19  Xinliang David Li  <davidxl@google.com>
15150
15151         PR testsuite/44932
15152         * tree-ssa-uninit.c (collect_phi_def_edges): Fix bug collecting
15153         def edges.
15154         (find_uninit_use): Add dump.
15155         (is_use_properly_guarded): Ditto.
15156         (warn_uninitialized_phi): Ditto.
15157         (execute_late_warn_uninitialized): Ditto.
15158
15159 2010-07-19  Richard Guenther  <rguenther@suse.de>
15160
15161         PR middle-end/44941
15162         * expr.c (emit_block_move_hints): Move zero size check first.
15163         Move asserts to more useful places.
15164         * calls.c (load_register_parameters): Check for zero size.
15165
15166 2010-07-19  Richard Henderson  <rth@redhat.com>
15167
15168         * tree-optimize.c (execute_all_early_local_passes): New.  Change
15169         cgraph_state here ...
15170         (execute_early_local_optimizations): ... not here.  Remove.
15171         (pass_early_local_passes, pass_all_early_optimizations): Update.
15172
15173 2010-07-19  Bernd Schmidt  <bernds@codesourcery.com>
15174
15175         * postreload.c (reload_combine_closest_single_use): Ignore the
15176         number of uses for DEBUG_INSNs.
15177         (fixup_debug_insns): New static function.
15178         (reload_combine_recognize_const_pattern): Use it.  Don't let the
15179         main loop be affected by DEBUG_INSNs.
15180         Really disallow moving adds past a jump insn.
15181         (reload_combine_recognize_pattern): Don't update use_ruid here.
15182         (reload_combine_note_use): Do it here.
15183         (reload_combine): Use control_flow_insn_p rather than JUMP_P.
15184
15185 2010-07-19  Bingfeng Mei  <bmei@broadcom.com>
15186
15187         * ddg.c (create_ddg): Exclude nodes of debug_insn in counting nodes
15188         of a loop.
15189         * loop-doloop.c (doloop_condition_get): Skip possible debug_insn.
15190
15191 2010-07-19  Iain Sandoe  <iains@gcc.gnu.org>
15192
15193         * config/i386/darwin.h: Define darwin_emit_branch_islands.
15194         (TARGET_MACHO_BRANCH_ISLANDS): New.
15195         (FUNCTION_PROFILER): Use TARGET_MACHO_BRANCH_ISLANDS.
15196         * config/i386/i386.h (TARGET_MACHO_BRANCH_ISLANDS): Define a
15197         default value.
15198         * config/i386/i386.c (output_pic_addr_const): Do not emit
15199         branch islands unless TARGET_MACHO_BRANCH_ISLANDS is set.
15200         (x86_output_mi_thunk): Adjust symbol creation.
15201         * config/rs6000/darwin.h: Define darwin_emit_branch_islands.
15202         Remove out of date comment.
15203         * config/rs6000/rs6000.c (print_operand): Adjust symbol.
15204         (DARWIN_LINKER_GENERATES_ISLANDS): Remove.
15205         (DARWIN_GENERATE_ISLANDS): Ditto.
15206         (output_call):  Do not emit branch islands unless
15207         darwin_emit_branch_islands is set.
15208         * config/darwin.c: Declare darwin_emit_branch_islands.
15209         (machopic_indirect_data_reference): Do not emit unless
15210         darwin_emit_branch_islands is set.
15211         (darwin_override_options): Set darwin_emit_branch_islands
15212         where it is needed.
15213         * config/darwin9.h (DARWIN_LINKER_GENERATES_ISLANDS): Remove.
15214
15215 2010-07-19  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
15216
15217         * doc/sourcebuild.texi (Effective-Target Keywords): Document
15218         sse_runtime, sse2_runtime.
15219
15220 2010-07-18  Richard Sandiford  <rdsandiford@googlemail.com>
15221
15222         * config/mips/mips.c (mips16_build_call_stub): Zero-extend the
15223         low half of a single-register SCmode return value before ORing
15224         it with the high half.
15225         * config/mips/mips16.S (MERGE_GPRf): Likewise.
15226
15227 2010-07-17  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
15228
15229         PR target/44805
15230         * config/pa/pa.h (CONSTANT_ALIGNMENT): Align strings to BITS_PER_WORD
15231         on all targets.
15232
15233 2010-07-17  Bernd Schmidt  <bernds@codesourcery.com>
15234
15235         PR target/42235
15236         * postreload.c (reload_cse_move2add): Return bool, true if anything.
15237         changed.  All callers changed.
15238         (move2add_use_add2_insn): Likewise.
15239         (move2add_use_add3_insn): Likewise.
15240         (reload_cse_regs): If reload_cse_move2add changed anything, rerun
15241         reload_combine.
15242         (RELOAD_COMBINE_MAX_USES): Bump to 16.
15243         (last_jump_ruid): New static variable.
15244         (struct reg_use): New members CONTAINING_MEM and RUID.
15245         (reg_state): New members ALL_OFFSETS_MATCH and REAL_STORE_RUID.
15246         (reload_combine_split_one_ruid, reload_combine_split_ruids,
15247         reload_combine_purge_insn_uses, reload_combine_closest_single_use
15248         reload_combine_purge_reg_uses_after_ruid,
15249         reload_combine_recognize_const_pattern): New static functions.
15250         (reload_combine_recognize_pattern): Verify that ALL_OFFSETS_MATCH
15251         is true for our reg and that we have available index regs.
15252         (reload_combine_note_use): New args RUID and CONTAINING_MEM.  All
15253         callers changed.  Use them to initialize fields in struct reg_use.
15254         (reload_combine): Initialize last_jump_ruid.  Be careful when to
15255         take PREV_INSN of the scanned insn.  Update REAL_STORE_RUID fields.
15256         Call reload_combine_recognize_const_pattern.
15257         (reload_combine_note_store): Update REAL_STORE_RUID field.
15258
15259 2010-07-16  Jason Merrill  <jason@redhat.com>
15260
15261         * Makefile.in (opts-common.o): Depend on options.h.
15262
15263 2010-07-16  Nathan Froyd  <froydnj@codesourcery.com>
15264
15265         * tree.c (build_common_builtin_nodes): Use build_function_type_list
15266         instead of build_function_type.
15267         * tree-ssa-loop-prefetch.c (tree_ssa_prefetch_arrays): Likewise.
15268         * cgraphunit.c (cgraph_build_static_cdtor): Likewise.
15269
15270 2010-07-16  Nathan Froyd  <froydnj@codesourcery.com>
15271
15272         * config/rs6000/rs6000.c (rs6000_emit_sISEL): Let rs6000_emit_int_cmove
15273         do all the work.
15274         (rs6000_emit_int_cmove): Use function pointers for insn generation.
15275         Don't force values into registers unnecessarily.
15276         (output_isel): Assert that we're not given conditions we can't handle.
15277         Delete corresponding code.
15278         * config/rs6000/rs6000.md (isel_signed_<mode>): Use
15279         scc_comparison_operator constraint.  Permit 0 for the consequent
15280         operand.  Permit any GPR for the alternative operand.
15281         (isel_unsigned_<mode>): Likewise.
15282
15283 2010-07-16  Jakub Jelinek  <jakub@redhat.com>
15284
15285         PR target/44942
15286         * config/i386/i386-protos.h (ix86_function_arg_boundary): Change second
15287         argument to const_tree.
15288         * config/i386/i386.c (function_arg_advance): If padding needs to be
15289         inserted before argument, increment cum->words by number of padding
15290         words as well.
15291         (contains_aligned_value_p): Change argument to const_tree.
15292         (ix86_function_arg_boundary): Change second argument to const_tree.
15293
15294 2010-07-16  Bernd Schmidt  <bernds@codesourcery.com>
15295
15296         PR target/42235
15297         * function.c (record_hard_reg_sets): New static function.
15298         (assign_parm_setup_reg): If an optab for extending exists and the
15299         generated code clobbbers no hard regs, emit the insn directly and
15300         create a REG_EQUIV note.
15301
15302 2010-07-15  Nathan Froyd  <froydnj@codesourcery.com>
15303
15304         * c-decl.c (detect_field_duplicates): Use DECL_CHAIN insted of
15305         TREE_CHAIN.
15306         * c-typeck.c (push_init_level): Likewise.
15307         (process_init_element): Likewise.
15308
15309 2010-07-15  Anatoly Sokolov  <aesok@post.ru>
15310
15311         * tree.h (enum tree_index): Add TI_INTEGER_THREE.
15312         (integer_three_node): Add.
15313         * tree.c (build_common_tree_nodes_2): Use integer_type_node insead of
15314         NULL_TREE in build_int_cst calls. Initialize the integer_three_node.
15315         * builtins.c (expand_builtin_prefetch): Use common tree nodes instead
15316         of call build_int_cst.
15317         * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Ditto.
15318         * tree-ssa-loop-ivopts.c (idx_find_step): Ditto.
15319         (find_interesting_uses_address): Ditto.
15320         * tree-ssa-alias.c (ao_ref_init_from_ptr_and_size): Ditto.
15321         * tree-eh.c (lower_eh_constructs_2): Ditto.
15322         * tree-vect-loop.c (get_initial_def_for_induction): Ditto.
15323         * c-typeck.c (really_start_incremental_init, push_init_level): Ditto.
15324         * expmed.c (expand_divmod): Ditto.
15325         * tree-mudflap.c (mx_register_decls): Ditto.
15326         * varasm.c (array_size_for_constructor): Ditto.
15327         * tree-ssa-loop-prefetch.c (issue_prefetch_ref): Ditto.
15328         * c-parser.c (c_parser_postfix_expression): Ditto.
15329
15330 2010-07-15  Bernd Schmidt  <bernds@codesourcery.com>
15331
15332         * postreload.c (last_label_ruid, first_index_reg, last_index_reg):
15333         New static variables.
15334         (reload_combine_recognize_pattern): New static function, broken out
15335         of reload_combine.
15336         (reload_combine): Use it.  Only initialize first_index_reg and
15337         last_index_reg once.
15338
15339 2010-07-15  Richard Henderson  <rth@redhat.com>
15340
15341         * cgraphunit.c (cgraph_build_static_cdtor): Clear current_function_decl
15342         when done.
15343
15344 2010-07-15  Jan Hubicka  <jh@suse.cz>
15345
15346         * lto-symtab.c (lto_symtab_resolve_symbols): Remove hack handling
15347         comdats for broken gold.
15348         (lto_sy mtab_merge_decls_1): Set used_from_object_file correctly.
15349
15350 2010-07-15  Nathan Froyd  <froydnj@codesourcery.com>
15351
15352         * tree.h (TREE_RTL_OPERAND_CHECK): Delete.
15353
15354 2010-07-15  Nathan Froyd  <froydnj@codesourcery.com>
15355
15356         * tree.h (DECL_CHAIN): Define.
15357         * alias.c: Carefully replace TREE_CHAIN with DECL_CHAIN.
15358         * c-decl.c: Likewise.
15359         * c-parser.c: Likewise.
15360         * c-typeck.c: Likewise.
15361         * cfgexpand.c: Likewise.
15362         * cgraph.c: Likewise.
15363         * cgraphunit.c: Likewise.
15364         * combine.c: Likewise.
15365         * config/alpha/alpha.c: Likewise.
15366         * config/arm/arm.c: Likewise.
15367         * config/frv/frv.c: Likewise.
15368         * config/i386/i386.c: Likewise.
15369         * config/i386/winnt-cxx.c: Likewise.
15370         * config/ia64/ia64.c: Likewise.
15371         * config/iq2000/iq2000.c: Likewise.
15372         * config/mep/mep.c: Likewise.
15373         * config/mips/mips.c: Likewise.
15374         * config/pa/som.h: Likewise.
15375         * config/rs6000/rs6000.c: Likewise.
15376         * config/s390/s390.c: Likewise.
15377         * config/sh/sh.c: Likewise.
15378         * config/sh/symbian-cxx.c: Likewise.
15379         * config/sparc/sparc.c: Likewise.
15380         * config/spu/spu.c: Likewise.
15381         * config/stormy16/stormy16.c: Likewise.
15382         * config/vxworks.c: Likewise.
15383         * config/xtensa/xtensa.c: Likewise.
15384         * coverage.c: Likewise.
15385         * dbxout.c: Likewise.
15386         * dwarf2out.c: Likewise.
15387         * emit-rtl.c: Likewise.
15388         * expr.c: Likewise.
15389         * function.c: Likewise.
15390         * gimple-low.c: Likewise.
15391         * gimple-pretty-print.c: Likewise.
15392         * gimplify.c: Likewise.
15393         * integrate.c: Likewise.
15394         * ipa-inline.c: Likewise.
15395         * ipa-prop.c: Likewise.
15396         * ipa-split.c: Likewise.
15397         * ipa-struct-reorg.c: Likewise.
15398         * ipa-type-escape.c: Likewise.
15399         * langhooks.c: Likewise.
15400         * lto-cgraph.c: Likewise.
15401         * omp-low.c: Likewise.
15402         * stor-layout.c: Likewise.
15403         * tree-cfg.c: Likewise.
15404         * tree-complex.c: Likewise.
15405         * tree-dfa.c: Likewise.
15406         * tree-dump.c: Likewise.
15407         * tree-inline.c: Likewise.
15408         * tree-mudflap.c: Likewise.
15409         * tree-nested.c: Likewise.
15410         * tree-object-size.c: Likewise.
15411         * tree-pretty-print.c: Likewise.
15412         * tree-sra.c: Likewise.
15413         * tree-ssa-live.c: Likewise.
15414         * tree-ssa-loop-niter.c: Likewise.
15415         * tree-ssa-math-opts.c: Likewise.
15416         * tree-ssa-reassoc.c: Likewise.
15417         * tree-ssa-sccvn.c: Likewise.
15418         * tree-ssa-structalias.c: Likewise.
15419         * tree-tailcall.c: Likewise.
15420         * tree-vrp.c: Likewise.
15421         * tree.c: Likewise.
15422         * var-tracking.c: Likewise.
15423         * varasm.c: Likewise.
15424
15425 2010-07-15  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
15426
15427         PR target/44877
15428         * config/spu/spu.c (spu_expand_builtin_1): Allow references
15429         (as well as pointers) as argument to mask_for_load builtins.
15430
15431 2010-07-15  Richard Guenther  <rguenther@suse.de>
15432
15433         PR tree-optimization/44946
15434         * tree-ssa-structalias.c (get_constraint_for_component_ref): Deal
15435         with accessing only padding properly.
15436
15437 2010-07-15  Jan Hubicka  <jh@suse.cz>
15438
15439         * ipa.c (function_and_variable_visibility): Variables marked as used
15440         should not be localized.
15441
15442 2010-07-15  Jan Hubicka  <jh@suse.cz>
15443
15444         * cgraph.c: Include lto-streamer.h
15445         (change_decl_assembler_name): Work when assembler name hash is at place.
15446         (cgraph_make_decl_local): When localizing COMDAT symbol at WPA stage,
15447         be sure to rename it to avoid name clash.
15448         * ipa.c (cgraph_externally_visible_p, function_and_variable_visibility):
15449         Localize hidden symbols only when locally defined.
15450
15451 2010-07-15  Uros Bizjak  <ubizjak@gmail.com>
15452
15453         * config/i386/i386.h (SHIFT_COUNT_TRUNCATED): Expand comment.
15454
15455 2010-07-15  Magnus Granberg  <zorry@gentoo.org>
15456             Kevin F. Quinn  <kevquinn@gentoo.org>
15457
15458         * builtins.c (expand_builtin_init_trampoline): Warn for -Wtrampolines.
15459         * common.opt: Add -Wtrampolines.
15460         * doc/invoke.texi: Add -Wtrampolines.
15461
15462 2010-07-15  Jie Zhang  <jie@codesourcery.com>
15463
15464         * config/arm/cortex-a8.md (cortex_a8_load_store_2): Reserve
15465         cortex_a8_issue_ls.
15466
15467 2010-07-15  Dave Korn  <dave.korn.cygwin@gmail.com>
15468
15469         * config/i386/cygwin.h (LIBGCJ_SONAME): Update.
15470         * config/i386/mingw32.h (LIBGCJ_SONAME): Likewise.
15471
15472 2010-07-14  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
15473
15474         * config/spu/spu.c (reg_names): Remove prototype.
15475         (call_used_regs): Likewise.
15476
15477 2010-07-14  Dave Korn  <dave.korn.cygwin@gmail.com>
15478
15479         * config/i386/cygming-crtend.c (__FRAME_END__): Replace attribute
15480         "unused" with attribute "used".
15481         (__JCR_END__): Likewise.
15482         * config/i386/cygming-crtbegin.c (__EH_FRAME_BEGIN__): Add missing
15483         "used" attribute.
15484         (__JCR_LIST__): Replace attribute "unused" with attribute "used".
15485
15486 2010-07-14  Richard Guenther  <rguenther@suse.de>
15487
15488         * lto-streamer-in.c (maybe_fixup_handled_component): Remove.
15489         (maybe_fixup_decls): Likewise.
15490         (input_gimple_stmt): Do not fixup anything.
15491         * lto-streamer-out.c (output_gimple_stmt): Make sure all
15492         non-automatic variable uses are wrapped inside a MEM_REF.
15493
15494 2010-07-14  Richard Henderson  <rth@redhat.com>
15495
15496         * passes.c (rest_of_decl_compilation): Do not call assemble_variable
15497         for functions.
15498         * varasm.c (assemble_variable): Remove early exit for functions;
15499         assert that we're given a variable.
15500
15501 2010-07-14  Jie Zhang  <jie@codesourcery.com>
15502
15503         * config/arm/cortex-a8.md (cortex_a8_alu): Don't use
15504         cortex_a8_default when neon_type is not none.
15505
15506 2010-07-14  Bernd Schmidt  <bernds@codesourcery.com>
15507
15508         * lower-subreg.c (subreg_context): New static bitmap.
15509         (decompose_multiword_subregs): Allocate and free it.
15510         (find_decomposable_subregs): Set a bit in it for a register that
15511         occurs in a subreg that changes mode but not size.
15512         (can_decompose_p): Test it instead of non_decomposable_context.
15513
15514 2010-07-14  Richard Guenther  <rguenther@suse.de>
15515
15516         PR tree-optimization/44824
15517         * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Use
15518         is_gimple_mem_ref_addr.
15519         (tree_ssa_forward_propagate_single_use_vars): Do not propagate
15520         non-decl_address_invariant_p addresses.
15521
15522 2010-07-14  Bernd Schmidt  <bernds@codesourcery.com>
15523
15524         * reload.c (find_reloads): Revert code to penalize small register
15525         classes that was brought in with the IRA merge.
15526
15527 2010-07-14  Richard Guenther  <rguenther@suse.de>
15528
15529         * tree-ssa-ccp.c (fold_const_aggregate_ref): Handle MEM_REF
15530         as base of ARRAY_REFs.
15531
15532 2010-07-14  Richard Guenther  <rguenther@suse.de>
15533
15534         PR middle-end/44930
15535         * tree-pretty-print.c (do_niy): Do not print a newline.
15536
15537 2010-07-14  Bernd Schmidt  <bernds@codesourcery.com>
15538
15539         * ira-int.h (struct ira_object): New.
15540         (ira_object_t): New typedef.  Add DEF_VEC_P and DEF_VEC_ALLOC_P for it.
15541         (struct ira_allocno): Remove members min, max,
15542         conflict_allocno_array, conflict_id, conflict_allocno_array_size,
15543         conflict_allocnos_num and conflict_vec_p.  Add new member object.
15544         (OBJECT_CONFLICT_ARRAY, OBJECT_CONFLICT_VEC_P,
15545         OBJECT_NUM_CONFLICTS, OBJECT_CONFLICT_ARRAY_SIZE,
15546         OBJECT_CONFLICT_HARD_REGS, OBJECT_TOTAL_CONFLICT_HARD_REGS,
15547         OBJECT_MIN, OBJECT_MAX, OBJECT_CONFLICT_ID): Renamed from
15548         ALLOCNO_CONFLICT_ALLOCNO_ARRAY, ALLOCNO_CONFLICT_VEC_P,
15549         ALLOCNO_CONFLICT_ALLOCNOS_NUM, ALLOCNO_CONFLICT_ALLOCNO_ARRAY_SIZE,
15550         ALLOCNO_CONFLICT_HARD_REGS, ALLOCNO_TOTAL_CONFLICT_HARD_REGS)
15551         ALLOCNO_MIN, ALLOCNO_MAX, and ALLOCNO_CONFLICT_ID; now operate on
15552         an ira_object_t rather than ira_allocno_t.  All uses changed.
15553         (ira_object_id_map): Renamed from ira_conflict_id_allocno_map; now
15554         contains a vector of ira_object_t; all uses changed.
15555         (ira_objects_num): Declare variable.
15556         (ira_create_allocno_object): Declare function.
15557         (ira_conflict_vector_profitable_p): Adjust prototype.
15558         (ira_allocate_conflict_vec): Renamed from
15559         ira_allocate_allocno_conflict_vec; first arg now ira_object_t.
15560         (ira_allocate_object_conflicts): Renamed from
15561         ira_allocate_allocno_conflicts; first arg now ira_object_t.
15562         (struct ira_object_iterator): New.
15563         (ira_object_iter_init, ira_object_iter_cond, FOR_EACH_OBJECT): New.
15564         (ira_allocno_conflict_iterator): Renamed member allocno_conflict_vec_p
15565         to conflict_vec_p.  All uses changed.
15566         (ira_allocno_conflict_iter_init, ira_allocno_conflict_iter_cond):
15567         Changed to take into account that conflicts are now tracked for
15568         objects.
15569         * ira-conflicts.c (OBJECTS_CONFLICT_P): Renamed from CONFLICT_ALLOCNO_P.
15570         Args changed to accept ira_object_t.  All uses changed.
15571         (allocnos_conflict_p): New static function.
15572         (collected_conflict_objects): Renamed from collected_allocno_objects;
15573         now a vector of ira_object_t.  All uses changed.
15574         (build_conflict_bit_table): Changed to take into account that
15575         conflicts are now tracked for objects.
15576         (process_regs_for_copy, propagate_copies, build_allocno_conflicts)
15577         (print_allocno_conflicts, ira_build_conflicts): Likewise.
15578         * ira-color.c (assign_hard_reg, setup_allocno_available_regs_num)
15579         setup_allocno_left_conflicts_size, allocno_reload_assign,
15580         fast_allocation): Likewise.
15581         * ira-lives.c (make_hard_regno_born, make_allocno_born)
15582         process_single_reg_class_operands, process_bb_node_lives): Likewise.
15583         * ira-emit.c (modify_move_list, add_range_and_copies_from_move_list):
15584         Likewise.
15585         * ira-build.c (ira_objects_num): New variable.
15586         (ira_object_id_map): Renamed from ira_conflict_id_allocno_map; now
15587         contains a vector of ira_object_t; all uses changed.
15588         (ira_object_id_map_vec): Corresponding change.
15589         (object_pool): New static variable.
15590         (initiate_allocnos): Initialize it.
15591         (finish_allocnos): Free it.
15592         (ira_create_object, ira_create_allocno_object, create_allocno_objects):
15593         New functions.
15594         (ira_create_allocno): Don't set members that were removed.
15595         (ira_set_allocno_cover_class): Don't change conflict hard regs.
15596         (merge_hard_reg_conflicts): Changed to take into account that
15597         conflicts are now tracked for objects.
15598         (ira_conflict_vector_profitable_p, ira_allocate_conflict_vec,
15599         allocate_conflict_bit_vec, ira_allocate_object_conflicts,
15600         compress_conflict_vecs, remove_low_level_allocnos, ira_flattening,
15601         setup_min_max_allocno_live_range_point, allocno_range_compare_func,
15602         setup_min_max_conflict_allocno_ids, ):  Likewise.
15603         (add_to_conflicts): Renamed from add_to_allocno_conflicts, args changed
15604         to ira_object_t; all callers changed.
15605         (ira_add_conflict): Renamed from ira_add_allocno_conflict, args changed
15606         to ira_object_t, all callers changed.
15607         (clear_conflicts): Renamed from clear_allocno_conflicts, arg changed
15608         to ira_object_t, all callers changed.
15609         (conflict_check, curr_conflict_check_tick): Renamed from
15610         allocno_conflict_check and curr_allocno_conflict_check_tick; all uses
15611         changed.
15612         (compress_conflict_vec): Renamed from compress_allocno_conflict_vec,
15613         arg changed to ira_object_t, all callers changed.
15614         (create_cap_allocno): Call ira_create_allocno_object.
15615         (finish_allocno): Free the corresponding object.
15616         (sort_conflict_id_map): Renamed from sort_conflict_id_allocno_map; all
15617         callers changed.  Adjusted for dealing with objects.
15618         (ira_build): Call create_allocno_objects after ira_costs.  Adjusted for
15619         dealing with objects.
15620         * ira.c (ira_bad_reload_regno_1): Adjusted for dealing with objects.
15621
15622         * ira-int.h (struct live_range): Rename allocno member to object
15623         and change type to ira_object_t.
15624         (struct ira_object): New member live_ranges.
15625         (struct ira_allocno): Remove member live_ranges.
15626         (ALLOCNO_LIVE_RANGES): Remove.
15627         (OBJECT_LIVE_RANGES): New macro.
15628         (ira_create_live_range, ira_copy_live_range_list,
15629         ira_merge_live_range_list, ira_live_ranges_intersect_p,
15630         ira_finish_live_range, ira_finish_live_range_list): Adjust declarations.
15631         * ira-build.c (ira_create_object): Initialize live ranges here.
15632         (ira_create_allocno): Not here.
15633         (ira_create_live_range): Rename from ira_create_allocno_live_range, arg
15634         changed to ira_object_t, all callers changed.
15635         (copy_live_range): Rename from copy_allocno_live_range, all callers
15636         changed.
15637         (ira_copy_live_range_list): Rename from
15638         ira_copy_allocno_live_range_list, all callers changed.
15639         (ira_merge_live_ranges): Rename from ira_merge_allocno_live_range_list,
15640         all callers changed.
15641         (ira_live_ranges_intersect_p): Rename from
15642         ira_allocno_live_ranges_intersect_p, all callers changed.
15643         (ira_finish_live_range): Rename from ira_finish_allocno_live_range, all
15644         callers changed.
15645         (ira_finish_live_range_list): Rename from
15646         ira_finish_allocno_live_range_list, all callers changed.
15647         (change_object_in_range_list): Rename from change_allocno_in_range_list,
15648         last arg changed to ira_object_t, all callers changed.
15649         (finish_allocno): Changed to expect live ranges in the allocno's object.
15650         (move_allocno_live_ranges, copy_allocno_live_ranges,
15651         update_bad_spill_attribute, setup_min_max_allocno_live_range_point,
15652         ira_flattening, ira_build): Likewise.
15653         * ira-color.c (allocnos_have_intersected_live_ranges_p,
15654         slot_coalesced_allocno_live_ranges_intersect,
15655         setup_slot_coalesced_allocno_live_ranges, fast_allocation): Likewise.
15656         * ira-conflicts.c (build_conflict_bit_table): Likewise.
15657         * ira-emit.c (add_range_and_copies_from_move_list): Likewise.
15658         * ira-lives.c (make_allocno_born, update_allocno_pressure_excess_length,
15659         make_allocno_dead, create_start_finish_chains,
15660         remove_some_program_points_and_update_live_ranges,
15661         ira_debug_live_range_list): Likewise.
15662
15663         * ira-int.h (ira_object_conflict_iterator): Rename from
15664         ira_allocno_conflict_iterator.
15665         (ira_object_conflict_iter_init): Rename from
15666         ira_allocno_conflict_iter_init, second arg changed to
15667         * ira.c (check_allocation): Use FOR_EACH_OBJECT_CONFLICT rather than
15668         FOR_EACH_ALLOCNO_CONFLICT.
15669         * ira-color.c (assign_hard_reg, push_allocno_to_stack)
15670         setup_allocno_left_conflicts_size, coalesced_allocno_conflict_p,
15671         ira_reassign_conflict_allocnos, ira_reassign_pseudos): Likewise.
15672         * ira-conflicts.c (print_allocno_conflicts): Likewise.
15673
15674 2010-07-13  Joern Rennecke  <joern.rennecke@embecosm.com>
15675
15676         PR other/44874
15677         * tree-dump.c (dump_options): Add enumerate_locals entry.
15678         Add TDF_NOID exclusion to all entry.
15679         * tree-dump.h (dump_enumerated_decls): Declare.
15680         * tree-pretty-print.c (dump_generic_node): For TDF_NOID,
15681         Don't display type uid.
15682         (print_declaration): Don't crash on TREE_TYPE (t) == 0.
15683         * tree-pass.h (TDF_ENUMERATE_LOCALS): Define.
15684         * tree-ssa-live.c: Include gimple.h.
15685         (numbered_tree_d): New struct.
15686         (numbered_tree): New typedef.
15687         (DEF_VEC_O (numbered_tree): New.
15688         (DEF_VEC_ALLOC_O (numbered_tree, heap)): Likewise.
15689         (compare_decls_by_uid, dump_enumerated_decls_push): New functions.
15690         (dump_enumerated_decls): Likewise.
15691         * tree-optimize.c (execute_cleanup_cfg_post_optimizing): If comparing
15692         debug info and flag_dump_final_insns, call dump_enumerated_decls.
15693         * tree-cfg.c (dump_function_to_file): Call dump_enumerated_decls.
15694         * Makefile.in (tree-ssa-live.o): Depend on $(GIMPLE_H).
15695
15696 2010-07-13  Richard Sandiford  <rdsandiford@googlemail.com>
15697
15698         * expmed.h (MAX_BITS_PER_WORD): Move to...
15699         * defaults.h (MAX_BITS_PER_WORD): ...here.
15700
15701 2010-07-13  DJ Delorie  <dj@redhat.com>
15702
15703         * config/h8300/h8300.c (h8300_init_once): Default to
15704         -fstrict_volatile_bitfields.
15705
15706         * config/sh/sh.c (sh_override_options): Default to
15707         -fstrict_volatile_bitfields.
15708
15709         * config/rx/rx.c (rx_option_override): New.
15710
15711         * config/m32c/m32c.c (m32c_override_options): Default to
15712         -fstrict_volatile_bitfields.
15713
15714 2010-07-13  Nathan Froyd  <froydnj@codesourcery.com>
15715
15716         * tree.h (build_function_call_expr): Delete.
15717         (build_call_expr_loc_array): New function.
15718         (build_call_expr_loc_vec): New function.
15719         * tree-flow.h (struct omp_region): Change type of ws_args field
15720         to a VEC.
15721         * builtins.c (build_function_call_expr): Delete.
15722         (build_call_expr_loc_array): New function.
15723         (build_call_expr_loc): Call it.  Use XALLOCAVEC.
15724         (build_call_expr): Likewise.
15725         (build_call_expr_loc_vec): New function.
15726         * cgraphunit.c (build_cdtor): Call build_call_expr instead of
15727         build_function_call_expr.
15728         * expr.c (emutls_var_address): Likewise.
15729         * varasm.c (emutls_common_1): Likewise.
15730         * omp-low.c (expand_omp_atomic_mutex): Likewise.
15731         (expand_omp_taskreg): Adjust for new type of region->ws_args.
15732         (get_ws_args_for): Return a VEC instead of a tree.
15733         (expand_parallel_call): Call build_call_expr_loc_vec instead of
15734         build_function_call_expr.
15735         * stor-layout.c (self_referential_size): Likewise.
15736
15737 2010-07-13  Jakub Jelinek  <jakub@redhat.com>
15738
15739         PR testsuite/44701
15740         * recog.c (constrain_operands): Allow side-effects in memory
15741         operands if either < or > constraint is used, rather than if
15742         both < and > is used.
15743
15744 2010-07-13  Richard Guenther  <rguenther@suse.de>
15745
15746         PR middle-end/44911
15747         * tree-pretty-print.c (dump_generic_node): Use TDF_SLIM for
15748         MEM_REF pointer type dumping.  Avoid recursing for TYPE_DECLs
15749         without name.
15750
15751 2010-07-13  Kaz Kojima  <kkojima@gcc.gnu.org>
15752
15753         PR target/44761
15754         * mode-switching.c (optimize_mode_switching): Add ATTRIBUTE_UNUSED
15755         to variable emited.
15756         * config/sh/sh.c (sh_expand_epilogue): Remove unused variable.
15757         * config/sh/sh.md (symGOT_load): Likewise.
15758         (symDTPOFF2reg): Likewise.
15759         (symTPOFF2reg): Likewise.
15760
15761 2010-07-13  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
15762
15763         * expmed.c (MAX_BITS_PER_WORD): Moved to expmed.h.
15764         * expmed.h (MAX_BITS_PER_WORD): Moved from expmed.c.
15765
15766 2010-07-13  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
15767
15768         * config/i386/sol2-unwind.h (x86_64_fallback_frame_state): Correct
15769         explanation.
15770         Find ucontext_t * on Solaris 11.
15771         (x86_fallback_frame_state): Handle Solaris 9 multi-threaded pattern.
15772         Handle new Solaris 11 __sighndlr patterns.
15773
15774 2010-07-13  Jakub Jelinek  <jakub@redhat.com>
15775
15776         PR debug/44901
15777         * vec.h (VEC_block_remove): Fix comment.
15778         * tree-ssa-live.c (remove_unused_locals): Don't use
15779         VEC_unordered_remove on local_decls, instead replace a single
15780         vector element in each iteration if at least one element had
15781         to be removed and VEC_truncate at the end.
15782         * omp-low.c (expand_omp_taskreg): Likewise.
15783
15784 2010-07-13  Manuel López-Ibáñez  <manu@gcc.gnu.org>
15785
15786         * c-decl.c (finish_function): Fix typo in comment.
15787
15788 2010-07-12  H.J. Lu  <hongjiu.lu@intel.com>
15789
15790         PR bootstrap/44921
15791         * postreload.c (move2add_use_add3_insn): Silence gcc warning
15792         on min_regno.
15793
15794 2010-07-12  Jakub Jelinek  <jakub@redhat.com>
15795
15796         * tree-vrp.c (simplify_bit_ops_using_ranges): New function.
15797         (simplify_stmt_using_ranges): Use it.
15798
15799 2010-07-12  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
15800
15801         * config/spu/spu.h (struct spu_builtin_description): Remove FNDECL
15802         member.  Do not mark as GTY(()).
15803         * config/spu/spu.c (spu_builtins): Remove FNDECL initializer elements.
15804         (spu_builtin_decls): New static variable.
15805         (spu_builtin_decl): Use it instead of spu_builtins[].fndecl.
15806         (spu_init_builtins): Likewise.
15807         (spu_builtin_mul_widen_even): Likewise.
15808         (spu_builtin_mul_widen_odd): Likewise.
15809         (spu_builtin_mask_for_load): Likewise.
15810         (spu_builtin_vec_perm): Likewise.
15811         * config/spu/spu-c.c: Include "target.h".
15812         (spu_resolve_overloaded_builtin): Call targetm.builtin_decl instead
15813         of using spu_builtins[].fndecl.
15814
15815 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
15816
15817         * config/mips/mips.c (mips_override_options): Make -mflip-mips16
15818         imply -minterlink-mips16.
15819
15820 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
15821
15822         * config/mips/mips.h (mips16_globals): Declare.
15823         (SWITCHABLE_TARGET): Define.
15824         * config/mips/mips.c: Include target-globals.h.
15825         (mips16_globals): New variable.
15826         (mips_set_mips16_mode): Use save_target_globals and
15827         restore_target_globals instead of target_reinit.
15828
15829 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
15830
15831         * reginfo.c (init_reg_sets): Don't zero globals here.  Update comment
15832         to say that the function can be called more than once.
15833         * target-globals.c (save_target_globals): Call init_reg_sets.
15834
15835 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
15836
15837         * Makefile.in (bb-reorder.o, target-globals.o): Depend on bb-reorder.h
15838         * bb-reorder.h: New file.
15839         * bb-reorder.c (default_target_bb_reorder): New variable.
15840         (this_target_bb_reorder): New conditional variable.
15841         (uncond_jump_length): Redefine as a macro.
15842         * target-globals.h (this_target_bb_reorder): Declare.
15843         (target_globals): Add a bb_reorder field.
15844         (restore_target_globals): Copy the bb_reorder field to
15845         this_target_bb-reorder.
15846         * target-globals.c: Include bb-reorder.h.
15847         (default_target_globals): Initialize the bb_reorder field.
15848         (save_target_globals): Likewise.
15849
15850 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
15851
15852         * Makefile.in (gcse.o, target-globals.o): Depend on gcse.h..
15853         * gcse.h: New file.
15854         * gcse.c: Include gcse.h.
15855         (default_target_gcse): New variable.
15856         (this_target_gcse): New conditional variable.
15857         (can_copy): Redefine as a macro.
15858         (can_copy_init_p): New macro.
15859         (can_copy_p): Remove can_copy_init_p.
15860         * target-globals.h (this_target_gcse): Declare.
15861         (target_globals): Add a gcse field.
15862         (restore_target_globals): Copy the gcse field to this_target_gcse.
15863         * target-globals.c: Include gcse.h.
15864         (default_target_globals): Initialize the gcse field.
15865         (save_target_globals): Likewise.
15866
15867 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
15868
15869         * ira-int.h (target_ira_int): Add x_ira_prohibited_mode_move_regs
15870         and x_ira_prohibited_mode_move_regs_initialized_p.
15871         (ira_prohibited_mode_move_regs): Redefine as a macro.
15872         * ira.c (ira_prohibited_mode_move_regs): Delete.
15873         (ira_prohibited_mode_move_regs_initialized_p): Redefine as a macro.
15874
15875 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
15876
15877         * reload.h (target_reload): Add x_cached_reg_save_code and
15878         x_cached_reg_restore_code.
15879         * caller-save.c (cached_reg_save_code, cached_reg_restore_code):
15880         Redefine as macros.
15881
15882 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
15883
15884         * Makefile.in (target-globals.o): Depend on builtins.h.
15885         * builtins.h: New file.
15886         * builtins.c: Include builtins.h.
15887         (default_target_builtins): New variable.
15888         (this_target_builtins): New conditional variable.
15889         (apply_args_mode, apply_result_mode): Redefine as macros.
15890         * target-globals.h (this_target_builtins): Declare.
15891         (target_globals): Add a builtins field.
15892         (restore_target_globals): Copy the builtins field to
15893         this_target_builtins.
15894         * target-globals.c: Include builtins.h.
15895         (default_target_globals): Initialize the builtins field.
15896         (save_target_globals): Likewise.
15897
15898 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
15899
15900         * expmed.h (alg_code, mult_cost, MULT_COST_LESS, CHEAPER_MULT_COST)
15901         (algorithm, alg_hash_entry, NUM_ALG_HASH_ENTRIES, alg_hash): Moved
15902         from expmed.c.
15903         (target_expmed): Add x_alg_hash and x_alg_hash_used_p.
15904         (alg_hash, alg_hash_used_p): New macros.
15905         * expmed.c (init_expmed): Clear alg_hash if reinitializing.
15906         (alg_code, mult_cost, MULT_COST_LESS, CHEAPER_MULT_COST, algorithm)
15907         (alg_hash_entry, NUM_ALG_HASH_ENTRIES, alg_hash): Moved to expmed.h.
15908
15909 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
15910
15911         * ira-int.h (target_ira_int): Add x_max_struct_costs_size, x_init_cost,
15912         x_temp_costs, x_op_costs, x_this_op_costs and x_cost_classes.
15913         * ira-costs.c (max_struct_costs_size, init_cost, temp_costs, op_costs)
15914         (this_op_costs, costs_classes): Redefine as macros.
15915         (record_reg_classes): Don't take op_costs as a parameter.
15916         (record_operand_costs): Likewise.  Update calls to record_reg_classes.
15917         (scan_one_insn): Update call to record_operand_costs.
15918
15919 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
15920
15921         * Makefile.in (target-globals.o): Depend on $(IRA_INT_H).
15922         * ira-int.h (ira_max_nregs, ira_important_class_nums): Delete.
15923         (target_ira_int): New structure.
15924         (default_target_ira_int): Declare.
15925         (this_target_ira_int): Declare as a variable or define as a macro.
15926         (ira_reg_mode_hard_regset, ira_register_move_cost)
15927         (ira_may_move_in_cost, ira_may_move_out_cost, ira_class_subset_p)
15928         (ira_non_ordered_class_hard_regs, ira_class_hard_reg_index)
15929         (prohibited_class_mode_regs, ira_important_classes_num)
15930         (ira_important_classes, ira_reg_class_intersect)
15931         (ira_reg_classes_intersect_p, ira_reg_class_super_classes)
15932         (ira_reg_class_union): Redefine as macros.
15933         * ira.h (target_ira): New structure.
15934         (default_target_ira): Declare.
15935         (this_target_ira): Declare as a variable or define as a macro.
15936         (ira_available_class_regs, ira_hard_regno_cover_class)
15937         (ira_reg_class_cover_size, ira_reg_class_cover, ira_class_translate)
15938         (ira_reg_class_nregs, ira_memory_move_cost, ira_class_hard_regs)
15939         (ira_class_hard_regs_num): Redefine as macros.
15940         * ira.c (default_target_ira, default_target_ira_int): New variables.
15941         (this_target_ira, this_target_ira_int): New conditional variables.
15942         (ira_reg_mode_hard_regset, ira_memory_move_cost)
15943         (ira_register_move_cost, ira_may_move_in_cost, ira_may_move_out_cost)
15944         (ira_class_subset_p): Delete.
15945         (no_unit_alloc_regs): Redefine as a macro.
15946         (ira_class_hard_regs, ira_non_ordered_class_hard_regs)
15947         (ira_class_hard_regs_num, ira_class_hard_reg_index)
15948         (ira_available_class_regs): Delete.
15949         (alloc_reg_class_subclasses): Redefine as a macro.
15950         (ira_reg_class_cover_size, ira_reg_class_cover)
15951         (ira_important_classes_num, ira_important_classes)
15952         (ira_important_class_nums, ira_class_translate): Delete.
15953         (cover_class_order): Document the variable's lifetime.
15954         (reorder_important_classes): Don't set ira_important_class_nums.
15955         (ira_reg_class_intersect, ira_reg_classes_intersect_p)
15956         (ira_reg_class_super_classes, ira_reg_class_union)
15957         (ira_hard_regno_cover_class, ira_reg_class_nregs, ira_max_nregs):
15958         Delete.
15959         (setup_reg_class_nregs): Don't set ira_max_regs.
15960         (prohibited_class_mode_regs): Delete.
15961         * target-globals.h (this_target_ira, this_target_ira_int): Declare.
15962         (target_globals): Add ira and ira_int fields.
15963         (restore_target_globals): Copy the ira field to this_target_ira
15964         and the ira_int field to this_target_ira_int.
15965         * target-globals.c: Include ira-int.h.
15966         (default_target_globals): Initialize the ira and ira_int fields.
15967         (save_target_globals): Likewise.
15968
15969 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
15970
15971         * Makefile.in (target-globals.o): Depend on $(CFGLOOP_H).
15972         * cfgloop.h (target_cfgloop): New structure.
15973         (default_target_cfgloop): Declare.
15974         (this_target_cfgloop): Declare as a variable or define as a macro.
15975         (target_avail_regs, target_clobbered_regs, target_res_regs)
15976         (target_reg_cost, target_spill_cost): Redefine as macros.
15977         * cfgloopanal.c (default_target_cfgloop): New variable.
15978         (this_target_cfgloop): New conditional variable.
15979         (target_avail_regs, target_clobbered_regs, target_res_regs)
15980         (target_reg_cost, target_spill_cost): Delete.
15981         * target-globals.h (this_target_cfgloop): Declare.
15982         (target_globals): Add a cfgloop field.
15983         (restore_target_globals): Copy the cfgloop field to
15984         this_target_cfgloop.
15985         * target-globals.c: Include cfgloop.h.
15986         (default_target_globals): Initialize the cfgloop field.
15987         (save_target_globals): Likewise.
15988
15989 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
15990
15991         * regs.h (target_regs): Add x_direct_load, x_direct_store and
15992         x_float_extend_from_mem.
15993         (direct_load, direct_store, float_extend_from_mem): New macros.
15994         * expr.c (direct_load, direct_store, float_extend_from_mem): Delete.
15995
15996 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
15997
15998         * Makefile.in (LIBFUNCS_H): Add $(HASHTAB_H).
15999         (target-globals.o): Depend on $(LIBFUNCS_H).
16000         * libfuncs.h: Include hashtab.h.
16001         (libfunc_entry): Moved from optabs.c.
16002         (target_libfuncs): New structure.
16003         (default_target_libfuncs): Declare.
16004         (this_target_libfuncs): Declare as a variable or define as a macro.
16005         (libfunc_table): Redefine as a macro.
16006         * optabs.c (default_target_libfuncs): New variable.
16007         (this_target_libfuncs): New conditional variable.
16008         (libfunc_table): Delete.
16009         (libfunc_entry): Moved to optabs.h.
16010         (libfunc_hash): Redefine as a macro.
16011         (hash_libfunc, eq_libfunc): Fix comments.
16012         (init_optabs): Use libfunc_hash to detect cases where the function
16013         has already been called.  Clear the hash table instead of
16014         recreating it.
16015         * target-globals.h (this_target_libfuncs): Declare.
16016         (target_globals): Add a libfuncs field.
16017         (restore_target_globals): Copy the libfuncs field to
16018         this_target_libfuncs.
16019         * target-globals.c: Include libfuncs.h.
16020         (default_target_globals): Initialize the libfuncs field.
16021         (save_target_globals): Likewise.
16022
16023 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
16024
16025         * Makefile.in (LIBFUNCS_H): New variable.  Use instead of libfuncs.h
16026         in all dependency lists.
16027
16028 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
16029
16030         * Makefile.in (target-globals.o): Depend on $(EXPR_H) and $(OPTABS_H).
16031         * optabs.h (target_optabs): New structure.
16032         (default_target_optabs): Declare.
16033         (this_target_optabs): Declare as a variable or define as a macro.
16034         (optab_table, convert_optab_table, direct_optab_table): Redefine
16035         as macros.
16036         * optabs.c (default_target_optabs): New variable.
16037         (this_target_optabs): New conditional variable.
16038         (optab_table, convert_optab_table, direct_optab_table): Delete.
16039         * target-globals.h (this_target_optabs): Declare.
16040         (target_globals): Add a optabs field.
16041         (restore_target_globals): Copy the optabs field to
16042         this_target_optabs.
16043         * target-globals.c: Include expr.h and optabs.h.
16044         (default_target_globals): Initialize the optabs field.
16045         (save_target_globals): Likewise.
16046
16047 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
16048
16049         * flags.h (target_flagstate): Add x_flag_excess_precision.
16050         (flag_excess_precision): Redefine as a macro.
16051         * toplev.c (flag_excess_precision): Delete.
16052
16053 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
16054
16055         * defaults.h (MAX_MOVE_MAX, MIN_UNITS_PER_WORD): Define if not defined.
16056         * libgcc2.c (MIN_UNITS_PER_WORD): Delete.
16057         * hard-reg-set.h (target_hard_regs): Add x_no_caller_save_reg_set.
16058         (no_caller_save_reg_set): Redefine as a macro.
16059         * reload.h (target_reload): Add x_caller_save_initialized_p and
16060         x_regno_save_mode.
16061         (caller_save_initialized_p): Redefine as a macro.
16062         * caller-save.c (caller_save_initialized_p, no_caller_save_reg_set)
16063         (MAX_MOVE_MAX, MIN_UNITS_PER_WORD): Delete.
16064         (regno_save_mode): Redefine as a macro.
16065
16066 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
16067
16068         * Makefile.in (expmed.o, target-globals.o): Depend on expmed.h.
16069         * expmed.h: New file.
16070         * expmed.c (default_target_costs): New variable.
16071         (this_target_costs): New conditional variable.
16072         (sdiv_pow2_cheap, smod_pow2_cheap, zero_cost, add_cost, neg_cost)
16073         (shift_cost, shiftadd_cost, shiftsub0_cost, shiftsub1_cost, mul_cost)
16074         (sdiv_cost, udiv_cost, mul_widen_cost, mul_highpart_cost): Delete.
16075         * target-globals.h (this_target_expmed): Declare.
16076         (target_globals): Add a expmed field.
16077         (restore_target_globals): Copy the expmed field to
16078         this_target_expmed.
16079         * target-globals.c: Include expmed.h.
16080         (default_target_globals): Initialize the expmed field.
16081         (save_target_globals): Likewise.
16082
16083 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
16084
16085         * Makefile.in (target-globals.o): Depend on reload.h.
16086         * reload.h (target_reload): New structure.
16087         (default_target_reload): Declare.
16088         (this_target_reload): Declare as a variable or define as a macro.
16089         (indirect_symref_ok, double_reg_address_ok): Redefine as macros.
16090         * reload1.c (default_target_reload): New variable
16091         (this_target_reload): New conditional variable.
16092         (indirect_symref_ok, double_reg_address_ok): Delete.
16093         (spill_indirect_levels): Redefine as a macro.
16094         * target-globals.h (this_target_reload): Declare.
16095         (target_globals): Add a reload field.
16096         (restore_target_globals): Copy the reload field to
16097         this_target_reload.
16098         * target-globals.c: Include hard-reg-set.h.
16099         (default_target_globals): Initialize the reload field.
16100         (save_target_globals): Likewise.
16101
16102 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
16103
16104         * rtl.h (target_rtl): Add x_static_reg_base_value.
16105         * alias.c (static_reg_base_value): Redefine as a macro.
16106
16107 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
16108
16109         * Makefile.in (reginfo.o): Don't depend on $(GGC_H) or gt-reginfo.h.
16110         (GTFILES): Remove reginfo.c.
16111         * rtl.h (target_rtl): Add x_top_of_stack.
16112         (top_of_stack): New macro.
16113         * reginfo.c: Don't include ggc.h or gt-reginfo.h.
16114         (top_of_stack): Delete.
16115
16116 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
16117
16118         * regs.h (target_regs): Add x_hard_regs_of_mode,
16119         x_contains_reg_of_mode, x_move_cost, x_may_move_in_cost,
16120         x_may_move_out_cost and x_last_mode_for_init_move_cost.
16121         (have_regs_of_mode, contains_reg_of_mode, move_cost)
16122         (may_move_in_cost, may_move_out_cost): Redefine as macros.
16123         * reginfo.c (have_regs_of_mode, contains_reg_of_mode, move_cost)
16124         (may_move_in_cost, may_move_out_cost): Delete.
16125         (last_mode_for_init_move_cost): Redefine as a macro.
16126
16127 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
16128
16129         * hard-reg-set.h (target_hard_regs): New structure.
16130         (default_target_hard_regs): Declare.
16131         (this_target_hard_regs): Declare as a variable or define as a macro.
16132         (fixed_regs, fixed_reg_set, call_used_regs, call_really_used_regs)
16133         (call_used_reg_set, call_fixed_reg_set, regs_invalidated_by_call)
16134         (reg_alloc_order, inv_reg_alloc_order, reg_class_contents)
16135         (reg_class_size, reg_class_subclasses, reg_class_subunion)
16136         (reg_class_superunion, reg_names): Redefine as macros.
16137         * reginfo.c (fixed_regs, fixed_reg_set, call_used_regs)
16138         (call_used_reg_set, call_really_used_regs, call_fixed_reg_set)
16139         (regs_invalidated_by_call, reg_alloc_order, inv_reg_alloc_order)
16140         (reg_class_contents, reg_class_size, reg_class_subclasses)
16141         (reg_class_subunion, reg_class_superunion, reg_names): Delete.
16142         (default_target_hard_regs): New variable
16143         (this_target_hard_regs, initial_call_really_used_regs)
16144         (initial_reg_alloc_order): New conditional variables.
16145         (initial_reg_names): New variable.
16146         (init_reg_sets): Assert that initial_call_really_used_regs,
16147         initial_reg_alloc_order and initial_reg_names
16148         are all the same size as their variable counterparts.  Use them to
16149         initialize those counterparts.
16150         * target-globals.h (this_target_hard_regs): Declare.
16151         (target_globals): Add a hard_regs field.
16152         (restore_target_globals): Copy the hard_regs field to
16153         this_target_hard_regs.
16154         * target-globals.c: Include hard-reg-set.h.
16155         (default_target_globals): Initialize the hard_regs field.
16156         (save_target_globals): Likewise.
16157
16158 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
16159
16160         * Makefile.in (target-globals.o): Depend on $(RTL_H).
16161         * rtl.h (target_rtl): New structure.
16162         (default_target_rtl): Declare.
16163         (this_target_rtl): Declare as a variable or define as a macro.
16164         (global_rtl, pic_offset_table_rtx, return_address_pointer_rtx):
16165         Redefine as macros.
16166         * emit-rtl.c (default_target_rtl): New variable.
16167         (this_target_rtl): New conditional variable.
16168         (global_rtl, static_regno_reg_rtx, pic_offset_table_rtx)
16169         (return_address_pointer_rtx): Delete.
16170         (initial_regno_reg_rtx): New macro.
16171         (init_emit): Use initial_regno_reg_rtx instead of static_regno_reg_rtx.
16172         (init_emit_regs): Likewise.
16173         * target-globals.h (this_target_rtl): Declare.
16174         (target_globals): Add a rtl field.
16175         (restore_target_globals): Copy the rtl field to this_target_rtl.
16176         * target-globals.c: Include rtl.h.
16177         (default_target_globals): Initialize the rtl field.
16178         (save_target_globals): Likewise.
16179
16180 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
16181
16182         * Makefile.in (target-globals.o): Depend on $(REGS_H).
16183         * regs.h (target_reg_modes): New structure.
16184         (default_target_reg_modes): Declare.
16185         (this_target_reg_modes): Declare as a variable or define as a macro.
16186         (hard_regno_nregs, reg_raw_mode): Redefine as macros.
16187         * reginfo.c (default_target_reg_modes): New variable.
16188         (this_target_reg_modes): New conditional variable.
16189         (hard_regno_nregs, reg_raw_mode): Delete.
16190         * target-globals.h (this_target_regs): Declare.
16191         (target_globals): Add a regs field.
16192         (restore_target_globals): Copy the regs field to this_target_regs.
16193         * target-globals.c: Include regs.h.
16194         (default_target_globals): Initialize the regs field.
16195         (save_target_globals): Likewise.
16196
16197 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
16198
16199         * doc/tm.texi.in (SWITCHABLE_TARGET): Document.
16200         * doc/tm.texi: Regenerate.
16201         * Makefile.in (OBJS-common): Add target-globals.o.
16202         (gtype-desc.o): Depend on $(IPA_PROP_H), $(LTO_STREAMER_H)
16203         and target-globals.h.
16204         (target-globals.o): New rule.
16205         (GTFILES): Include $(srcdir)/target-globals.h.
16206         * defaults.h (SWITCHABLE_TARGET): Define.
16207         * gengtype.c (open_base_files): Add target-globals.h to the
16208         list of includes.
16209         * target-globals.h: New file.
16210         * target-globals.c: Likewise.
16211
16212         * Makefile.in (target-globals.o): Depend on $(FLAGS_H).
16213         * flags.h (target_flag_state): New structure.
16214         (default_target_flag_state): Declare.
16215         (this_target_flag_state): Declare as a variable or define as a macro.
16216         (align_loops_log): Redefine as a macro.
16217         (align_loops_max_skip, align_jumps_log): Likewise.
16218         (align_jumps_max_skip, align_labels_log): Likewise.
16219         (align_labels_max_skip, align_functions_log): Likewise.
16220         * toplev.c (default_target_flag_state): New variable.
16221         (this_target_flag_state): New conditional variable.
16222         (align_loops_log): Delete.
16223         (align_loops_max_skip, align_jumps_log): Likewise.
16224         (align_jumps_max_skip, align_labels_log): Likewise.
16225         (align_labels_max_skip, align_functions_log): Likewise.
16226         * target-globals.h (this_target_flag_state): Declare.
16227         (target_globals): Add a flag_state field.
16228         (restore_target_globals): Copy the flag_state field to
16229         this_target_flag_state.
16230         * target-globals.c: Include flags.h.
16231         (default_target_globals): Initialize the flag_state field.
16232         (save_target_globals): Likewise.
16233
16234 2010-07-12  Jie Zhang  <jie@codesourcery.com>
16235
16236         * postreload.c (reg_symbol_ref[]): New.
16237         (move2add_use_add2_insn): New.
16238         (move2add_use_add3_insn): New.
16239         (reload_cse_move2add): Handle SYMBOL + OFFSET case.
16240         (move2add_note_store): Likewise.
16241
16242 2010-07-12  Joern Rennecke  <joern.rennecke@embecosm.com>
16243
16244         PR rtl-optimization/44752
16245         * genautomata.c (main): Don't emit an empty file even if there
16246         is no automaton.
16247
16248 2010-07-12  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
16249
16250         * config/i386/i386.c (ix86_sol10_return_in_memory): Rename to
16251         ix86_solaris_return_in_memory.
16252         * config/i386-protos.h: Reflect this.
16253         * config/i386/vx-common.h (SUBTARGET_RETURN_IN_MEMORY): Likewise.
16254         * config/i386/sol2-10.h (SUBTARGET_RETURN_IN_MEMORY): Likewise.
16255         Move ...
16256         * config/i386/sol2.h (SUBTARGET_RETURN_IN_MEMORY): ... here.
16257
16258 2010-07-12  Jie Zhang  <jie@codesourcery.com>
16259
16260         * config/arm/arm.c (arm_get_frame_offsets): Don't use r3 to
16261         align the stack when it's going to be saved.
16262
16263 2010-07-12  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
16264
16265         PR pch/14940
16266         * config/host-solaris.c (mmap_fixed): New function.
16267         (sol_gt_pch_get_address): Use it.
16268         (sol_gt_pch_use_address): Likewise.
16269
16270 2010-07-12  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
16271
16272         * config.gcc (i[34567]86-*-solaris2*): Default with_arch_32 to
16273         pentiumpro on Solaris 8 and 9/x86.
16274         * doc/install.texi (Specific, i?86-*-solaris2.[89]): Recommend GNU as.
16275         Document SSE/SSE2 support.
16276         * doc/sourcebuild.texi (Effective-Target Keywords): Document sse.
16277
16278 2010-07-12  Andi Kleen  <ak@linux.intel.com>
16279
16280         * lto-symtab.c (lto_symtab_merge_decls_1): Use fatal_error
16281         instead of gcc_assert to print better error message for multiple
16282         prevailing defs.
16283
16284 2010-07-12  Uros Bizjak  <ubizjak@gmail.com>
16285
16286         * config/i386/i386.c (ix86_asm_output_function_label): Change format
16287         string placeholder from 0x%x to %#x.
16288         (ix86_code_end): Use putc to output '\n'.
16289         (ix86_print_operand) <case ';'>: Use putc to output ';'.
16290
16291 2010-07-11  Kai Tietz  <kai.tietz@onevision.com>
16292
16293         * config/i386/winnt.c (i386_pe_file_end): Quote symbol name
16294         in directive -export.
16295
16296 2010-07-10  Anatoly Sokolov  <aesok@post.ru>
16297
16298         * reginfo.h (reg_classes_intersect_p): Change arguments type to
16299         reg_class_t.
16300         * rtl.h (reg_classes_intersect_p): Adjust prototype.
16301
16302         * config/rs6000/rs6000.h (REGISTER_MOVE_COST, MEMORY_MOVE_COST):
16303         Remove macros.
16304         * config/rs6000/rs6000-protos.h (rs6000_register_move_cost,
16305         rs6000_memory_move_cost): Remove
16306         * config/rs6000/rs6000.c (TARGET_REGISTER_MOVE_COST,
16307         TARGET_MEMORY_MOVE_COST): Define.
16308         (rs6000_register_move_cost): Make static. Change arguments type from
16309         enum reg_class to reg_class_t. Adjust rs6000_memory_move_cost calls.
16310         (rs6000_memory_move_cost): Make static. Change arguments type from
16311         'enum reg_class' to reg_class_t.
16312
16313 2010-07-10  Sandra Loosemore  <sandra@codesourcery.com>
16314
16315         PR middle-end/42505
16316         * tree-inline.c (estimate_num_insns): Refactor builtin complexity
16317         lookup code into....
16318         * builtins.c (is_simple_builtin, is_inexpensive_builtin): ...these
16319         new functions.
16320         * tree.h (is_simple_builtin, is_inexpensive_builtin): Declare.
16321         * cfgloopanal.c (target_clobbered_regs): Define.
16322         (init_set_costs): Initialize target_clobbered_regs.
16323         (estimate_reg_pressure_cost): Add call_p argument.  When true,
16324         adjust the number of available registers to exclude the
16325         call-clobbered registers.
16326         * cfgloop.h (target_clobbered_regs): Declare.
16327         (estimate_reg_pressure_cost): Adjust declaration.
16328         * tree-ssa-loop-ivopts.c (struct ivopts_data): Add body_includes_call.
16329         (ivopts_global_cost_for_size): Pass it to estimate_reg_pressure_cost.
16330         (determine_set_costs): Dump target_clobbered_regs.
16331         (loop_body_includes_call): New function.
16332         (tree_ssa_iv_optimize_loop): Use it to initialize new field.
16333         * loop-invariant.c (gain_for_invariant): Adjust arguments to pass
16334         call_p flag through.
16335         (best_gain_for_invariant): Likewise.
16336         (find_invariants_to_move): Likewise.
16337         (move_single_loop_invariants): Likewise, using already-computed
16338         has_call field.
16339
16340 2010-07-10  Richard Guenther  <rguenther@suse.de>
16341             Joern Rennecke  <joern.rennecke@embecosm.com>
16342
16343         PR debug/44832
16344         * tree-ssa-live.c (mark_all_vars_used_1): Set TREE_USED for LABEL_DECL.
16345         (remove_unused_scope_block_p): Don't drop TREE_USED LABEL_DECLs
16346         unless they have DECL_IGNORED_P set.
16347
16348 2010-07-10  Richard Guenther  <rguenther@suse.de>
16349
16350         PR lto/44889
16351         * gimple.c (gimple_fixup_complete_and_incomplete_subtype_p): New
16352         helper function.
16353         (gimple_types_compatible_p): Similar to pointed-to
16354         types allow and merge a mix of complete and incomplete aggregate.
16355         Use gimple_fixup_complete_and_incomplete_subtype_p for that.
16356         (iterative_hash_gimple_type): Adjust for that.
16357
16358 2010-07-10  Richard Sandiford  <r.sandiford@uk.ibm.com>
16359
16360         * tree.h (DECL_REPLACEABLE_P): Strengthen check for weak symbols.
16361
16362 2010-07-10  Iain Sandoe  <iains@gcc.gnu.org>
16363
16364         PR objc/44140
16365         * config/darwin.c (output_objc_section_asm_op): Save and restore
16366         section when outputting ObjC section list.
16367
16368 2010-07-09  Jan Hubicka  <jh@suse.cz>
16369
16370         * lto-streamer-out.c (produce_symtab): Do not write alias
16371         cgraph/varpool nodes.
16372
16373 2010-07-09  Jan Hubicka  <jh@suse.cz>
16374
16375         * tree-inline.c (declare_return_variable): Fix ICE while
16376         inlining DECL_BY_VALUE function not in SSA form
16377
16378 2010-07-09  Changpeng Fang  <changpeng.fang@amd.com>
16379
16380         PR tree-optimization/44576
16381         * tree-ssa-loop-prefetch.c (trip_count_to_ahead_ratio_too_small_p):
16382         New.  Pull out from is_loop_prefetching_profitable to implement
16383         the trip count to ahead ratio heuristic.
16384         (mem_ref_count_reasonable_p): New.  Pull out from
16385         is_loop_prefetching_profitable to implement the instruction to
16386         memory reference ratio heuristic.  Also consider not reasonable if
16387         the memory reference count is above a threshold (to avoid
16388         explosive compilation time.
16389         (insn_to_prefetch_ratio_too_small_p): New.  Pull out from
16390         is_loop_prefetching_profitable to implement the instruction to
16391         prefetch ratio heuristic.
16392         (is_loop_prefetching_profitable): Removed.
16393         (loop_prefetch_arrays): Distribute the cost analysis across the
16394         function to allow early exit of the prefetch analysis.
16395         is_loop_prefetching_profitable is splitted into three functions,
16396         with each one called as early as possible.
16397         (PREFETCH_MAX_MEM_REFS_PER_LOOP): New.  Threshold above which the
16398         number of memory references in a loop is considered too many.
16399
16400 2010-07-09  Bernd Schmidt  <bernds@codesourcery.com>
16401
16402         * reload.c (find_reloads): Don't clear badop if we have a winreg
16403         alternative, but not win, and the class only has fixed regs.
16404         * hard-reg-set.h (class_only_fixed_regs): Declare.
16405         * reginfo.c (class_only_fixed_regs): New array.
16406         (init_reg_sets_1): Initialize it.
16407         * config/arm/arm.md (arm_addsi3, thumb1_addsi3, arm_subsi3_insn): Don't
16408         discourage alternatives using the stack pointer.
16409
16410         * config/arm/arm.md (addsi3_cbranch): Switch alternatives 0 and 1.
16411
16412         * config/arm/arm.md (Thumb-1 ldrsb peephole): New.
16413
16414         * config/arm/arm.md (cbranchqi4): Fix array size.
16415         (addsi3_cbranch): Also andle alternative 2 like alternative 3 when
16416         calculating length.
16417
16418 2010-07-09  Richard Guenther  <rguenther@suse.de>
16419
16420         * gimple.c (struct type_fixup_s): New struct and VEC type.
16421         (gimple_register_type_fixups): New static global.
16422         (gimple_queue_type_fixup): New function.
16423         (gimple_types_compatible_p): Queue type fixups instead of
16424         applying them here.
16425         (gimple_register_type): Apply queued fixups for the
16426         canonical type.  Empty the type fixup queue.
16427
16428 2010-07-09  Uros Bizjak  <ubizjak@gmail.com>
16429
16430         * configure.ac (gcc_cv_as_ix86_rep_lock_prefix): Fix test.
16431         * configure: Regenerate.
16432         * config.in: Ditto.
16433
16434 2010-07-09  Jakub Jelinek  <jakub@redhat.com>
16435             Denys Vlasenko  <dvlasenk@redhat.com>
16436             Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
16437
16438         PR tree-optimization/28632
16439         * tree-vrp.c (zero_nonzero_bits_from_vr): New function.
16440         (extract_range_from_binary_expr): Further optimize
16441         BIT_AND_EXPR and BIT_IOR_EXPR.
16442
16443 2010-07-09  Sebastian Pop  <sebastian.pop@amd.com>
16444
16445         * tree-if-conv.c (fold_or_predicates): New.
16446         (add_to_predicate_list): Call it.
16447
16448 2010-07-09  Richard Guenther  <rguenther@suse.de>
16449
16450         PR middle-end/44890
16451         * tree-ssa-address.c (create_mem_ref_raw): Only build a MEM_REF
16452         if base is a pointer.
16453         * tree-cfg.c (verify_expr): Update MEM_REF checking.
16454
16455 2010-07-08  Michael Meissner  <meissner@linux.vnet.ibm.com>
16456
16457         PR target/44877
16458         * config/rs6000/rs6000.c (rs6000_expand_builtin): Use
16459         POINTER_TYPE_P instead of checking only for POINTER_TYPE for the
16460         builtin mask for load/store builtins.
16461
16462 2010-07-09  Uros Bizjak  <ubizjak@gmail.com>
16463
16464         * configure.ac (gcc_cv_as_ix86_rep_lock_prefix): Also check
16465         for "lock addl".
16466         * configure: Regenerate.
16467         * config/i386/i386.c (ix86_print_operand) <case ';'>:
16468         Remove TARGET_MACHO.
16469
16470 2010-07-09  Peter Bergner  <bergner@vnet.ibm.com>
16471
16472         * config/rs6000/rs6000.c (rs6000_override_options): Fix setting of
16473         default ISA flags.
16474         * config/rs6000/rs6000.h (ASM_CPU_SPEC): Add -mvsx.
16475
16476 2010-07-09  Tom de Vries  <tjvries@xs4all.nl>
16477
16478         * tree.c (type_hash_if_marked_p): Removed non-ggc_marked_p clause.
16479
16480 2010-07-09  Hariharan Sandanagobalane  <hariharan@picochip.com>
16481
16482         * config/picochip/picochip.md (commsTestPort): Emit more
16483         efficient sequence for tstport instruction.
16484
16485 2010-07-09  Uros Bizjak  <ubizjak@gmail.com>
16486
16487         * config/i386/i386.c (ix86_veclib_handler): Make static.
16488
16489 2010-07-09  Richard Guenther  <rguenther@suse.de>
16490
16491         PR tree-optimization/44852
16492         * tree-ssa-alias.c: Include toplev.h for exact_log2.
16493         (indirect_ref_may_alias_decl_p): Properly handle negative offsets
16494         in MEM_REF.
16495         (indirect_refs_may_alias_p): Likewise.
16496         * Makefile.in (tree-ssa-alias.o): Add $(TOPLEV_H).
16497
16498 2010-07-09  Richard Guenther  <rguenther@suse.de>
16499
16500         PR tree-optimization/44882
16501         * tree-vect-stmts.c (vectorizable_store): Do not assert alias
16502         sets do conflict.
16503         (vectorizable_load): Likewise.
16504
16505 2010-07-09  Bernd Schmidt  <bernds@codesourcery.com>
16506
16507         PR target/40657
16508         * config/arm/arm.c (thumb1_extra_regs_pushed): New arg FOR_PROLOGUE.
16509         All callers changed.
16510         Handle the case when we're called for the epilogue.
16511         (thumb_unexpanded_epilogue): Use it.
16512         (thumb1_expand_epilogue): Likewise.
16513
16514 2010-07-09  Jakub Jelinek  <jakub@redhat.com>
16515
16516         * tree-vrp.c (extract_range_from_binary_expr) <BIT_AND_EXPR>: If
16517         both ranges are range_int_cst_p with non-negative minimum,
16518         try harder to derive smaller range.
16519
16520 2010-07-09  Manuel López-Ibáñez  <manu@gcc.gnu.org>
16521
16522         * genrecog.c: Include diagnostic-core.h before toplev.h.
16523         * genoutput.c: Likewise.
16524         * genextract.c: Likewise.
16525         * genautomata.c: Likewise.
16526         * genemit.c: Likewise.
16527         * genpeep.c: Likewise.
16528         * genattrtab.c: Likewise.
16529         * genconditions.c: Likewise.
16530         * genpreds.c: Likewise.
16531
16532 2010-07-08  Andi Kleen  <ak@linux.intel.com>
16533
16534         * lto-section-in.c (lto_section_name): Add missing comma.
16535
16536 2010-07-08  Anatoly Sokolov  <aesok@post.ru>
16537
16538         * config/ia64/ia64.h (OVERRIDE_OPTIONS): Remove macros.
16539         * config/ia64/ia64-protos.h (ia64_override_options): Remove.
16540         * config/ia64/ia64.c (TARGET_OPTION_OVERRIDE): Define.
16541         (ia64_override_options): Rename to...
16542         (ia64_option_override): ... this one. Make static.
16543
16544 2010-07-08  Eric Botcazou  <ebotcazou@adacore.com>
16545
16546         PR middle-end/44843
16547         * emit-rtl.c (set_mem_attributes_minus_bitpos): Do not rely on the
16548         pointed-to type of the offset in a MEM_REF to compute the alignment.
16549
16550 2010-07-08  Kai Tietz  <kai.tietz@onevision.com>
16551
16552         * final.c (final_scan_insn): Replace
16553         TARGET_UNWIND_INFO macro check by unwind_emit
16554         hook NULL check.
16555         * targhooks.c (default_unwind_emit): Removed.
16556         * targhooks.h (default_unwind_emit): Likewise.
16557         * target.def (unwind_emit): Set default value to NULL.
16558
16559         * config/i386/i386-protos.h (ix86_asm_output_function_label):
16560         New prototype.
16561         * config/i386/i386.c (ix86_function_ms_hook_prologue): Check
16562         for NULL fntype argument and allow 64-bit targets.
16563         (ix86_asm_output_function_label): New function.
16564         (ix86_expand_prologue): Handle 64-bit ms hook prologue.
16565         (ix86_handle_fndecl_attribute): Likewise.
16566         * doc/extend.texi (ms_hook_prologue): Adjust documentation.
16567         * doc/doc/tm.texi: Regenerated.
16568         * doc/doc/doc/tm.texi.in (ASM_OUTPUT_FUNCTION_LABEL): New.
16569         (ASM_DECLARE_FUNCTION_NAME): Adjust documentation.
16570         * defaults.h (ASM_OUTPUT_FUNCTION_LABEL): New macro.
16571         * config/darwin.h (ASM_DECLARE_FUNCTION_NAME): Use
16572         ASM_OUTPUT_FUNCTION_LABEL instead of ASM_OUTPUT_LABEL.
16573         * config/elfos.h: Likewise.
16574         * config/i386/cygming.h: Likewise.
16575         * config/netbsd-aout.h: Likewise.
16576         * config/openbsd.h: Likewise.
16577         * config/i386/i386.h (ASM_OUTPUT_FUNCTION_LABEL): Override
16578         by ix86_asm_output_function_label function call.
16579         * varasm.c (assemble_start_function): Use
16580         ASM_OUTPUT_FUNCTION_LABEL instead of ASM_OUTPUT_LABEL.
16581
16582 2010-07-08  Jan Hubicka  <jh@suse.cz>
16583
16584         * cgraph.c (cgraph_will_be_removed_from_program_if_no_direct_calls):
16585         New function.
16586         * cgraph.h (cgraph_will_be_removed_from_program_if_no_direct_calls):
16587         Declare.
16588         * ipa-cp.c (ipcp_estimate_growth): Use it.
16589         * ipa-inline.c (cgraph_estimate_growth, cgraph_decide_inlining):
16590         Likewise.
16591
16592 2010-07-08  Jan Hubicka  <jh@suse.cz>
16593
16594         * tree-inline.c (declare_return_variable): Allocate annotation for new
16595         temporary.
16596
16597 2010-07-08  Sebastian Pop  <sebastian.pop@amd.com>
16598
16599         PR tree-optimization/44710
16600         * tree-if-conv.c (parse_predicate): New.
16601         (add_to_predicate_list): Call it, call maybe_fold_or_comparisons.
16602         Make sure that the predicates are either SSA_NAMEs or gimple_condexpr.
16603
16604 2010-07-08  Sebastian Pop  <sebastian.pop@amd.com>
16605
16606         * common.opt (ftree-loop-if-convert): New flag.
16607         * doc/invoke.texi (ftree-loop-if-convert): Documented.
16608         * tree-if-conv.c (gate_tree_if_conversion): Enable if-conversion
16609         when flag_tree_loop_if_convert is set.
16610
16611 2010-07-08  Uros Bizjak  <ubizjak@gmail.com>
16612
16613         * config/i386/i386.c: Use short syntax for function calls
16614         through function pointers.
16615         * config/i386/i386.md: Ditto.
16616
16617 2010-07-08  Eric Botcazou  <ebotcazou@adacore.com>
16618
16619         * emit-rtl.c (set_mem_attributes_minus_bitpos): Fix formatting issues.
16620
16621 2010-07-08  Richard Guenther  <rguenther@suse.de>
16622
16623         * tree-ssa-sccvn.c (vn_reference_maybe_forwprop_address): Fix
16624         stmt check for POINTER_PLUS_EXPRs, fix the pointer assignment.
16625
16626 2010-07-08  Jakub Jelinek  <jakub@redhat.com>
16627
16628         * dwarf2out.c (mem_loc_descriptor): Use DW_OP_const[48]u
16629         instead of DW_OP_addr for DW_OP_GNU_push_tls_address operand.
16630         (loc_list_from_tree): Likewise.
16631         (output_loc_operands): Handle outputting DW_OP_const[48]u
16632         with loc->dtprel set.
16633         (resolve_addr_in_expr): Handle loc->dtprel like DW_OP_addr.
16634
16635 2010-07-08  Jan Hubicka  <jh@suse.cz>
16636
16637         * ipa.c: Include pointer-set.h
16638         (cgraph_externally_visible_p): New attribute ALIASED;
16639         when in LTO, hidden symbols are local unless they are aliased.
16640         (function_and_variable_visibility): Compute aliased nodes;
16641         handle LTO and hidden symbol on functions and vars.
16642         * cgraph.c (cgraph_make_decl_local): Clear NAMED_SECTION
16643         for COMDAT symbols; handle COMDAT_GROUPS also at vars.
16644
16645 2010-07-08  Eric Botcazou  <ebotcazou@adacore.com>
16646
16647         * config/i386/cygming.h (STACK_CHECK_STATIC_BUILTIN): Define to 1.
16648         * config/i386/freebsd.h (STACK_CHECK_STATIC_BUILTIN): Likewise.
16649         * config/i386/linux.h (STACK_CHECK_STATIC_BUILTIN): Likewise.
16650         * config/i386/linux64.h (STACK_CHECK_STATIC_BUILTIN): Likewise.
16651         * config/i386/sol2.h (STACK_CHECK_STATIC_BUILTIN): Likewise.
16652         * config/i386/i386.c (ix86_gen_adjust_stack_and_probe): New variable.
16653         (ix86_gen_probe_stack_range): Likewise.
16654         (override_options): Set them.
16655         (ix86_target_stack_probe): New function.
16656         (ix86_compute_frame_layout): Force use of push instructions to
16657         save registers if stack checking with probes is enabled.
16658         (get_scratch_register_on_entry): New function.
16659         (release_scratch_register_on_entry): Likewise.
16660         (ix86_adjust_stack_and_probe): Likewise.
16661         (output_adjust_stack_and_probe): Likewise.
16662         (ix86_emit_probe_stack_range): Likewise.
16663         (output_probe_stack_range): Likewise.
16664         (ix86_expand_prologue): Emit stack checking code if static built-in
16665         stack checking is enabled.
16666         Test ix86_target_stack_probe instead of TARGET_STACK_PROBE.
16667         * config/i386/i386-protos.h (ix86_target_stack_probe): Declare.
16668         (output_adjust_stack_and_probe): Likewise.
16669         (output_probe_stack_range): Likewise.
16670         * config/i386/i386.md (UNSPECV_PROBE_STACK_RANGE): New constant.
16671         (allocate_stack_worker_32): Test ix86_target_stack_probe instead of
16672         TARGET_STACK_PROBE.
16673         (allocate_stack_worker_64): Likewise.
16674         (allocate_stack): Likewise.
16675         (adjust_stack_and_probe): New insn.
16676         (probe_stack_range): Likewise.
16677
16678 2010-07-08  Richard Guenther  <rguenther@suse.de>
16679
16680         PR tree-optimization/44831
16681         * tree-ssa-phiprop.c (phiprop_insert_phi): Properly build
16682         a MEM_REF preserving TBAA info of the original dereference.
16683         Dereference the original pointer if the address is not invariant.
16684         (propagate_with_phi): Fixup type checks wrt MEM_REFs.  Require
16685         at least one invariant address that we are going to dereference.
16686
16687 2010-07-08  Richard Guenther  <rguenther@suse.de>
16688
16689         PR tree-optimization/44861
16690         * tree-vect-stmts.c (vectorizable_store): Preserve TBAA
16691         information when building MEM_REFs.
16692         (vectorizable_load): Likewise.
16693         * tree-vect-data-refs.c (vect_setup_realignment): Likewise.
16694
16695 2010-07-08  Eric Botcazou  <ebotcazou@adacore.com>
16696
16697         * config/sol2-c.c: Do not include diagnostic-core.h.
16698
16699 2010-07-08  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
16700
16701         PR bootstrap/44768
16702         * cfgexpand.c (estimated_stack_frame_size): Make self-contained
16703         with respect to current_function_decl. Pass decl of the function.
16704         * tree-inline.h (estimated_stack_frame_size): Adjust prototype.
16705         * ipa-inline.c (compute_inline_parameters): Pass decl to
16706         estimated_stack_frame_size.
16707
16708 2010-07-08  Richard Guenther  <rguenther@suse.de>
16709
16710         * tree-ssa-sccvn.c (vn_reference_maybe_forwprop_address):
16711         New function.
16712         (valueize_refs): Call it.
16713
16714 2010-07-08  Richard Guenther  <rguenther@suse.de>
16715
16716         PR rtl-optimization/44838
16717         * tree-ssa-alias.c (indirect_refs_may_alias_p): When not in
16718         SSA form do not use pointer equivalence.
16719
16720 2010-07-08  Eric Botcazou  <ebotcazou@adacore.com>
16721
16722         * dwarf2out.c (AT_linkage_name): Delete.
16723         (add_linkage_attr): New function.
16724         (add_linkage_name): Call it to emit the linkage attribute.
16725         (dwarf2out_finish): Likewise.
16726         (move_linkage_attr): Explicitly accept both attribute variants.
16727
16728 2010-07-08  Manuel López-Ibáñez  <manu@gcc.gnu.org>
16729
16730         * toplev.h: Do not include diagnostic-core.h.
16731         Include diagnostic-core.h in every file that includes toplev.h.
16732         * c-tree.h: Do not include toplev.h.
16733         * pretty-print.h: Update comment.
16734         * Makefile.in: Update dependencies.
16735         * alias.c: Include diagnostic-core.h in every file that includes
16736         toplev.h.
16737         * attribs.c: Likewise.
16738         * auto-inc-dec.c: Likewise.
16739         * bb-reorder.c: Likewise.
16740         * bt-load.c: Likewise.
16741         * caller-save.c: Likewise.
16742         * calls.c: Likewise.
16743         * cfg.c: Likewise.
16744         * cfganal.c: Likewise.
16745         * cfgbuild.c: Likewise.
16746         * cfgcleanup.c: Likewise.
16747         * cfghooks.c: Likewise.
16748         * cfgloop.c: Likewise.
16749         * combine.c: Likewise.
16750         * config/alpha/alpha.c: Likewise.
16751         * config/arc/arc.c: Likewise.
16752         * config/arm/arm.c: Likewise.
16753         * config/arm/pe.c: Likewise.
16754         * config/avr/avr.c: Likewise.
16755         * config/bfin/bfin.c: Likewise.
16756         * config/cris/cris.c: Likewise.
16757         * config/crx/crx.c: Likewise.
16758         * config/darwin-c.c: Likewise.
16759         * config/darwin.c: Likewise.
16760         * config/fr30/fr30.c: Likewise.
16761         * config/frv/frv.c: Likewise.
16762         * config/h8300/h8300.c: Likewise.
16763         * config/host-darwin.c: Likewise.
16764         * config/i386/i386.c: Likewise.
16765         * config/i386/netware.c: Likewise.
16766         * config/i386/nwld.c: Likewise.
16767         * config/i386/winnt-cxx.c: Likewise.
16768         * config/i386/winnt-stubs.c: Likewise.
16769         * config/i386/winnt.c: Likewise.
16770         * config/ia64/ia64-c.c: Likewise.
16771         * config/ia64/ia64.c: Likewise.
16772         * config/iq2000/iq2000.c: Likewise.
16773         * config/lm32/lm32.c: Likewise.
16774         * config/m32c/m32c-pragma.c: Likewise.
16775         * config/m32c/m32c.c: Likewise.
16776         * config/m32r/m32r.c: Likewise.
16777         * config/m68hc11/m68hc11.c: Likewise.
16778         * config/m68k/m68k.c: Likewise.
16779         * config/mcore/mcore.c: Likewise.
16780         * config/mep/mep-pragma.c: Likewise.
16781         * config/mep/mep.c: Likewise.
16782         * config/mmix/mmix.c: Likewise.
16783         * config/mn10300/mn10300.c: Likewise.
16784         * config/moxie/moxie.c: Likewise.
16785         * config/pa/pa.c: Likewise.
16786         * config/pdp11/pdp11.c: Likewise.
16787         * config/picochip/picochip.c: Likewise.
16788         * config/rs6000/rs6000-c.c: Likewise.
16789         * config/rs6000/rs6000.c: Likewise.
16790         * config/rx/rx.c: Likewise.
16791         * config/s390/s390.c: Likewise.
16792         * config/score/score.c: Likewise.
16793         * config/score/score3.c: Likewise.
16794         * config/score/score7.c: Likewise.
16795         * config/sh/sh.c: Likewise.
16796         * config/sh/symbian-base.c: Likewise.
16797         * config/sh/symbian-c.c: Likewise.
16798         * config/sh/symbian-cxx.c: Likewise.
16799         * config/sol2-c.c: Likewise.
16800         * config/sol2.c: Likewise.
16801         * config/sparc/sparc.c: Likewise.
16802         * config/spu/spu.c: Likewise.
16803         * config/stormy16/stormy16.c: Likewise.
16804         * config/v850/v850-c.c: Likewise.
16805         * config/v850/v850.c: Likewise.
16806         * config/vax/vax.c: Likewise.
16807         * config/vxworks.c: Likewise.
16808         * config/xtensa/xtensa.c: Likewise.
16809         * convert.c: Likewise.
16810         * cse.c: Likewise.
16811         * cselib.c: Likewise.
16812         * dbgcnt.c: Likewise.
16813         * dbxout.c: Likewise.
16814         * ddg.c: Likewise.
16815         * dominance.c: Likewise.
16816         * emit-rtl.c: Likewise.
16817         * explow.c: Likewise.
16818         * expmed.c: Likewise.
16819         * fixed-value.c: Likewise.
16820         * fold-const.c: Likewise.
16821         * fwprop.c: Likewise.
16822         * gcse.c: Likewise.
16823         * ggc-common.c: Likewise.
16824         * ggc-page.c: Likewise.
16825         * ggc-zone.c: Likewise.
16826         * gimple-low.c: Likewise.
16827         * gimplify.c: Likewise.
16828         * graph.c: Likewise.
16829         * haifa-sched.c: Likewise.
16830         * ifcvt.c: Likewise.
16831         * implicit-zee.c: Likewise.
16832         * integrate.c: Likewise.
16833         * ira-build.c: Likewise.
16834         * ira-color.c: Likewise.
16835         * ira-conflicts.c: Likewise.
16836         * ira-costs.c: Likewise.
16837         * ira-lives.c: Likewise.
16838         * ira.c: Likewise.
16839         * lists.c: Likewise.
16840         * loop-doloop.c: Likewise.
16841         * loop-iv.c: Likewise.
16842         * lto-opts.c: Likewise.
16843         * lto-symtab.c: Likewise.
16844         * main.c: Likewise.
16845         * modulo-sched.c: Likewise.
16846         * optabs.c: Likewise.
16847         * params.c: Likewise.
16848         * plugin.c: Likewise.
16849         * postreload-gcse.c: Likewise.
16850         * postreload.c: Likewise.
16851         * predict.c: Likewise.
16852         * profile.c: Likewise.
16853         * real.c: Likewise.
16854         * regcprop.c: Likewise.
16855         * reginfo.c: Likewise.
16856         * regmove.c: Likewise.
16857         * reorg.c: Likewise.
16858         * resource.c: Likewise.
16859         * rtl.c: Likewise.
16860         * rtlanal.c: Likewise.
16861         * sched-deps.c: Likewise.
16862         * sched-ebb.c: Likewise.
16863         * sched-rgn.c: Likewise.
16864         * sdbout.c: Likewise.
16865         * sel-sched-dump.c: Likewise.
16866         * sel-sched-ir.c: Likewise.
16867         * simplify-rtx.c: Likewise.
16868         * stmt.c: Likewise.
16869         * stor-layout.c: Likewise.
16870         * store-motion.c: Likewise.
16871         * targhooks.c: Likewise.
16872         * tree-cfg.c: Likewise.
16873         * tree-cfgcleanup.c: Likewise.
16874         * tree-dump.c: Likewise.
16875         * tree-eh.c: Likewise.
16876         * tree-inline.c: Likewise.
16877         * tree-nomudflap.c: Likewise.
16878         * tree-object-size.c: Likewise.
16879         * tree-optimize.c: Likewise.
16880         * tree-outof-ssa.c: Likewise.
16881         * tree-phinodes.c: Likewise.
16882         * tree-profile.c: Likewise.
16883         * tree-ssa-ccp.c: Likewise.
16884         * tree-ssa-coalesce.c: Likewise.
16885         * tree-ssa-live.c: Likewise.
16886         * tree-ssa-loop-niter.c: Likewise.
16887         * tree-ssa-loop-prefetch.c: Likewise.
16888         * tree-ssa-loop.c: Likewise.
16889         * tree-ssa-structalias.c: Likewise.
16890         * tree-ssa-uninit.c: Likewise.
16891         * tree-ssa.c: Likewise.
16892         * tree-vect-data-refs.c: Likewise.
16893         * tree-vect-loop-manip.c: Likewise.
16894         * tree-vect-loop.c: Likewise.
16895         * tree-vect-patterns.c: Likewise.
16896         * tree-vect-stmts.c: Likewise.
16897         * tree-vrp.c: Likewise.
16898         * varasm.c: Likewise.
16899         * vec.c: Likewise.
16900         * web.c: Likewise.
16901         * xcoffout.c: Likewise.
16902
16903 2010-07-07  Richard Sandiford  <rdsandiford@googlemail.com>
16904
16905         * gengtype.c (write_field_root): New function.
16906         (write_root): Use it.
16907
16908 2010-07-07  Wei Guozhi  <carrot@google.com>
16909
16910         * config/arm/thumb2.md (peephole2 to convert zero_extract/compare
16911         of lowest bits to lshift/compare): Add a missing line.
16912
16913 2010-07-07  Wei Guozhi  <carrot@google.com>
16914
16915         * config/arm/thumb2.md (peephole2 to convert zero_extract/compare
16916         of lowest bits to lshift/compare): New.
16917
16918 2010-07-07  Tom Tromey  <tromey@redhat.com>
16919
16920         * doc/tm.texi: Update.
16921         * doc/tm.texi.in (SDB and DWARF) <TARGET_WANT_DEBUG_PUB_SECTIONS>:
16922         Add @hook.
16923         * target.def (want_debug_pub_sections): New hook.
16924         * config/darwin.h (TARGET_WANT_DEBUG_PUB_SECTIONS): Define.
16925         * dwarf2out.c (add_pubname_string): Check
16926         targetm.want_debug_pub_sections.
16927         (add_pubname): Likewise.
16928         (add_pubtype): Likewise.
16929
16930 2010-07-07  Jie Zhang  <jie@codesourcery.com>
16931
16932         * genautomata.c (output_automata_list_min_issue_delay_code):
16933         Correctly decompress min_issue_delay.
16934
16935 2010-07-07  Bernd Schmidt  <bernds@codesourcery.com>
16936
16937         PR rtl-optimization/44404
16938         * auto-inc-dec.c (find_inc): Avoid calling count_occurrences if
16939         possible, use reg_overlap_mentioned_p instead.
16940
16941 2010-07-07  Duncan Sands  <baldrick@free.fr>
16942
16943         PR middle-end/41355
16944         * tree.c (build_function_type_skip_args): Copy the original type using
16945         build_distinct_type_copy rather than copy_node.
16946
16947 2010-07-07  H.J. Lu  <hongjiu.lu@intel.com>
16948
16949         PR target/44850
16950         * config/i386/i386.c (ix86_function_ms_hook_prologue): Revert
16951         revision 161876.
16952         (ix86_expand_prologue): Likewise.
16953         (ix86_handle_fndecl_attribute): Likewise.
16954         (ix86_asm_declare_function_name): Likewise.
16955         * config/i386/i386.h (ASM_DECLARE_FUNCTION_NAME): Likewise.
16956         * config/i386/cygming.h (ASM_DECLARE_FUNCTION_NAME): Likewise.
16957         (SUBTARGET_ASM_DECLARE_FUNCTION_NAME): Likewise.
16958         * config/i386/i386-protos.h (ix86_asm_declare_function_name): Likewise.
16959         * doc/extend.texi: Likewise.
16960
16961 2010-07-07  H.J. Lu  <hongjiu.lu@intel.com>
16962
16963         PR target/44844
16964         * config/i386/i386.md (rdrand<mode>): Changed to expand to
16965         retry if the carry flag isn't valid.
16966         (rdrand<mode>_1): New.
16967
16968 2010-07-07  Richard Guenther  <rguenther@suse.de>
16969
16970         PR middle-end/44790
16971         * expr.c (expand_expr_real_1): Go the POINTER_PLUS_EXPR path
16972         for expanding the constant offset for MEM_REFs.
16973
16974 2010-07-07  Richard Guenther  <rguenther@suse.de>
16975
16976         * tree-ssa-propagate.h (valid_gimple_call_p): Remove.
16977         * tree-ssa-propagate.c (valid_gimple_call_p): Make static.  Fix.
16978         * gimple.h (is_gimple_operand): Remove.
16979         * gimple.c (is_gimple_operand): Likewise.
16980         (walk_gimple_op): Fix wi->val_only setting for calls.
16981         * tree-cfg.c (verify_gimple_call): Fix argument validation.
16982         * tree-profile.c (tree_gen_ic_func_profiler): Do not create
16983         invalid gimple calls.
16984
16985 2010-07-06  Jan Hubicka  <jh@suse.cz>
16986
16987         * lto-cgraph.c (output_cgraph): Add missing declaration.
16988
16989 2010-07-06  Jan Hubicka  <jh@suse.cz>
16990
16991         * lto-cgraph.c (output_cgraph): Output toplevel asms only into first
16992         partition.
16993
16994 2010-07-06  Alexandre Oliva  <aoliva@redhat.com>
16995
16996         * doc/gimple.texi (GIMPLE_DEBUG): Document.
16997         * doc/rtl.texi (Debug Information): New node.
16998         (NOTE_INSN_VAR_LOCATION): Document.
16999         (debug_insn): Likewise.
17000         * doc/generic.texi (DEBUG_EXPR_DECL): Document.
17001
17002 2010-07-07  Jan Hubicka  <jh@suse.cz>
17003
17004         With parts by Richard Guenther.
17005
17006         PR middle-end/44813
17007         * tree-ssa-uninit.c (ssa_undefined_value_p): Result decl is defined
17008         for functions passed by reference.
17009         * tree.c (needs_to_live_in_memory): RESULT_DECL don't need to live
17010         in memory when passed by reference.
17011         * tree-ssa-ccp.c (get_default_value): Only VAR_DECL is undefined at
17012         beggining.
17013         * ipa-split.c (split_function): Cleanup way return value is passed;
17014         handle SSA DECL_BY_REFERENCE retvals.
17015         * tree-ssa.c (verify_def): Verify that RESULT_DECL is read only when
17016         DECL_BY_REFERENCE is set.
17017         * tree-ssa-structalias.c (get_constraint_for_ssa_var, get_fi_for_callee,
17018         find_what_p_points_to): Handle RESULT_DECL.
17019         * tree-inline.c (declare_return_variable): Get new entry_block argument;
17020         when passing by reference ensure that RESULT_DECL is gimple_val.
17021         (remap_gimple_op_r): Remap RESULT_DECL ssa name.
17022         (remap_gimple_stmt): Handle SSA DECL_BY_REFERENCE returns.
17023
17024 2010-07-07  Bernd Schmidt  <bernds@codesourcery.com>
17025
17026         PR rtl-optimization/44787
17027         * config/arm/arm.md (arith_shiftsi): Allow stack pointer in operand 2.
17028         * config/arm/thumb2.md (thumb2_arith_shiftsi): Likewise.
17029
17030 2010-07-06  Jan Hubicka  <jh@suse.cz>
17031
17032         * lto-symtab.c (lto_cgraph_replace_node): Handle aliases.
17033         (lto_symtab_resolve_can_prevail_p): Also alias of cgraph node
17034         with body can prevail.
17035         (lto_symtab_resolve_symbols): Use cgraph_get_node_or_alias.
17036         (lto_symtab_merge_cgraph_nodes_1): Do not remove nodes from aliases.
17037         * cgraph.c (cgraph_get_node_or_alias): New function.
17038         * cgraph.h (cgraph_get_node_or_alias): Declare.
17039
17040 2010-07-06  Kai Tietz  <kai.tietz@onevision.com>
17041
17042         * config/i386/i386.c (ix86_function_ms_hook_prologue): Enable x64
17043         support.
17044         (ix86_expand_prologue): Likewise.
17045         (ix86_handle_fndecl_attribute): Likewise.
17046         (ix86_asm_declare_function_name): New function for
17047         ASM_DECLARE_FUNCTION_NAME.
17048         * config/i386/i386.h (ASM_DECLARE_FUNCTION_NAME): New macro.
17049         * config/i386/cygming.h (ASM_DECLARE_FUNCTION_NAME): Removed.
17050         (SUBTARGET_ASM_DECLARE_FUNCTION_NAME): New macro.
17051         * config/i386/i386-protos.h (ix86_asm_declare_function_name): New.
17052         * doc/extend.texi: Adjust documentation about ms_hook_prologue
17053         attribute.
17054
17055 2010-07-06  Uros Bizjak  <ubizjak@gmail.com>
17056
17057         * config/i386/i386.md (immediate_operand): New mode attribute.
17058
17059         (pro_epilogue_adjust_stack_<mode>_1): Macroize insn from
17060         pro_epilogue_adjust_stack  and pro_epilogue_adjust_stack_rex64
17061         using P mode iterator.
17062         (pro_epilogue_adjust_stack_di_2): Rename from
17063         pro_epilogue_adjust_stack_rex64_2.
17064
17065         * config/i386/i386.c (pro_epilogue_adjust_stack): Update for rename.
17066
17067 2010-07-06  Uros Bizjak  <ubizjak@gmail.com>
17068
17069         * config/i386/i386.md (insv): Call gen_movdi_insv1 or gen_movsi_insv1
17070         through gen_mov_insv_1 function pointer.
17071         (fmod<mode>3): Call gen_truncxf<mode>2_i387_noop_unspec or
17072         gen_truncxf<mode>2 through gen_truncxf function pointer.
17073         (remainder<mode>3): Ditto.
17074         (cmpstrnsi): Rename cmp_insn function pointer to gen_cmp.
17075         (allocate_stack): Call gen_allocate_stack_worker_64 or
17076         gen_allocate_stack_worker_32 through gen_allocate_stack_worker
17077         function pointer.
17078         (probe_stack): Call gen_iordi3 or gen_iorsi3 through gen_ior3
17079         function pointer.
17080
17081 2010-07-06  Uros Bizjak  <ubizjak@gmail.com>
17082
17083         * config/i386/i386.md (*add<mode>3_cconly_overflow): Use <g>
17084         operand constraint instead of <r><i>m.
17085
17086 2010-07-06  Richard Guenther  <rguenther@suse.de>
17087
17088         PR middle-end/44828
17089         * convert.c (convert_to_integer): Watch out for overflowing
17090         MULT_EXPR as well.
17091
17092 2010-07-05  Jan Hubicka  <jh@suse.cz>
17093
17094         * lto-streamer.c (write_symbol_vec): Rename to ...
17095         (write_symbol) ... this one; write only symbol given and when
17096         present in cache. Sanity check that what is defined is present
17097         in cgraph/varpool with body/finalized decl.
17098         (write_symbols_of_kind): Remove.
17099         (produce_symtab): Take outputblock and sets; use cgraph/varpool/alias
17100         pairs to produce symtab.
17101         (produce_asm_for_decls): Update call of produce_symtab; don't do so
17102         when doing WPA streaming.
17103
17104 2010-07-05  Jan Hubicka  <jh@suse.cz>
17105
17106         * gimple-fold.c (gimple_fold_obj_type_ref_known_binfo): Check that
17107         function is still available to fold into.
17108
17109 2010-07-05  Nathan Froyd  <froydnj@codesourcery.com>
17110
17111         * vec.h (FOR_EACH_VEC_ELT_REVERSE): New macro.
17112         * function.h (struct_function): Change type of local_decls field
17113         to a VEC.
17114         (add_local_decl): New function.
17115         (FOR_EACH_LOCAL_DECL): New macro.
17116         * cfgexpand.c (init_vars_expansion): Adjust for new type of
17117         cfun->local_decls.
17118         (estimated_stack_frame_size): Likewise.
17119         (expand_used_vars): Likewise.
17120         * cgraphbuild.c (build_cgraph_edges): Likewise.
17121         * function.c (instantiate_decls_1): Likewise.
17122         * ipa-struct-reorg.c (build_data_structure): Likewise.
17123         * ipa-type-escape.c (analyze_function): Likewise.
17124         * lto-streamer-in.c (input_function): Likewise.
17125         * lto-streamer-out.c (output_function): Likewise.
17126         * tree-ssa-live.c (remove_unused_locals): Likewise.
17127         * tree.c (free_lang_data_in_decl): Likewise.
17128         (find_decls_types_in_node): Likewise.
17129         * omp-low.c (remove_exit_barrier): Likewise.
17130         (expand_omp_taskreg): Likewise.
17131         (list2chain): Rename to...
17132         (vec2chain): ...this.  Adjust.
17133         * cgraphunit.c (assemble_thunk): Call add_local_decl.
17134         * tree-cfg.c (replace_by_duplicate_decl): Likewise.
17135         * gimple-low.c (record_vars_into): Likewise.
17136         * tree-inline.c (remap_decls): Likewise.
17137         (declare_return_variable): Likewise.
17138         (declare_inline_vars): Likewise.
17139         (copy_forbidden): Adjust for new type of cfun->local_decls.
17140         (add_local_variables): New function.
17141         (expand_call_inline): Call it.
17142         (tree_function_versioning): Likewise.
17143
17144 2010-07-05  H.J. Lu  <hongjiu.lu@intel.com>
17145
17146         AVX Programming Reference (June, 2010)
17147         * config/i386/cpuid.h (bit_F16C): New.
17148         (bit_RDRND): Likewise.
17149         (bit_FSGSBASE): Likewise.
17150
17151         * config/i386/i386-builtin-types.def: Add
17152         "DEF_FUNCTION_TYPE (UINT16)", function types for
17153         float16 <-> float conversions and
17154         "DEF_FUNCTION_TYPE (VOID, UINT64)".
17155
17156         * config/i386/i386-c.c (ix86_target_macros_internal): Support
17157         OPTION_MASK_ISA_FSGSBASE, OPTION_MASK_ISA_RDRND and
17158         OPTION_MASK_ISA_F16C.
17159
17160         * config/i386/i386.c (OPTION_MASK_ISA_FSGSBASE_SET): New.
17161         (OPTION_MASK_ISA_RDRND_SET): Likewise.
17162         (OPTION_MASK_ISA_F16C_SET): Likewise.
17163         (OPTION_MASK_ISA_FSGSBASE_UNSET): Likewise.
17164         (OPTION_MASK_ISA_RDRND_UNSET): Likewise.
17165         (OPTION_MASK_ISA_F16C_UNSET): Likewise.
17166         (OPTION_MASK_ISA_AVX_UNSET): Add OPTION_MASK_ISA_F16C_UNSET.
17167         (ix86_handle_option): Handle OPT_mfsgsbase, OPT_mrdrnd and OPT_mf16c.
17168         (ix86_target_string): Support -mfsgsbase, -mrdrnd and -mf16c.
17169         (pta_flags): Add PTA_FSGSBASE, PTA_RDRND and PTA_F16C.
17170         (override_options): Handle them.
17171         (ix86_valid_target_attribute_inner_p): Handle fsgsbase, rdrnd and f16c.
17172         (ix86_builtins): Add IX86_BUILTIN_RDFSBASE32,
17173         IX86_BUILTIN_RDFSBASE64, IX86_BUILTIN_RDGSBASE32,
17174         IX86_BUILTIN_RDGSBASE64, IX86_BUILTIN_WRFSBASE32,
17175         IX86_BUILTIN_WRFSBASE64, IX86_BUILTIN_WRGSBASE32,
17176         IX86_BUILTIN_WRGSBASE64, IX86_BUILTIN_RDRAND16,
17177         IX86_BUILTIN_RDRAND32, IX86_BUILTIN_RDRAND64,
17178         IX86_BUILTIN_CVTPH2PS, IX86_BUILTIN_CVTPH2PS256,
17179         IX86_BUILTIN_CVTPS2PH and IX86_BUILTIN_CVTPS2PH256.
17180         (bdesc_args): Likewise.
17181         (ix86_expand_args_builtin): Handle V8SF_FTYPE_V8HI,
17182         V4SF_FTYPE_V8HI, V8HI_FTYPE_V8SF_INT and V8HI_FTYPE_V4SF_INT.
17183         (ix86_expand_special_args_builtin): Handle VOID_FTYPE_UINT64,
17184         VOID_FTYPE_UNSIGNED, UNSIGNED_FTYPE_VOID and UINT16_FTYPE_VOID.
17185         Handle non-memory store.
17186
17187         * config/i386/i386.h (TARGET_FSGSBASE): New.
17188         (TARGET_RDRND): Likewise.
17189         (TARGET_F12C): Likewise.
17190
17191         * config/i386/i386.md (UNSPEC_VCVTPH2PS): New.
17192         (UNSPEC_VCVTPS2PH): Likewise.
17193         (UNSPECV_RDFSBASE): Likewise.
17194         (UNSPECV_RDGSBASE): Likewise.
17195         (UNSPECV_WRFSBASE): Likewise.
17196         (UNSPECV_WRGSBASE): Likewise.
17197         (UNSPECV_RDRAND): Likewise.
17198         (rdfsbase<mode>): Likewise.
17199         (rdgsbase<mode>): Likewise.
17200         (wrfsbase<mode>): Likewise.
17201         (wrgsbase<mode>): Likewise.
17202         (rdrand<mode>): Likewise.
17203
17204         * config/i386/i386.opt: Add -mfsgsbase, -mrdrnd and -mf16c.
17205
17206         * config/i386/immintrin.h (_rdrand_u16): New.
17207         (_rdrand_u32): Likewise.
17208         (_readfsbase_u32): Likewise.
17209         (_readfsbase_u64): Likewise.
17210         (_readgsbase_u32): Likewise.
17211         (_readgsbase_u64): Likewise.
17212         (_writefsbase_u32): Likewise.
17213         (_writefsbase_u64): Likewise.
17214         (_writegsbase_u32): Likewise.
17215         (_writegsbase_u64): Likewise.
17216         (_rdrand_u64): Likewise.
17217         (_cvtsh_ss): Likewise.
17218         (_mm_cvtph_ps): Likewise.
17219         (_mm256_cvtph_ps): Likewise.
17220         (_cvtss_sh): Likewise.
17221         (_mm_cvtps_ph): Likewise.
17222         (_mm256_cvtps_ph): Likewise.
17223
17224         * config/i386/sse.md (vcvtph2ps): New.
17225         (*vcvtph2ps_load): Likewise.
17226         (vcvtph2ps256): Likewise.
17227         (vcvtps2ph): Likewise.
17228         (*vcvtps2ph): Likewise.
17229         (*vcvtps2ph_store): Likewise.
17230         (vcvtps2ph256): Likewise.
17231
17232         * doc/extend.texi: Document FSGSBASE and RDRND built-in functions.
17233
17234         * doc/invoke.texi: Document -mfsgsbase, -mrdrnd and -mf16c.
17235
17236 2010-07-05  Joern Rennecke  <joern.rennecke@embecosm.com>
17237
17238         PR bootstrap/44512
17239         * genenums.c (main): Output include of insn-constants.h
17240         * Makefile.in (insn-enums.o): Depend on insn-constants.h.
17241
17242 2010-07-05  Uros Bizjak  <ubizjak@gmail.com>
17243
17244         * config/i386/i386.c (ix86_gen_allocate_stack_worker): New.
17245         (override_options): Initialize it.
17246         (ix86_expand_prologue): Use it.
17247
17248 2010-07-05  Jakub Jelinek  <jakub@redhat.com>
17249
17250         * tree-nrv.c (tree_nrv): Set DECL_VALUE_EXPR on found to result.
17251
17252 2010-07-05  Anatoly Sokolov  <aesok@post.ru>
17253
17254         * double-int.h (fit_double_type): Remove declaration.
17255         * double-int.c (fit_double_type): Remove function.
17256         * tree.h (int_fits_type_p): Adjust prototype.
17257         * tree.c (int_fits_type_p): Return bool. Use double_int_fits_to_tree_p
17258         instead of fit_double_type.
17259         (build_int_cst_type): Use double_int_to_tree and shwi_to_double_int
17260         instead of fit_double_type and build_int_cst_wide.
17261         * builtins.c (): Use double_int_fits_to_tree_p and double_int_to_tree
17262         instead of fit_double_type and build_int_cst_wide.
17263         (fold_builtin_object_size): Use double_int_fits_to_tree_p instead
17264         of fit_double_type.
17265
17266 2010-07-05  Jan Hubicka  <jh@suse.cz>
17267
17268         * cgraph.h (cgraph_node, cgraph_varpool_node): Update docmentation of
17269         in_other_partition.
17270         * lto-cgraph.c (referenced_from_other_partition_p,
17271         reachable_from_other_partition_p): Use in_other_partition flags.
17272         (output_node, output_varpool_node): COMDAT nodes always have private
17273         copies and thus are never used from other partition.
17274
17275 2010-07-05  Anatoly Sokolov  <aesok@post.ru>
17276
17277         * config/ia64/ia64.h (MEMORY_MOVE_COST): Remove macro.
17278         * config/ia64/t-ia64 (ia64.o): Depend on reload.h.
17279         * config/ia64/ia64.c Include reload.h.
17280         (ia64_memory_move_cost): New function.
17281         (TARGET_MEMORY_MOVE_COST): Define.
17282         (ia64_register_move_cost): Replace MEMORY_MOVE_COST with
17283         memory_move_cost.
17284
17285 2010-07-05  Sandra Loosemore  <sandra@codesourcery.com>
17286
17287         PR middle-end/42505
17288         * tree-ssa-loop-ivopts.c (determine_set_costs): Delete obsolete
17289         comments about cost model.
17290         (try_add_cand_for):  Add second strategy for choosing initial set
17291         based on original IVs, controlled by ORIGINALP argument.
17292         (get_initial_solution): Add ORIGINALP argument.
17293         (find_optimal_iv_set_1): New function, split from find_optimal_iv_set.
17294         (find_optimal_iv_set): Try two different strategies for choosing
17295         the IV set, and return the one with lower cost.
17296
17297 2010-07-05  Richard Guenther  <rguenther@suse.de>
17298
17299         * tree-ssa-loop-ivopts.c (rewrite_use_nonlinear_expr): Copy alias info.
17300
17301 2010-07-05  Richard Guenther  <rguenther@suse.de>
17302
17303         * tree.c (reference_alias_ptr_type): New function.
17304         * tree.h (reference_alias_ptr_type): Declare.
17305         * tree-ssa-loop-ivopts.c (copy_ref_info): Restructure to
17306         allow non-TARGET_MEM_REF new refs.
17307         (rewrite_use_address): Pass old alias pointer type to create_mem_ref.
17308         * tree-ssa-address.c (create_mem_ref_raw): Get alias pointer type.
17309         Build a MEM_REF instead of a TARGET_MEM_REF if possible.
17310         (create_mem_ref): Get alias pointer type.  Adjust calls to
17311         create_mem_ref_raw.
17312         (maybe_fold_tmr): Likewise.
17313         * tree-flow.h (create_mem_ref): Adjust prototype.
17314
17315 2010-07-05  Jakub Jelinek  <jakub@redhat.com>
17316
17317         PR c++/44808
17318         * gimplify.c (gimplify_modify_expr): Only SET_DECL_DEBUG_EXPR if
17319         *from_p is VAR_DECL.
17320
17321 2010-07-05  Nathan Froyd  <froydnj@codesourcery.com>
17322
17323         * tree.h (build_call_list): Remove.
17324         * tree.c (build_call_list): Remove.
17325
17326 2010-07-05  Richard Guenther  <rguenther@suse.de>
17327
17328         * double-int.h (double_int_sub): Declare.
17329         * double-int.c (double_int_sub): New function.
17330         * dwarf2out.c (field_byte_offset): Use it.
17331         * fixed-value.c (do_fixed_add): Likewise.
17332         (do_fixed_multiply): Likewise.
17333         (do_fixed_divide): Likewise.
17334         * tree-predcom.c (add_ref_to_chain): Likewise.
17335         (determine_roots_comp): Likewise.
17336         * tree-ssa-loop-niter.c (derive_constant_upper_bound_ops): Likewise.
17337
17338 2010-07-05  Nathan Froyd  <froydnj@codesourcery.com>
17339
17340         * vec.h (VEC_splice, VEC_safe_splice): New macros.  Add function
17341         implementations.
17342
17343 2010-07-05  Bernd Schmidt  <bernds@codesourcery.com>
17344
17345         * config/arm/arm.c (get_arm_condition_code): Remove CC_NOTBmode case.
17346         * arm-modes.def (CC_NOTB): Don't define.
17347         * config/arm/arm.md (arm_adddi3): Generate canonical RTL.
17348         (adddi_sesidi_di, adddi_zesidi_di): Likewise.
17349         (LTUGEU): New code_iterator.
17350         (cnb, optab): New corresponding code_attrs.
17351         (addsi3_carryin_<optab>): Renamed from addsi3_carryin.  Change pattern
17352         to canonical form.  Operands 1 and 2 are commutative.  Parametrize
17353         using LTUGEU.
17354         (addsi3_carryin_shift_<optab>): Likewise.
17355         (addsi3_carryin_alt2_<optab>): Renamed from addsi3_carryin_alt2.
17356         Operands 1 and 2 are commutative.  Parametrize using LTUGEU.
17357         (addsi3_carryin_alt1, addsi3_carryin_alt3): Remove.
17358         (subsi3_compare): Renamed from subsi3_compare0_c.
17359         Change CC_NOTB to CC.
17360         (arm_subsi3_insn): Allow constants for operand 0.
17361         (compare_scc peephole for eq case): New.
17362         (compare_scc splitters): Change CC_NOTB to CC.
17363
17364 2010-07-05  Richard Guenther  <rguenther@suse.de>
17365
17366         * tree-ssa-loop-im.c (for_each_index): Do not handle
17367         ALIGN_INDIRECT_REF.
17368         (gen_lsm_tmp_name): Likewise.
17369         * tree-dump.c (dequeue_and_dump): Likewise.
17370         * tree-pretty-print.c (dump_generic_node): Likewise.
17371         (op_code_prio): Likewise.
17372         (op_symbol_code): Likewise.
17373         * tree.c (staticp): Likewise.
17374         (build1_stat): Likewise.
17375         * tree.h (INDIRECT_REF_P): Likewise.
17376         * fold-const.c (maybe_lvalue_p): Likewise.
17377         (operand_equal_p): Likewise.
17378         * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Likewise.
17379         (ao_ref_init_from_vn_reference): Likewise.
17380         * tree-ssa-loop-ivopts.c (idx_find_step): Likewise.
17381         (find_interesting_uses_address): Likewise.
17382         * dwarf2out.c (loc_list_from_tree): Likewise.
17383         * gimplify.c (gimplify_expr): Likewise.
17384         * tree-eh.c (tree_could_trap_p): Likewise.
17385         * emit-rtl.c (set_mem_attributes_minus_bitpos): Likewise.
17386         * cfgexpand.c (expand_debug_expr): Likewise.
17387         * tree-ssa-pre.c (create_component_ref_by_pieces_1): Likewise.
17388         * tree-ssa-loop-prefetch.c (idx_analyze_ref): Likewise.
17389         * tree-cfg.c (verify_types_in_gimple_min_lval): Likewise.
17390         * config/rs6000/rs6000 (rs6000_check_sdmode): Likewise.
17391         * tree-ssa-operands.c (get_expr_operands): Likewise.
17392         * expr.c (safe_from_p): Likewise.
17393         (expand_expr_real_1): Likewise.  TER BIT_AND_EXPRs into MEM_REFs.
17394         * tree-vect-data-refs.c (vect_setup_realignment): Build
17395         BIT_AND_EXPR and MEM_REF instead of ALIGN_INDIRECT_REF.
17396         * tree-vect-stmts.c (vectorizable_load): Likewise.
17397         * tree.def (ALIGN_INDIRECT_REF): Remove.
17398
17399 2010-07-05  Richard Guenther  <rguenther@suse.de>
17400
17401         PR tree-optimization/44784
17402         * tree-ssa-pre.c (bitmap_find_leader): Fix dominance check
17403         for inserted stmts.
17404         (find_or_generate_expression): Fix SCCVN insertion check.
17405
17406 2010-07-05  Nathan Sidwell  <nathan@codesourcery.com>
17407
17408         * config/rs6000/e500crtsavg64gprctr.asm: Correct done label name.
17409         * config/rs6000/e500crtsav64gprctr.asm: Likewise.
17410         * config/rs6000/e500crtres64gprctr.asm: Likewise. Add FUNC_END
17411         directives.
17412
17413 2010-07-05  Ira Rosen  <irar@il.ibm.com>
17414
17415         * tree-vect-loop.c (vect_get_single_scalar_iteraion_cost): Skip
17416         statements that are not vectorized.
17417         * tree-vect-stmts.c (vect_get_load_cost): Update the value stored
17418         in INSIDE_COST.
17419
17420 2010-07-05  Mikael Pettersson  <mikpe@it.uu.se>
17421
17422         PR bootstrap/44820
17423         * config/arm/arm.c (arm_attr_length_move_neon): Delete regno.
17424
17425 2010-07-05  Richard Guenther  <rguenther@suse.de>
17426
17427         * tree-cfg.c (verify_gimple_return): Handle DECL_BY_REFERENCE
17428         RESULT_DECLs properly.
17429
17430 2010-07-04  H.J. Lu  <hongjiu.lu@intel.com>
17431
17432         PR rtl-optimization/44695
17433         * config/i386/i386.md (extract_code): Removed.
17434         (<u>divmodqi4): Likewise.
17435         (divmodqi4): New.
17436         (udivmodqi4): Likewise.
17437         (divmodhiqi3): Change div/mod to HImode and extend operand 2 to HImode.
17438         (udivmodhiqi3): Likewise.
17439
17440 2010-07-04  Jan Hubicka  <jh@suse.cz>
17441
17442         * lto-cgraph.c (input_edge): Do not care about resolution decisions.
17443
17444 2010-07-04  Jan Hubicka  <jh@suse.cz>
17445
17446         * cgraphunit.c (init_cgraph): Only initialize dump file if it
17447         is not already initialized.
17448
17449 2010-07-04  Richard Sandiford  <rdsandiford@googlemail.com>
17450
17451         * optabs.h (reload_in_optab, reload_out_optab, code_to_optab)
17452         (vcond_gen_code, vcondu_gen_code, movmem_optab, setmem_optab)
17453         (cmpstr_optab, cmpstrn_optab, cmpmem_optab, sync_add_optab)
17454         (sync_sub_optab, sync_ior_optab, sync_and_optab, sync_xor_optab)
17455         (sync_nand_optab, sync_old_add_optab, sync_old_sub_optab)
17456         (sync_old_ior_optab, sync_old_and_optab, sync_old_xor_optab)
17457         (sync_old_nand_optab, sync_new_add_optab, sync_new_sub_optab)
17458         (sync_new_ior_optab, sync_new_and_optab, sync_new_xor_optab)
17459         (sync_new_nand_optab): Redefine as macros.
17460         (sync_compare_and_swap, sync_lock_test_and_set, sync_lock_release):
17461         Delete.
17462         (direct_optab_index): New enum.
17463         (direct_optab_d): New structure.
17464         (direct_optab): New typedef.
17465         (direct_optab_table): Declare.
17466         (direct_optab_handler, set_direct_optab_handler): New functions.
17467         (sync_compare_and_swap_optab, sync_lock_test_and_set_optab)
17468         (sync_lock_release_optab): New macros.
17469         * optabs.c (direct_optab_table): New variable.
17470         (movcc_gen_code, vcond_gen_code, vcondu_gen_code): Delete.
17471         (prepare_cmp_insn): Use direct_optab_handler for cmpmem_optab,
17472         cmpstr_optab and cmpstrn_optab.
17473         (emit_conditional_move): Likewise for movcc_optab.
17474         (can_conditionally_move_p): Likewise for movcc_gen_code.
17475         (init_insn_codes): Clear direct_optab_table.
17476         (init_optabs): Don't initialize the new "direct optabs" here.
17477         (get_vcond_icode): Use direct_optab_handler for vcondu_gen_code and
17478         vcond_gen_code.
17479         (expand_val_compare_and_swap): Likewise sync_compare_and_swap_optab.
17480         (expand_bool_compare_and_swap): Likewise sync_compare_and_swap_optab.
17481         (expand_compare_and_swap_loop): Likewise sync_compare_and_swap_optab.
17482         (expand_sync_operation): Likewise other sync_*_optabs.
17483         (expand_sync_fetch_operation): Likewise.  Rename sync_compare_and_swap
17484         to sync_compare_and_swap_optab.
17485         (expand_sync_lock_test_and_set): Use direct_optab_handler for
17486         sync_lock_test_and_set and sync_compare_and_swap, adding "_optab"
17487         to the names of both.
17488         * builtins.c (expand_builtin_strcmp): Use direct_optab_handler for
17489         cmpstr_optab and cmpstrn_optab.
17490         (expand_builtin_lock_release): Likewise sync_lock_release.
17491         * expr.c (movmem_optab, setmem_optab, cmpstr_optab, cmpstrn_optab)
17492         (cmpmem_optab, sync_add_optab, sync_sub_optab, sync_ior_optab)
17493         (sync_and_optab, sync_xor_optab, sync_nand_optab, sync_old_add_optab)
17494         (sync_old_sub_optab, sync_old_ior_optab, sync_old_and_optab)
17495         (sync_old_xor_optab, sync_old_nand_optab, sync_new_add_optab)
17496         (sync_new_sub_optab, sync_new_ior_optab, sync_new_and_optab)
17497         (sync_new_xor_optab, sync_new_nand_optab, sync_compare_and_swap)
17498         (sync_lock_test_and_set, sync_lock_release): Delete.
17499         (emit_block_move_via_movmem): Use direct_optab_handler for movmem_optab.
17500         (emit_block_move_via_setmem): Use direct_optab_handler for setmem_optab.
17501         * genopinit.c (optabs): Use set_direct_optab_handler for the new
17502         macro optabs.
17503         * omp-low.c (expand_omp_atomic_fetch_op): Update the type of
17504         the "optab" local variable.  Use direct_optab_handler for optab and
17505         sync_compare_and_swap_optab.
17506         * reload1.c (reload_in_optab, reload_out_optab): Delete.
17507         * targhooks.c (default_secondary_reload): Use direct_optab_handler for
17508         reload_in_optab and reload_out_optab.
17509         * config/alpha/alpha.c (alpha_secondary_reload): Likewise.
17510         * config/frv/frv.c (frv_alloc_temp_reg): Likewise.
17511         * config/pa/pa.c (pa_secondary_reload): Likewise.
17512         * java/builtins.c (compareAndSwapInt_builtin): Use direct_optab_handler
17513         for sync_compare_and_swap, renaming it to sync_compare_and_swap_optab.
17514         (compareAndSwapLong_builtin, compareAndSwapObject_builtin): Likewise.
17515         (VMSupportsCS8_builtin): Likewise.
17516
17517 2010-07-04  Richard Sandiford  <rdsandiford@googlemail.com>
17518
17519         * optabs.h (optab_handlers): Change type of insn_code to int.
17520         (optab_handler, set_optab_handler, convert_optab_handler)
17521         (set_convert_optab_handler): Treat the insn_code field as "insn_code -
17522         CODE_FOR_nothing".
17523         * optabs.c (optab_table, convert_optab_table): Always zero-initialize.
17524         (init_insn_codes): Zero both the above arrays.
17525         (init_optabs): Never call init_insn_codes first time around.
17526
17527 2010-07-04  Richard Sandiford  <rdsandiford@googlemail.com>
17528
17529         * optabs.h (optab_handler, convert_optab_handler): Turn into
17530         inline functions that return an insn code.
17531         (set_optab_handler, set_convert_optab_handler): New functions.
17532         * builtins.c: Replace optab_handler(X)->insn_code with
17533         optab_handler or set_optab_handler thoughout.  Likewise
17534         convert_optab_handler(X)->insn_code with convert_optab_handler
17535         and set_convert_optab_handler.
17536         * expmed.c, expr.c, genopinit.c, ifcvt.c, optabs.c, reload.c,
17537         reload1.c, stmt.c, targhooks.c, tree-ssa-loop-prefetch.c,
17538         tree-ssa-math-opts.c, tree-vect-data-refs.c, tree-vect-generic.c,
17539         tree-vect-loop.c, tree-vect-patterns.c, tree-vect-slp.c,
17540         tree-vect-stmts.c, config/m32c/m32c.c, config/rs6000/rs6000.c,
17541         config/spu/spu.c: Likewise.
17542
17543 2010-07-04  Kaz Kojima  <kkojima@gcc.gnu.org>
17544
17545         PR target/44531
17546         * config.gcc (sh*-*-*): Use regular expressions instead of
17547         the 'i' modifier for sed substitutions.
17548
17549 2010-07-04  Jeremie Salvucci  <jeremie.salvucci@free.fr>
17550
17551         * gimple.c (gimple_body): Comments added.
17552
17553 2010-07-04  Richard Guenther  <rguenther@suse.de>
17554
17555         PR middle-end/44809
17556         * gimplify.c (gimplify_expr): Properly build a MEM_REF instead
17557         of an INDIRECT_REF.
17558
17559 2010-07-04  Richard Guenther  <rguenther@suse.de>
17560
17561         PR tree-optimization/44479
17562         * tree-ssa-loop-ivopts.c (rewrite_use_nonlinear_expr): Avoid
17563         extra SSA name copy statements which preserves points-to
17564         information.
17565         * tree-vect-data-refs.c (vect_create_addr_base_for_vector_ref):
17566         Copy points-to information for all pointers.  Properly handle
17567         MEM_REFs.
17568         (vect_create_data_ref_ptr): Likewise.  Avoid extra SSA name
17569         copy statements.
17570         * Makefile.in (tree-ssa-loop-ivopts.o): Add tree-ssa-propagate.h
17571         dependency.
17572
17573 2010-07-04  Richard Guenther  <rguenther@suse.de>
17574
17575         PR middle-end/44785
17576         * tree-inline.c (initialize_inlined_parameters): Do not
17577         re-use pointer-map slot over remap_type call.
17578
17579 2010-07-04  Richard Guenther  <rguenther@suse.de>
17580
17581         * tree-ssa-sccvn.c (vn_reference_lookup_3): Fix last commit.
17582
17583 2010-07-04  Richard Guenther  <rguenther@suse.de>
17584
17585         PR tree-optimization/44656
17586         * tree-ssa-sccvn.c (vn_reference_lookup_3): Try disambiguation
17587         again after value-replacing in the defintions lhs.
17588
17589 2010-07-04  Ira Rosen  <irar@il.ibm.com>
17590             Revital Eres  <eres@il.ibm.com>
17591
17592         * doc/tm.texi.in (TARGET_VECTORIZE_BUILTIN_VECTORIZATION_COST):
17593         Document new arguments.
17594         * doc/tm.texi: Regenerate.
17595         * targhooks.c (default_builtin_vectorization_cost): Add new arguments.
17596         Handle unaligned store.
17597         * targhooks.h (default_builtin_vectorization_cost): Add new arguments.
17598         * target.def (builtin_vectorization_cost): Add new arguments.
17599         * target.h (enum vect_cost_for_stmt): Add unaligned_store.
17600         * tree-vect-loop-manip.c (vect_gen_niters_for_prolog_loop): Take number
17601         of iterations of prolog loop directly from LOOP_PEELING_FOR_ALIGNMENT.
17602         (vect_vfa_segment_size): Fix indentation.
17603         * tree-vectorizer.h (struct _vect_peel_info): New.
17604         (struct _vect_peel_extended_info): New.
17605         (struct _loop_vec_info): Add new field for peeling hash table and a
17606         macro for its access.
17607         (VECT_MAX_COST): Define.
17608         (vect_get_load_cost): Declare.
17609         (vect_get_store_cost, vect_get_known_peeling_cost,
17610         vect_get_single_scalar_iteraion_cost): Likewise.
17611         (vect_supportable_dr_alignment): Add new argument.
17612         * tree-vect-loop.c (new_loop_vec_info): Initialize peeling hash table
17613         field.
17614         (destroy_loop_vec_info): Free peeling hash table.
17615         (vect_analyze_loop_form): Update call to builtin_vectorization_cost.
17616         (vect_analyze_loop): Move vect_enhance_data_refs_alignment before
17617         vect_analyze_slp. Fix indentation.
17618         (vect_get_single_scalar_iteraion_cost): New function.
17619         (vect_get_known_peeling_cost): Likewise.
17620         (vect_estimate_min_profitable_iters): Rename byte_misalign to npeel.
17621         Call vect_get_single_scalar_iteraion_cost instead of cost_for_stmt per
17622         statement. Move outside cost calculation inside unknown peeling case.
17623         Call vect_get_known_peeling_cost for known amount of peeling.
17624         * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Add data
17625         reference to the print message of forced alignment.
17626         (vect_verify_datarefs_alignment): Update call to
17627         vect_supportable_dr_alignment.
17628         (vect_get_data_access_cost): New function.
17629         (vect_peeling_hash, vect_peeling_hash_eq, vect_peeling_hash_insert,
17630         vect_peeling_hash_get_most_frequent, vect_peeling_hash_get_lowest_cost,
17631         vect_peeling_hash_choose_best_peeling): Likewise.
17632         (vect_enhance_data_refs_alignment): Fix documentation. Use hash table
17633         to store all the accesses in the loop and find best possible access to
17634         align using peeling for known alignment case. For unknown alignment
17635         check if stores are preferred or if peeling is worthy.
17636         (vect_find_same_alignment_drs): Analyze pairs of loads too.
17637         (vect_supportable_dr_alignment): Add new argument and check aligned
17638         accesses according to it.
17639         * tree-vect-stmts.c (vect_get_stmt_cost): New function.
17640         (cost_for_stmt): Call vect_get_stmt_cost.
17641         (vect_model_simple_cost): Likewise.
17642         (vect_model_store_cost): Call vect_get_stmt_cost. Call
17643         vect_get_store_cost to calculate the cost of the statement.
17644         (vect_get_store_cost): New function.
17645         (vect_model_load_cost): Call vect_get_stmt_cost. Call
17646         vect_get_load_cost to calculate the cost of the statement.
17647         (vect_get_load_cost): New function.
17648         (vectorizable_store): Update call to vect_supportable_dr_alignment.
17649         (vectorizable_load): Likewise.
17650         * config/spu/spu.c (spu_builtin_vectorization_cost): Add new arguments.
17651         * config/i386/i386.c (ix86_builtin_vectorization_cost): Add new
17652         arguments. Handle unaligned store.
17653         * config/rs6000/rs6000.c (rs6000_builtin_vectorization_cost): New.
17654         (rs6000_builtin_support_vector_misalignment): Return true for word and
17655         double word alignments for VSX.
17656         * tree-vect-slp.c (vect_build_slp_tree): Update calls to
17657         vect_supportable_dr_alignment and builtin_vectorization_cost.
17658
17659 2010-07-03  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
17660
17661         PR target/44597
17662         * config/pa/predicates.md (prefetch_cc_operand): Remove.
17663         (prefetch_nocc_operand): Likewise.
17664         * config/pa/pa.md (prefetch): Revise expander to use prefetch_20.
17665         (prefetch_20): New insn.
17666         (prefetch_cc): Remove.
17667         (prefetch_nocc): Likewise.
17668
17669 2010-07-03  Manuel López-Ibáñez  <manu@gcc.gnu.org>
17670
17671         * expr.c (vector_mode_valid_p): Move to c-common.c.
17672         * expr.h (vector_mode_valid_p): Do not declare here.
17673         * system.h: Poison GCC_EXPR_H in front-ends.
17674         * Makefile.in: Update dependencies.
17675
17676 2010-07-03  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
17677
17678         PR target/44705
17679         * config/pa/pa.h (GO_IF_LEGITIMATE_ADDRESS): Reject LABEL_REF.
17680
17681 2010-07-03  Jan Hubicka  <jh@suse.cz>
17682
17683         * timevar.def (TV_OUT_OF_SSA, TV_VAR_EXPAND, TV_POST_EXPAND,
17684         TV_VAR_TRACKING_DATAFLOW, TV_VAR_TRACKING_EMIT): New timevars.
17685         * cfgexpand.c (gimple_expand_cfg): Use new timevars.
17686         * var-tracking.c (vt_find_locations, variable_tracking_main_1):
17687         Likewise.
17688
17689         * lto-stramer-out.c (pass_ipa_lto_gimple_out, pass_ipa_lto_finish_out):
17690         Update timevars.V
17691         * timevar.def (TV_IPA_LTO_GIMPLE_IO, TV_IPA_LTO_DECL_IO): Remove.
17692         (TV_IPA_LTO_GIMPLE_IN, TV_IPA_LTO_GIMPLE_OUT, TV_IPA_LTO_DECL_IN,
17693         TV_IPA_LTO_DECL_OUT): New.
17694         * lto.c (read_cgraph_and_symbols, materialize_cgraph): Update timevars.
17695
17696 2010-07-03  Jan Hubicka  <jh@suse.cz>
17697
17698         * ipa-inline.c (update_edge_key): Break out from ...
17699         update_callers_keys): ... here;
17700         (update_callee_keys): Update only the edges from caller to callee.
17701         (update_all_calle_keys): Do what update_calle_keys did.
17702         (decide_inlining_of_small_functions): Avoid recomputing of all
17703         callees when badness increase.
17704
17705 2010-07-03  Jie Zhang  <jie@codesourcery.com>
17706
17707         * config/arm/arm.c (arm_attr_length_move_neon): New.
17708         * config/arm/arm-protos.h (arm_attr_length_move_neon): Declare.
17709         * config/arm/neon.md (define_mode_attr V_slen): Remove.
17710         (neon_mov<mode> for VSTRUCT): Use arm_attr_length_move_neon
17711         to compute length attribute.
17712
17713 2010-07-03  Jie Zhang  <jie@codesourcery.com>
17714
17715         * config/arm/vfp.md (*push_multi_vfp): Use vfp_register_operand
17716         as predicate for operand 1 and remove its constraint.
17717         * config/arm/predicates.md (vfp_register_operand): New.
17718         * config/arm/arm.md (*push_multi): Remove the constraint of operand 1.
17719         (*push_fp_multi): Likewise.
17720
17721 2010-07-03  Eric Botcazou  <ebotcazou@adacore.com>
17722
17723         * gimplify.c (mostly_copy_tree_r): Deal with BIND_EXPR.
17724
17725 2010-07-03  Jan Hubicka  <jh@suse.cz>
17726
17727         * config/i386/i386.c (override_options): Revert accidental commit.
17728
17729 2010-07-02  Le-Chun Wu  <lcwu@google.com>
17730
17731         PR c++/44128
17732         * doc/invoke.texi: Update documentation of -Wshadow.
17733
17734 2010-07-02  Daniel Jacobowitz  <dan@codesourcery.com>
17735             Julian Brown  <julian@codesourcery.com>
17736             Sandra Loosemore  <sandra@codesourcery.com>
17737
17738         * config/arm/arm.c (arm_canonicalize_comparison): Canonicalize DImode
17739         comparisons.  Adjust to take both operands.
17740         (arm_select_cc_mode): Handle DImode comparisons.
17741         (arm_gen_compare_reg): Generate a scratch register for DImode
17742         comparisons which require one.  Use xor for Thumb equality checks.
17743         (arm_const_double_by_immediates): New.
17744         (arm_print_operand): Allow 'Q' and 'R' for constants.
17745         (get_arm_condition_code): Handle new CC_CZmode and CC_NCVmode.
17746         * config/arm/arm.h (CANONICALIZE_COMPARISON): Always use
17747         arm_canonicalize_comparison.
17748         * config/arm/arm-modes.def: Add CC_CZmode and CC_NCVmode.
17749         * config/arm/arm-protos.h (arm_canonicalize_comparison): Update
17750         prototype.
17751         (arm_const_double_by_immediates): Declare.
17752         * config/arm/constraints.md (Di): New constraint.
17753         * config/arm/predicates.md (arm_immediate_di_operand)
17754         (arm_di_operand, cmpdi_operand): New.
17755         * config/arm/arm.md (cbranchdi4): Handle non-Cirrus also.
17756         (*arm_cmpdi_insn, *arm_cmpdi_unsigned)
17757         (*arm_cmpdi_zero, *thumb_cmpdi_zero): New insns.
17758         (cstoredi4): Handle non-Cirrus also.
17759
17760 2010-07-02  Julian Brown  <julian@codesourcery.com>
17761             Sandra Loosemore  <sandra@codesourcery.com>
17762
17763         PR target/43703
17764         * config/arm/vec-common.md (add<mode>3, sub<mode>3, smin<mode>3)
17765         (smax<mode>3): Disable for NEON float modes when
17766         flag_unsafe_math_optimizations is false.
17767         * config/arm/neon.md (*add<mode>3_neon, *sub<mode>3_neon)
17768         (*mul<mode>3_neon)
17769         (mul<mode>3add<mode>_neon, mul<mode>3neg<mode>add<mode>_neon)
17770         (reduc_splus_<mode>, reduc_smin_<mode>, reduc_smax_<mode>): Disable
17771         for NEON float modes when flag_unsafe_math_optimizations is false.
17772         (quad_halves_<code>v4sf): Only enable if
17773         flag_unsafe_math_optimizations is true.
17774         * doc/invoke.texi (ARM Options): Add note about floating point
17775         vectorization requiring -funsafe-math-optimizations.
17776
17777 2010-07-02  Sandra Loosemore  <sandra@codesourcery.com>
17778             Julian Brown  <julian@codesourcery.com>
17779
17780         * config/arm/neon.md (UNSPEC_VABA): Delete.
17781         (UNSPEC_VABAL): Delete.
17782         (UNSPEC_VABS): Delete.
17783         (UNSPEC_VMUL_N): Delete.
17784         (adddi3_neon): New.
17785         (subdi3_neon): New.
17786         (mul<mode>3add<mode>_neon): Make the pattern named.
17787         (mul<mode>3neg<mode>add<mode>_neon): Likewise.
17788         (neon_vadd<mode>): Replace with define_expand, and move the remaining
17789         unspec parts...
17790         (neon_vadd<mode>_unspec): ...to this.
17791         (neon_vmla<mode>, neon_vmla<mode>_unspec): Likewise.
17792         (neon_vlms<mode>, neon_vmls<mode>_unspec): Likewise.
17793         (neon_vsub<mode>, neon_vsub<mode>_unspec): Likewise.
17794         (neon_vaba<mode>): Rewrite in terms of vabd.
17795         (neon_vabal<mode>): Rewrite in terms of vabdl.
17796         (neon_vabs<mode>): Rewrite without unspec.
17797         * config/arm/arm.md (*arm_adddi3): Disable for TARGET_NEON.
17798         (*arm_subdi3): Likewise.
17799         * config/arm/neon.ml (Vadd, Vsub): Split out 64-bit variants and add
17800         No_op attribute to disable assembly output checks.
17801         * config/arm/arm_neon.h: Regenerated.
17802         * doc/arm-neon-intrinsics.texi: Regenerated.
17803
17804 2010-07-02  Jan Hubicka  <jh@suse.cz>
17805
17806         * ipa-split.c (split_function): For aggregate values, set the return
17807         slot optimization bit.  When passing DECL_BY_REFERENCE, produce
17808         *<retval> = fncall.part ().
17809         (execute_split_functions): Do not care about DECL_BY_REFERENCE.
17810
17811 2010-07-02  Sandra Loosemore  <sandra@codesourcery.com>
17812
17813         * config/arm/neon.md (UNSPEC_VAND): Delete.
17814         (UNSPEC_VBIC): Delete.
17815         (UNSPEC_VCLZ): Delete.
17816         (UNSPEC_VCNT): Delete.
17817         (UNSPEC_VEOR): Delete.
17818         (UNSPEC_VORN): Delete.
17819         (UNSPEC_VORR): Delete.
17820         (iordi3_neon): Rewrite RTL without unspec.  Add alternatives to handle
17821         core registers too.
17822         (anddi3_neon): Likewise.
17823         (orndi3_neon): Likewise.
17824         (bicdi3_neon): Likewise.
17825         (xordi3_neon): Likewise.
17826         (neon_vclz<mode>): Rewrite as define_expand and clz<mode>2 to get
17827         rid of unspec and handle unused operand.
17828         (neon_vcnt<mode>): Similarly, with popcount<mode>2.
17829         * config/arm/predicates.md (imm_for_neon_logic_operand):
17830         Require TARGET_NEON.
17831         (imm_for_neon_inv_logic_operand): Likewise.
17832         * config/arm/arm.md (define_split for logical_binary_operator):
17833         Disable for NEON registers.
17834         (anddi3): Add new define_expand, and rename the insn.  Disable
17835         this insn for NEON, where anddi3_neon now applies.
17836         (*anddi_notdi_di): Disable for TARGET_NEON, where bicdi3_neon applies.
17837         (iordi3): As for anddi3.
17838         (xordi3): Likewise.
17839         * config/arm/neon.ml (Vand): Split DImode variants and mark them
17840         as No_op to disable testing for exact instruction match.
17841         (Vorr): Likewise.
17842         (Veor): Likewise.
17843         (Vbic): Likewise.
17844         (Vorn): Likewise.
17845         * config/arm/arm_neon.h: Regenerated.
17846         * doc/arm-neon-intrinsics.texi: Regenerated.
17847
17848 2010-07-02  Eric Botcazou  <ebotcazou@adacore.com>
17849
17850         * expr.h (emit_stack_probe): Declare.
17851         * explow.c (emit_stack_probe): Make global.
17852         (anti_adjust_stack_and_probe): Fix comments.
17853         * config/sparc/linux.h (STACK_CHECK_STATIC_BUILTIN): Define to 1.
17854         * config/sparc/linux64.h (STACK_CHECK_STATIC_BUILTIN): Likewise.
17855         * config/sparc/sol2.h (STACK_CHECK_STATIC_BUILTIN): Likewise.
17856         * config/sparc/sparc.c: Include except.h.
17857         (sparc_emit_probe_stack_range): New function.
17858         (output_probe_stack_range): Likewise.
17859         (sparc_expand_prologue): Invoke sparc_emit_probe_stack_range if static
17860         built-in stack checking is enabled.
17861         * config/sparc/sparc-protos.h (output_probe_stack_range): Declare.
17862         * config/sparc/sparc.md (UNSPECV_PROBE_STACK_RANGE): New constant.
17863         (probe_stack_range): New insn.
17864
17865 2010-07-02  Richard Guenther  <rguenther@suse.de>
17866
17867         PR target/43958
17868         * config/pa/pa.c (hppa_gimplify_va_arg_expr): Use pointer arithmetic
17869         for argument alignment.
17870
17871 2010-07-02  Jan Hubicka  <jh@suse.cz>
17872
17873         * ipa-split.c (verify_non_ssa_vars): Break out from ...; perform DFS
17874         walk backwards from entry_bb to check only those basic block of header
17875         that might lead to execution of split part.
17876         (consider_split) ... here.
17877         (find_return_bb): Allow assignment in return BB.
17878         (find_retval): New.
17879         (split_function): Fix name of cloned function; take care of updating
17880         return value in return_bb containing move.
17881
17882 2010-07-02  Andreas Schwab  <schwab@linux-m68k.org>
17883
17884         PR target/44771
17885         * config/m68k/m68k.c (m68k_expand_prologue): Remove set but not
17886         used variable insn.
17887
17888 2010-07-02  Eric Botcazou  <ebotcazou@adacore.com>
17889
17890         * implicit-zee.c (combine_reaching_defs): Fix long lines.
17891         (is_set_with_extension_DI): Delete.
17892         (struct zero_extend_info): New structure.
17893         (add_removable_zero_extend): New function.
17894         (find_removable_zero_extends): Use note_stores to find SETs.
17895         (find_and_remove_ze): Fix long line, remove superfluous parentheses.
17896
17897 2010-07-02  Changpeng Fang  <changpeng.fang@amd.com>
17898
17899         * tree-ssa-loop-prefetch.c (compute_miss_rate): Rename to
17900         is_miss_rate_acceptable. Pull total_positions computation
17901         out of the loops.  Early return if miss_positions exceeds
17902         the acceptable threshold.
17903         * tree-ssa-loop-prefetch.c (prune_ref_by_group_reuse): Call
17904         is_miss_rate_acceptable after renaming of compute_miss_rate.
17905
17906 2010-07-02  Changpeng Fang  <changpeng.fang@amd.com>
17907
17908         PR middle-end/44576
17909         * tree-ssa-loop-prefetch.c (compute_miss_rate): Return 1000 (out
17910         of 1000) for miss rate if the address diference is greater than or
17911         equal to the cache line size (the two reference will never hit the
17912         same cache line).
17913
17914 2010-07-02  Bernd Schmidt  <bernds@codesourcery.com>
17915
17916         PR target/42835
17917         * config/arm/arm-modes.def (CC_NOTB): New mode.
17918         * config/arm/arm.c (get_arm_condition_code): Handle it.
17919         * config/arm/thumb2.md (thumb2_compare_scc): Delete pattern.
17920         * config/arm/arm.md (subsi3_compare0_c): New pattern.
17921         (compare_scc): Now a define_and_split.  Add a number of extra
17922         splitters before it.
17923
17924         PR target/42172
17925         * config/arm/arm.c (thumb1_rtx_costs): Improve support for SIGN_EXTEND
17926         and ZERO_EXTEND.
17927         (arm_rtx_costs_1): Likewise.
17928         (arm_size_rtx_costs): Use arm_rtx_costs_1 for these codes.
17929         * config/arm/arm.md (is_arch6): New attribute.
17930         (zero_extendhisi2, zero_extendqisi2, extendhisi2,
17931         extendqisi2): Tighten the code somewhat, avoiding invalid
17932         RTL to occur in the expander patterns.
17933         (thumb1_zero_extendhisi2): Merge with thumb1_zero_extendhisi2_v6.
17934         (thumb1_zero_extendhisi2_v6): Delete.
17935         (thumb1_extendhisi2): Merge with thumb1_extendhisi2_v6.
17936         (thumb1_extendhisi2_v6): Delete.
17937         (thumb1_extendqisi2): Merge with thumb1_extendhisi2_v6.
17938         (thumb1_extendqisi2_v6): Delete.
17939         (zero_extendhisi2 for register input splitter): New.
17940         (zero_extendqisi2 for register input splitter): New.
17941         (thumb1_extendhisi2 for register input splitter): New.
17942         (extendhisi2 for register input splitter): New.
17943         (extendqisi2 for register input splitter): New.
17944         (TARGET_THUMB1 extendqisi2 for memory input splitter): New.
17945         (arm_zero_extendhisi2): Allow nonimmediate_operand for operand 1,
17946         and add support for a register alternative requiring a split.
17947         (thumb1_zero_extendqisi2): Likewise.
17948         (arm_zero_extendqisi2): Likewise.
17949         (arm_extendhisi2): Likewise.
17950         (arm_extendqisi2): Likewise.
17951
17952 2010-07-02  Sandra Loosemore  <sandra@codesourcery.com>
17953
17954         * config/arm/arm.c (neon_vdup_constant): Expand into canonical RTL
17955         instead of an unspec.
17956         (neon_expand_vector_init): Likewise.
17957         * config/arm/neon.md (UNSPEC_VCOMBINE): Delete.
17958         (UNSPEC_VDUP_LANE): Delete.
17959         (UNSPEC VDUP_N): Delete.
17960         (UNSPEC_VGET_HIGH): Delete.
17961         (UNSPEC_VGET_LANE): Delete.
17962         (UNSPEC_VGET_LOW): Delete.
17963         (UNSPEC_VMVN): Delete.
17964         (UNSPEC_VSET_LANE): Delete.
17965         (V_double_vector_mode): New.
17966         (vec_set<mode>_internal): Make code emitted match that for the
17967         corresponding intrinsics.
17968         (vec_setv2di_internal): Likewise.
17969         (neon_vget_lanedi): Rewrite to expand into emit_move_insn.
17970         (neon_vget_lanev2di): Rewrite to expand into vec_extractv2di.
17971         (neon_vset_lane<mode>): Combine double and quad patterns and
17972         expand into vec_set<mode>_internal instead of UNSPEC_VSET_LANE.
17973         (neon_vset_lanedi): Rewrite to expand into emit_move_insn.
17974         (neon_vdup_n<mode>): Rewrite RTL without unspec.
17975         (neon_vdup_ndi): Rewrite as define_expand and use emit_move_insn.
17976         (neon_vdup_nv2di): Rewrite RTL without unspec and merge with
17977         with neon_vdup_lanev2di, adjusting the pattern from the latter
17978         to be predicable for consistency.
17979         (neon_vdup_lane<mode>_internal): New.
17980         (neon_vdup_lane<mode>): Turn into a define_expand and rewrite
17981         to avoid using an unspec.
17982         (neon_vdup_lanedi): Rewrite RTL pattern to avoid unspec.
17983         (neon_vdup_lanev2di): Turn into a define_expand.
17984         (neon_vcombine): Rewrite pattern to eliminate UNPSEC_VCOMBINE.
17985         (neon_vget_high<mode>): Replace with....
17986         (neon_vget_highv16qi): New pattern using canonical RTL.
17987         (neon_vget_highv8hi): Likewise.
17988         (neon_vget_highv4si): Likewise.
17989         (neon_vget_highv4sf): Likewise.
17990         (neon_vget_highv2di): Likewise.
17991         (neon_vget_low<mode>): Replace with....
17992         (neon_vget_lowv16qi): New pattern using canonical RTL.
17993         (neon_vget_lowv8hi): Likewise.
17994         (neon_vget_lowv4si): Likewise.
17995         (neon_vget_lowv4sf): Likewise.
17996         (neon_vget_lowv2di): Likewise.
17997
17998         * config/arm/neon.ml (Vget_lane): Add No_op attribute to suppress
17999         test for this emitting vmov.
18000         (Vset_lane): Likewise.
18001         (Vdup_n): Likewise.
18002         (Vmov_n): Likewise.
18003
18004         * doc/arm-neon-intrinsics.texi: Regenerated.
18005
18006 2010-07-02  Sandra Loosemore  <sandra@codesourcery.com>
18007
18008         * config/arm/neon.md (vec_extractv2di): Correct error in register
18009         numbering to reconcile with neon_vget_lanev2di.
18010
18011 2010-07-02  Richard Guenther  <rguenther@suse.de>
18012
18013         * tree-ssa-structalias.c (pt_solution_set_var): New function.
18014         * tree-ssa-alias.h (pt_solution_set_var): Declare.
18015         * tree-ssa-loop-ivopts.c (copy_ref_info): Also copy or create
18016         points-to information.
18017
18018 2010-07-02  Christian Borntraeger  <borntraeger@de.ibm.com>
18019
18020         * config/s390/s390.c (override_options): Adopt prefetching
18021         at -O3 to handle flag_prefetch_loop_arrays as a tristate.
18022
18023 2010-07-02  Jan Hubicka  <jh@suse.cz>
18024
18025         * df-problems.c (df_kill_notes): Do not collect dead  notes.
18026         (df_set_note): Just call add_reg_note.
18027         (df_set_unused_notes_for_mw, df_set_dead_notes_for_mw,
18028         df_create_unused_note): Do not deal with lists of old notes.
18029         (df_note_bb_compute): Likewise.
18030
18031 2010-07-02  Richard Guenther  <rguenther@suse.de>
18032
18033         * tree-ssa-structalias.c (find_func_aliases): Handle
18034         pointer alignment via BIT_AND_EXPR.
18035         * tree-vrp.c (extract_range_from_binary_expr): Likewise.
18036
18037 2010-07-02  Richard Guenther  <rguenther@suse.de>
18038
18039         * tree-data-ref.c (initialize_data_dependence_relation): Handle
18040         mismatching number of dimensions properly.
18041
18042 2010-07-02  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
18043
18044         PR target/44707
18045         * config/rs6000/rs6000.c (rs6000_legitimize_reload_address): Recognize
18046         (lo_sum (high ...) ...) patterns generated by earlier passes.
18047
18048 2010-07-02  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
18049
18050         * doc/install.texi (Prerequisites): Document Perl requirement on
18051         Solaris 2.
18052         (Specific, *-*-solaris2*): Document GNU c++filt requirement.
18053
18054 2010-07-02  Richard Guenther  <rguenther@suse.de>
18055
18056         PR middle-end/44777
18057         * tree-cfg.c (gimple_block_ends_with_call_p): Handle empty BBs.
18058
18059 2010-07-02  Jan Hubicka  <jh@suse.cz>
18060
18061         PR middle-end/44706
18062         * predict.c (predict_paths_for_bb): Handle case when control dependence
18063         BB has only abnormal edges.
18064
18065 2010-07-02  Richard Guenther  <rguenther@suse.de>
18066
18067         PR tree-optimization/44748
18068         * tree-ssa-ccp.c (fold_const_aggregate_ref): Properly handle
18069         the embedded conversion in MEM_REFs.
18070
18071 2010-07-01  López-Ibáñez  <manu@gcc.gnu.org>
18072
18073         * reload.c: Include toplev.h.
18074         * recog.c:  Likewise.
18075         * Makefile.in: Adjust dependencies.
18076
18077 2010-07-01  Jakub Jelinek  <jakub@redhat.com>
18078
18079         PR debug/44694
18080         * dwarf2out.c (reg_loc_descriptor): For eliminated arg_pointer_rtx
18081         or frame_pointer_rtx use DW_OP_fbreg offset DW_OP_stack_value.
18082
18083 2010-07-01  Richard Guenther  <rguenther@suse.de>
18084
18085         * emit-rtl.c (set_mem_attributes_minus_bitpos): Use unsigned
18086         types for offsets.
18087
18088 2010-07-01  Joern Rennecke  <joern.rennecke@embecosm.com>
18089
18090         PR target/44732
18091         * config/ia64/ia64.c (ia64_register_move_cost): Remove stray '{'.
18092         Fix argument types.
18093
18094 2010-07-01  Bernd Schmidt  <bernds@codesourcery.com>
18095
18096         PR target/44727
18097         * config/i386/i386.md (peephole2 for arithmetic ops with memory):
18098         Make sure operand 0 dies.
18099
18100 2010-07-01  Richard Guenther  <rguenther@suse.de>
18101
18102         PR middle-end/42834
18103         PR middle-end/44468
18104         * doc/gimple.texi (is_gimple_mem_ref_addr): Document.
18105         * doc/generic.texi (References to storage): Document MEM_REF.
18106         * tree-pretty-print.c (dump_generic_node): Handle MEM_REF.
18107         (print_call_name): Likewise.
18108         * tree.c (recompute_tree_invariant_for_addr_expr): Handle MEM_REF.
18109         (build_simple_mem_ref_loc): New function.
18110         (mem_ref_offset): Likewise.
18111         * tree.h (build_simple_mem_ref_loc): Declare.
18112         (build_simple_mem_ref): Define.
18113         (mem_ref_offset): Declare.
18114         * fold-const.c: Include tree-flow.h.
18115         (operand_equal_p): Handle MEM_REF.
18116         (build_fold_addr_expr_with_type_loc): Likewise.
18117         (fold_comparison): Likewise.
18118         (fold_unary_loc): Fold
18119         VIEW_CONVERT_EXPR <T1, MEM_REF <T2, ...>> to MEM_REF <T1, ...>.
18120         (fold_binary_loc): Fold MEM[&MEM[p, CST1], CST2] to MEM[p, CST1 + CST2],
18121         fold MEM[&a.b, CST2] to MEM[&a, offsetof (a, b) + CST2].
18122         * tree-ssa-alias.c (ptr_deref_may_alias_decl_p): Handle MEM_REF.
18123         (ptr_deref_may_alias_ref_p_1): Likewise.
18124         (ao_ref_base_alias_set): Properly differentiate base object for
18125         offset and TBAA.
18126         (ao_ref_init_from_ptr_and_size): Use MEM_REF.
18127         (indirect_ref_may_alias_decl_p): Handle MEM_REFs properly.
18128         (indirect_refs_may_alias_p): Likewise.
18129         (refs_may_alias_p_1): Likewise.  Remove pointer SSA name def
18130         chasing code.
18131         (ref_maybe_used_by_call_p_1): Handle MEM_REF.
18132         (call_may_clobber_ref_p_1): Likewise.
18133         * dwarf2out.c (loc_list_from_tree): Handle MEM_REF.
18134         * expr.c (expand_assignment): Handle MEM_REF.
18135         (store_expr): Handle MEM_REFs from STRING_CSTs.
18136         (store_field): If expanding a MEM_REF of a non-addressable
18137         decl use bitfield operations.
18138         (get_inner_reference): Handle MEM_REF.
18139         (expand_expr_addr_expr_1): Likewise.
18140         (expand_expr_real_1): Likewise.
18141         * tree-eh.c (tree_could_trap_p): Handle MEM_REF.
18142         * alias.c (ao_ref_from_mem): Handle MEM_REF.
18143         (get_alias_set): Likewise.  Properly handle VIEW_CONVERT_EXPRs.
18144         * tree-data-ref.c (dr_analyze_innermost): Handle MEM_REF.
18145         (dr_analyze_indices): Likewise.
18146         (dr_analyze_alias): Likewise.
18147         (object_address_invariant_in_loop_p): Likewise.
18148         * gimplify.c (mark_addressable): Handle MEM_REF.
18149         (gimplify_cond_expr): Build MEM_REFs.
18150         (gimplify_modify_expr_to_memcpy): Likewise.
18151         (gimplify_init_ctor_preeval_1): Handle MEM_REF.
18152         (gimple_fold_indirect_ref): Adjust.
18153         (gimplify_expr): Handle MEM_REF.  Gimplify INDIRECT_REF to MEM_REF.
18154         * tree.def (MEM_REF): New tree code.
18155         * tree-dfa.c: Include toplev.h.
18156         (get_ref_base_and_extent): Handle MEM_REF.
18157         (get_addr_base_and_unit_offset): New function.
18158         * emit-rtl.c (set_mem_attributes_minus_bitpos): Handle MEM_REF.
18159         * gimple-fold.c (may_propagate_address_into_dereference): Handle
18160         MEM_REF.
18161         (maybe_fold_offset_to_array_ref): Allow possibly out-of bounds
18162         accesses if the array has just one dimension.  Remove always true
18163         parameter.  Do not require type compatibility here.
18164         (maybe_fold_offset_to_component_ref): Remove.
18165         (maybe_fold_stmt_indirect): Remove.
18166         (maybe_fold_reference): Remove INDIRECT_REF handling.
18167         Fold back to non-MEM_REF.
18168         (maybe_fold_offset_to_address): Simplify.  Deal with type
18169         mismatches here.
18170         (maybe_fold_reference): Likewise.
18171         (maybe_fold_stmt_addition): Likewise.  Also handle
18172         &ARRAY + I in addition to &ARRAY[0] + I.
18173         (fold_gimple_assign): Handle ADDR_EXPR of MEM_REFs.
18174         (gimple_get_relevant_ref_binfo): Handle MEM_REF.
18175         * cfgexpand.c (expand_debug_expr): Handle MEM_REF.
18176         * tree-ssa.c (useless_type_conversion_p): Make most pointer
18177         conversions useless.
18178         (warn_uninitialized_var): Handle MEM_REF.
18179         (maybe_rewrite_mem_ref_base): New function.
18180         (execute_update_addresses_taken): Implement re-writing of MEM_REFs
18181         to SSA form.
18182         * tree-inline.c (remap_gimple_op_r): Handle MEM_REF, remove
18183         INDIRECT_REF handling.
18184         (copy_tree_body_r): Handle MEM_REF.
18185         * gimple.c (is_gimple_addressable): Adjust.
18186         (is_gimple_address): Likewise.
18187         (is_gimple_invariant_address): ADDR_EXPRs of MEM_REFs with
18188         invariant base are invariant.
18189         (is_gimple_min_lval): Adjust.
18190         (is_gimple_mem_ref_addr): New function.
18191         (get_base_address): Handle MEM_REF.
18192         (count_ptr_derefs): Likewise.
18193         (get_base_loadstore): Likewise.
18194         * gimple.h (is_gimple_mem_ref_addr): Declare.
18195         (gimple_call_fndecl): Handle invariant MEM_REF addresses.
18196         * tree-cfg.c (verify_address): New function, split out from ...
18197         (verify_expr): ... here.  Use for verifying ADDR_EXPRs and
18198         the address operand of MEM_REFs.  Verify MEM_REFs.  Reject
18199         INDIRECT_REFs.
18200         (verify_types_in_gimple_min_lval): Handle MEM_REF.  Disallow
18201         INDIRECT_REF.  Allow conversions.
18202         (verify_types_in_gimple_reference): Verify VIEW_CONVERT_EXPR of
18203         a register does not change its size.
18204         (verify_types_in_gimple_reference): Verify MEM_REF.
18205         (verify_gimple_assign_single): Disallow INDIRECT_REF.
18206         Handle MEM_REF.
18207         * tree-ssa-operands.c (opf_non_addressable, opf_not_non_addressable):
18208         New.
18209         (mark_address_taken): Handle MEM_REF.
18210         (get_indirect_ref_operands): Pass through opf_not_non_addressable.
18211         (get_asm_expr_operands): Pass opf_not_non_addressable.
18212         (get_expr_operands): Handle opf_[not_]non_addressable.
18213         Handle MEM_REF.  Remove INDIRECT_REF handling.
18214         * tree-vrp.c (check_array_ref): Handle MEM_REF.
18215         (search_for_addr_array): Likewise.
18216         (check_array_bounds): Likewise.
18217         (vrp_stmt_computes_nonzero): Adjust for MEM_REF.
18218         * tree-ssa-loop-im.c (for_each_index): Handle MEM_REF.
18219         (ref_always_accessed_p): Likewise.
18220         (gen_lsm_tmp_name): Likewise.  Handle ADDR_EXPR.
18221         * tree-complex.c (extract_component): Do not handle INDIRECT_REF.
18222         Handle MEM_REF.
18223         * cgraphbuild.c (mark_load): Properly check for NULL result
18224         from get_base_address.
18225         (mark_store): Likewise.
18226         * tree-ssa-loop-niter.c (array_at_struct_end_p): Handle MEM_REF.
18227         * tree-loop-distribution.c (generate_builtin): Exchange INDIRECT_REF
18228         handling for MEM_REF.
18229         * tree-scalar-evolution.c (follow_ssa_edge_expr): Handle
18230         &MEM[ptr + CST] similar to POINTER_PLUS_EXPR.
18231         * builtins.c (stabilize_va_list_loc): Use the function ABI
18232         valist type if we couldn't canonicalize the argument type.
18233         Always dereference with the canonical va-list type.
18234         (maybe_emit_free_warning): Handle MEM_REF.
18235         (fold_builtin_memory_op): Simplify and handle MEM_REFs in folding
18236         memmove to memcpy.
18237         * builtins.c (fold_builtin_memory_op): Use ref-all types
18238         for all memcpy foldings.
18239         * omp-low.c (build_receiver_ref): Adjust for MEM_REF.
18240         (build_outer_var_ref): Likewise.
18241         (scan_omp_1_op): Likewise.
18242         (lower_rec_input_clauses): Likewise.
18243         (lower_lastprivate_clauses): Likewise.
18244         (lower_reduction_clauses): Likewise.
18245         (lower_copyprivate_clauses): Likewise.
18246         (expand_omp_atomic_pipeline): Likewise.
18247         (expand_omp_atomic_mutex): Likewise.
18248         (create_task_copyfn): Likewise.
18249         * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Handle MEM_REF.
18250         Remove old union trick.  Initialize constant offsets.
18251         (ao_ref_init_from_vn_reference): Likewise.  Do not handle
18252         INDIRECT_REF.  Init base_alias_set properly.
18253         (vn_reference_lookup_3): Replace INDIRECT_REF handling with MEM_REF.
18254         (vn_reference_fold_indirect): Adjust for MEM_REFs.
18255         (valueize_refs): Fold MEM_REFs.  Re-evaluate constant offset
18256         for ARRAY_REFs.
18257         (may_insert): Remove.
18258         (visit_reference_op_load): Do not test may_insert.
18259         (run_scc_vn): Remove parameter, do not fiddle with may_insert.
18260         * tree-ssa-sccvn.h (struct vn_reference_op_struct): Add
18261         a field to store the constant offset this op applies.
18262         (run_scc_vn): Adjust prototype.
18263         * cgraphunit.c (thunk_adjust): Adjust for MEM_REF.
18264         * tree-ssa-ccp.c (ccp_fold): Replace INDIRECT_REF folding with
18265         MEM_REF.  Propagate &foo + CST as &MEM[&foo, CST].  Do not
18266         bother about volatile qualifiers on pointers.
18267         (fold_const_aggregate_ref): Handle MEM_REF, do not handle INDIRECT_REF.
18268         * tree-ssa-loop-ivopts.c
18269         * tree-ssa-loop-ivopts.c (determine_base_object): Adjust for MEM_REF.
18270         (strip_offset_1): Likewise.
18271         (find_interesting_uses_address): Replace INDIRECT_REF handling with
18272         MEM_REF handling.
18273         (get_computation_cost_at): Likewise.
18274         * ipa-pure-const.c (check_op): Handle MEM_REF.
18275         * tree-stdarg.c (check_all_va_list_escapes): Adjust for MEM_REF.
18276         * tree-ssa-sink.c (is_hidden_global_store): Handle MEM_REF
18277         and constants.
18278         * ipa-inline.c (likely_eliminated_by_inlining_p): Handle MEM_REF.
18279         * tree-parloops.c (take_address_of): Adjust for MEM_REF.
18280         (eliminate_local_variables_1): Likewise.
18281         (create_call_for_reduction_1): Likewise.
18282         (create_loads_for_reductions): Likewise.
18283         (create_loads_and_stores_for_name): Likewise.
18284         * matrix-reorg.c (may_flatten_matrices_1): Sanitize.
18285         (ssa_accessed_in_tree): Handle MEM_REF.
18286         (ssa_accessed_in_assign_rhs): Likewise.
18287         (update_type_size): Likewise.
18288         (analyze_accesses_for_call_stmt): Likewise.
18289         (analyze_accesses_for_assign_stmt): Likewise.
18290         (transform_access_sites): Likewise.
18291         (transform_allocation_sites): Likewise.
18292         * tree-affine.c (tree_to_aff_combination): Handle MEM_REF.
18293         * tree-vect-data-refs.c (vect_create_addr_base_for_vector_ref): Do
18294         not handle INDIRECT_REF.
18295         * tree-ssa-phiopt.c (add_or_mark_expr): Handle MEM_REF.
18296         (cond_store_replacement): Likewise.
18297         * tree-ssa-pre.c (create_component_ref_by_pieces_1): Handle
18298         MEM_REF, no not handle INDIRECT_REFs.
18299         (insert_into_preds_of_block): Properly initialize avail.
18300         (phi_translate_1): Fold MEM_REFs.  Re-evaluate constant offset
18301         for ARRAY_REFs.  Properly handle reference lookups that
18302         require a bit re-interpretation.
18303         (can_PRE_operation): Do not handle INDIRECT_REF.  Handle MEM_REF.
18304         * tree-sra.c (build_access_from_expr_1): Handle MEM_REF.
18305         (build_ref_for_offset_1): Remove.
18306         (build_ref_for_offset): Build MEM_REFs.
18307         (gate_intra_sra): Disable for now.
18308         (sra_ipa_modify_expr): Handle MEM_REF.
18309         (ipa_early_sra_gate): Disable for now.
18310         * tree-sra.c (create_access): Swap INDIRECT_REF handling for
18311         MEM_REF handling.
18312         (disqualify_base_of_expr): Likewise.
18313         (ptr_parm_has_direct_uses): Swap INDIRECT_REF handling for
18314         MEM_REF handling.
18315         (sra_ipa_modify_expr): Remove INDIRECT_REF handling.
18316         Use mem_ref_offset.  Remove bogus folding.
18317         (build_access_from_expr_1): Properly handle MEM_REF for non IPA-SRA.
18318         (make_fancy_name_1): Add support for MEM_REF.
18319         * tree-predcom.c (ref_at_iteration): Handle MEM_REFs.
18320         * tree-mudflap.c (mf_xform_derefs_1): Adjust for MEM_REF.
18321         * ipa-prop.c (compute_complex_assign_jump_func): Handle MEM_REF.
18322         (compute_complex_ancestor_jump_func): Likewise.
18323         (ipa_analyze_virtual_call_uses): Likewise.
18324         * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Replace
18325         INDIRECT_REF folding with more generalized MEM_REF folding.
18326         (tree_ssa_forward_propagate_single_use_vars): Adjust accordingly.
18327         (forward_propagate_addr_into_variable_array_index): Also handle
18328         &ARRAY + I in addition to &ARRAY[0] + I.
18329         * tree-ssa-dce.c (ref_may_be_aliased): Handle MEM_REF.
18330         * tree-ssa-ter.c (find_replaceable_in_bb): Avoid TER if that
18331         creates assignments with overlap.
18332         * tree-nested.c (get_static_chain): Adjust for MEM_REF.
18333         (get_frame_field): Likewise.
18334         (get_nonlocal_debug_decl): Likewise.
18335         (convert_nonlocal_reference_op): Likewise.
18336         (struct nesting_info): Add mem_refs pointer-set.
18337         (create_nesting_tree): Allocate it.
18338         (convert_local_reference_op): Insert to be folded mem-refs.
18339         (fold_mem_refs): New function.
18340         (finalize_nesting_tree_1): Perform defered folding of mem-refs
18341         (free_nesting_tree): Free the pointer-set.
18342         * tree-vect-stmts.c (vectorizable_store): Adjust for MEM_REF.
18343         (vectorizable_load): Likewise.
18344         * tree-ssa-phiprop.c (phiprop_insert_phi): Adjust for MEM_REF.
18345         (propagate_with_phi): Likewise.
18346         * tree-object-size.c (addr_object_size): Handle MEM_REFs
18347         instead of INDIRECT_REFs.
18348         (compute_object_offset): Handle MEM_REF.
18349         (plus_stmt_object_size): Handle MEM_REF.
18350         (collect_object_sizes_for): Dispatch to plus_stmt_object_size
18351         for &MEM_REF.
18352         * tree-flow.h (get_addr_base_and_unit_offset): Declare.
18353         (symbol_marked_for_renaming): Likewise.
18354         * Makefile.in (tree-dfa.o): Add $(TOPLEV_H).
18355         (fold-const.o): Add $(TREE_FLOW_H).
18356         * tree-ssa-structalias.c (get_constraint_for_1): Handle MEM_REF.
18357         (find_func_clobbers): Likewise.
18358         * ipa-struct-reorg.c (decompose_indirect_ref_acc): Handle MEM_REF.
18359         (decompose_access): Likewise.
18360         (replace_field_acc): Likewise.
18361         (replace_field_access_stmt): Likewise.
18362         (insert_new_var_in_stmt): Likewise.
18363         (get_stmt_accesses): Likewise.
18364         (reorg_structs_drive): Disable.
18365         * config/i386/i386.c (ix86_va_start): Adjust for MEM_REF.
18366         (ix86_canonical_va_list_type): Likewise.
18367
18368 2010-06-30  Joern Rennecke  <joern.rennecke@embecosm.com>
18369
18370         PR other/44566
18371         * coretypes.h [!USED_FOR_TARGET] (reg_class_t): Define.
18372         * target.def (struct gcc_target): Replace enum reg_class with
18373         reg_class_t in hook argument / return types.
18374         * doc/tm.texi.in (TARGET_SECONDARY_RELOAD): Likewise.
18375         (TARGET_IRA_COVER_CLASSES, TARGET_MEMORY_MOVE_COST): Likewise.
18376         (TARGET_BRANCH_TARGET_REGISTER_CLASS): Likewise.
18377         * targhooks.h (default_branch_target_register_class): Likewise.
18378         (default_ira_cover_classes, default_secondary_reload): Likewise.
18379         (default_memory_move_cost, default_register_move_cost): Likewise.
18380         * targhooks.c (default_branch_target_register_class): Likewise.
18381         (default_ira_cover_classes, default_secondary_reload): Likewise.
18382         (default_memory_move_cost, default_register_move_cost): Likewise.
18383         * reload.c (push_secondary_reload, secondary_reload_class): Likewise.
18384         * bt-load.c (branch_target_load_optimize): Likewise.
18385         * ira.c (setup_cover_and_important_classes): Likewise.
18386         * ira-costs.c (copy_cost): Likewise.
18387         * reload1.c (emit_input_reload_insns): Likewise.
18388         * config/alpha/alpha.c (alpha_secondary_reload): Likewise.
18389         * config/frv/frv.c (frv_secondary_reload): Likewise.
18390         * config/s390/s390.c (s390_secondary_reload): Likewise.
18391         * config/i386/i386.c (i386_ira_cover_classes): Likewise.
18392         (ix86_secondary_reload, ix86_memory_move_cost): Likewise.
18393         (ix86_register_move_cost): Likewise.
18394         * config/sh/sh-protos.h (sh_secondary_reload): Likewise.
18395         * config/sh/sh.c (sh_target_reg_class, sh_secondary_reload): Likewise.
18396         * config/xtensa/xtensa.c (xtensa_secondary_reload): Likewise.
18397         * config/xtensa/xtensa-protos.h (xtensa_secondary_reload): Likewise.
18398         * config/rs6000/rs6000.c (rs6000_secondary_reload): Likewise.
18399         (rs6000_ira_cover_classes): Likewise.
18400         * config/picochip/picochip.c (picochip_secondary_reload): Likewise.
18401         * config/picochip/picochip-protos.h (picochip_secondary_reload):
18402         Likewise.
18403         * config/pa/pa.c (pa_secondary_reload): Likewise.
18404         * config/mips/mips.c (mips_ira_cover_classes): Likewise.
18405         * config/bfin/bfin.c (bfin_secondary_reload): Likewise.
18406         * config/ia64/ia64.c (ia64_register_move_cost): Likewise.
18407         * doc/tm.texi: Regenerate.
18408
18409 2010-06-30  Sebastian Pop  <sebastian.pop@amd.com>
18410
18411         PR bootstrrap/44726
18412         * graphite-sese-to-poly.c (build_poly_dr): Avoid uninitialized
18413         use.
18414         (build_alias_set_optimal_p): Likewise.
18415         (build_base_obj_set_for_drs): Likewise.
18416
18417 2010-06-30  Joern Rennecke  <joern.rennecke@embecosm.com>
18418
18419         * target.def: Remove comment about licensing problems of function
18420         declarations.
18421
18422         * target.def (declare_constant_name): Change exp to expr.  Use DEFHOOK.
18423         * doc/tm.texi.in (TARGET_ASM_DECLARE_CONSTANT_NAME): Use @hook.
18424         * doc/tm.texi: Regenerate.
18425
18426         * target.def (builtin_reciprocal): Change tm_fn to md_fn.  Use DEFHOOK.
18427         * doc/tm.texi.in (TARGET_BUILTIN_RECIPROCAL): Use @hook.
18428
18429         * target.def (enum_va_list_p): Use DEFHOOK.
18430         * doc/tm.texi.in (TARGET_ENUM_VA_LIST_P): Use @hook.
18431         Rename ptype to ptree.
18432         * doc/tm.texi: Regenerate.
18433
18434         * target.def (fold_builtin): Rename nargs to n_args.  Use DEFHOOK.
18435         * doc/tm.texi.in (TARGET_FOLD_BUILTIN): Use @hook.
18436         * doc/tm.texi: Regenerate.
18437
18438         * target.def (memory_move_cost): Use DEFHOOK.
18439         * doc/tm.texi.in (TARGET_MEMORY_MOVE_COST): Use @hook.
18440         Rename regclass AKA class to rclass.
18441         * doc/tm.texi: Regenerate.
18442
18443         * target.def (pragma_parse): Use DEFHOOK.
18444         * doc/tm.texi.in (TARGET_OPTION_PRAGMA_PARSE): Use @hook.
18445         s/TARGET_VALID_OPTION_ATTRIBUTE_P/TARGET_OPTION_VALID_ATRIBUTE_P/ .
18446         * doc/tm.texi: Regenerate.
18447
18448         * target.def (pass_by_reference): Use DEFHOOK.
18449         * doc/tm.texi.in (TARGET_PASS_BY_REFERENCE): Use @hook.
18450         * doc/tm.texi: Regenerate.
18451
18452         * target.def (resolve_overloaded_builtin): Rename params to arglist.
18453         Use DEFHOOK.
18454         * doc/tm.texi.in (TARGET_RESOLVE_OVERLOADED_BUILTIN): Use @hook.
18455         * doc/tm.texi: Regenerate.
18456
18457         * target.def (return_pops_args): Use DEFHOOK.
18458         * doc/tm.texi.in (TARGET_RETURN_POPS_ARGS): Use @hook.
18459         Rename stack-size to size.
18460         * doc/tm.texi: Regenerate.
18461
18462         * target.def (dfa_new_cycle): Use DEFHOOK.  Rename dump_file to dump,
18463         last-sched_cycle to last_clock, cur_cycle to clock.
18464         * doc/tm.texi.in: Use @hook.
18465         * doc/tm.texi: Regenerate.
18466
18467         * target.def (print_operand, print_operand_address): Update comment.
18468         (print_operand_punct_valid_p): Likewise.
18469
18470 2010-06-30  Manuel López-Ibáñez  <manu@gcc.gnu.org>
18471
18472         * toplev.h (_fatal_insn_not_found, _fatal_insn): Move declarations
18473         to rtl.h.
18474         (error_for_asm, warning_for_asm): Move declarations to rtl-error.h.
18475         * rtl.h (_fatal_insn_not_found, _fatal_insn): Move declarations here.
18476         * rtl-error.h: New.
18477         * regrename.c: Do not include toplev.h. Include rtl-error.h.
18478         * rtl-error.c: Likewise.
18479         * reload.c: Likewise.
18480         * recog.c:  Likewise.
18481         * sel-sched.c: Likewise.
18482         * function.c: Likewise.
18483         * reg-stack.c: Likewise.
18484         * cfgrtl.c: Likewise.
18485         * reload1.c: Likewise.
18486         * final.c: Include rtl-error.
18487         * Makefile.in: Adjust dependencies.
18488
18489 2010-06-30  Jan Hubicka  <jh@suse.cz>
18490
18491         PR middle-end/PR44706
18492         * ipa-split (split_function): Refine conditions when to use DECL_RESULT
18493         to return the value.
18494
18495 2010-06-30  Michael Matz  <matz@suse.de>
18496
18497         PR bootstrap/44699
18498         * tree-vrp.c (vrp_finalize): Deal with changing num_ssa_names.
18499         * gimple-fold.c (gimplify_and_update_call_from_tree): If LHS is
18500         a gimple reg, attach the original VDEF to the last store in the
18501         sequence.
18502
18503 2010-06-30  Iain Sandoe  <iains@gcc.gnu.org>
18504
18505         PR other/44034
18506         * config/darwin.c (darwin_override_options): Use renamed
18507         targetm.asm_out.emit_unwind_label.
18508
18509 2010-06-30  Bernd Schmidt  <bernds@codesourcery.com>
18510
18511         PR tree-optimization/39799
18512         * tree-inline.c (remap_ssa_name): Initialize variable only if
18513         SSA_NAME_OCCURS_IN_ABNORMAL_PHI.
18514
18515 2010-06-30  Nathan Froyd  <froydnj@codesourcery.com>
18516
18517         * c-parser.c (c_parser_omp_for_loop): Use a VEC for for_block.
18518
18519 2010-06-30  Richard Guenther  <rguenther@suse.de>
18520
18521         PR target/44722
18522         * config/i386/i386.md (peephole2 for fix:SSEMODEI24): Guard
18523         against oscillation with reverse peephole2.
18524
18525 2010-06-30  H.J. Lu  <hongjiu.lu@intel.com>
18526
18527         PR target/44721
18528         * config/i386/i386.md (peephole2 for arithmetic ops with memory):
18529         Fix last commit.
18530
18531 2010-06-30  Nick Clifton  <nickc@redhat.com>
18532
18533         * config/rx/rx-modes.def: New file.
18534         * config/rx/rx.h (FIRST_PSEUDO_REGISTER): Increase to 17.
18535         (CC_REGNUM): Define.
18536         (FIXED_REGISTERS, CALL_USED_REGISTERS, REGISTER_NAMES): Add cc
18537         register.
18538         (CC_NO_CARRY, NOTICE_UPDATE_CC): Delete.
18539         (SELECT_CC_MODE): Define.
18540         * config/rx/rx.md (CC_REG): Define.  Update all patterns to use
18541         (reg:CC CC_REG) instead of (cc0).
18542         (attr "cc"): Delete.
18543         (cbranchsi4): Do not split compare and branch here. Instead move
18544         it to...
18545         (cbranchsi4_<code>): ... here.  New patterns.
18546         (cmpsi): Call rx-compare_redundant to find out if it is necessary
18547         to emit the compare instruction.
18548         * config/rx/rx.c (rx_gen-cond_branch_template): Remove tests of
18549         cc_status flags.
18550         (rx_get_stack_layout): Iterate up to before CC_REGNUM not
18551         FIRST_PSEUDO_REGNUM.
18552         (rx_expand_prologue, rx_expand_epilogue): Likewise.
18553         (rx_notice_update_cc): Delete.
18554         (rx_cc_modes_compatible): New function.
18555         (flags_needed_for_conditional): New function.
18556         (flags_from_mode): New function.
18557         (rx_compare_redundant): New function - scans backwards through
18558         insn list to find out if condition flags are already set correctly.
18559         (TARGET_CC_MODES_COMPATIBLE): Define.
18560         * config/rx/rx-protos.h (rx_compare_redundant): Prototype.
18561
18562         * config/rx/rx.h (BRANCH_COST): Define.
18563         (REGISTER_MOVE_COST): Define.
18564         * config/rx/predicates (rx_source_operand): Allow all constant types.
18565         * config/rx/rx.md (addsi3): Add alternative for swapped operands.
18566         (tstsi4): New pattern.
18567         * config/rx/rx.c (rx_memory_move_cost): Define.
18568         (TARGET_MEMORY_MOVE_COST): Define.
18569
18570 2010-06-30  Manuel López-Ibáñez  <manu@gcc.gnu.org>
18571
18572         * tree.h (block_may_fallthru): Declare here.
18573         * tree-flow.h (block_may_fallthru): Do not declare here.
18574         * c-typeck.c: Do not include tree-flow.h. Include gimple.h and
18575         bitmap.h
18576         * Makefile.in (c-typeck.o): Update dependencies.
18577
18578 2010-06-30  Jakub Jelinek  <jakub@redhat.com>
18579
18580         PR debug/44694
18581         * cselib.h (cselib_preserve_cfa_base_value): Add regno argument.
18582         * cselib.c (cfa_base_preserved_regno): New static variable.
18583         (cselib_reset_table): Don't reset cfa_base_preserved_regno instead
18584         of REGNO (cfa_base_preserved_val->locs->loc).
18585         (cselib_preserve_cfa_base_value): Add regno argument, set
18586         cfa_base_preserved_regno to it.
18587         (cselib_invalidate_regno): Allow removal of registers other than
18588         cfa_base_preserved_regno from cfa_base_preserved_val.
18589         (cselib_finish): Set cfa_base_preserved_regno to INVALID_REGNUM.
18590         * var-tracking.c (adjust_mems): Replace sp or hfp even outside
18591         of MEM addresses, if not on LHS.
18592         (reverse_op): Don't add reverse ops for cfa_base_rtx.
18593         (vt_init_cfa_base): Adjust cselib_preserve_cfa_base_value caller.
18594
18595 2010-06-30  Bernd Schmidt  <bernds@codesourcery.com>
18596
18597         * recog.c (peep2_do_rebuild_jump_labels, peep2_do_cleanup_cfg): New
18598         static variables.
18599         (peep2_buf_position): New static function.
18600         (peep2_regno_dead_p, peep2_reg_dead_p, peep2_find_free_register,
18601         peephole2_optimize): Use it.
18602         (peep2_attempt, peep2_update_life): New static functions, broken out
18603         of peephole2_optimize.
18604         (peep2_fill_buffer): New static function.
18605         (peephole2_optimize): Change the main loop to try to fill the buffer
18606         with the maximum number of insns before matching them against
18607         peepholes.  Use a forward scan.  Remove special case for targets with
18608         conditional execution.
18609         * genrecog.c (change_state): Delete dead code.
18610         * config/i386/i386.md (peephole2 for arithmetic ops with memory):
18611         Rewrite so as not to expect the second insn to have had a peephole
18612         applied yet.
18613
18614 2010-06-29  Nathan Froyd  <froydnj@codesourcery.com>
18615
18616         * genhooks.c (emit_findices): Cast field precision to int.
18617         (emit_documentation): Likewise.
18618
18619 2010-06-29  Jakub Jelinek  <jakub@redhat.com>
18620
18621         PR tree-optimization/43801
18622         * cgraph.c (cgraph_create_virtual_clone): Clear DECL_SECTION_NAME
18623         if old_decl was DECL_ONE_ONLY.
18624
18625         PR debug/44668
18626         * dwarf2out.c (add_accessibility_attribute): New function.
18627         (gen_subprogram_die, gen_variable_die, gen_field_die): Use it
18628         instead of adding DW_AT_accessibility manually.
18629         (gen_enumeration_type_die, gen_struct_or_union_type_die,
18630         gen_typedef_die): Use it.
18631
18632 2010-06-29  Douglas B Rupp  <rupp@gnat.com>
18633
18634         * vmsdbgout.c (full_name): Just output the file name if not native.
18635
18636 2010-06-29  Douglas B Rupp  <rupp@gnat.com>
18637
18638         * vmsdbgout.c (func_table): Replace with VEC func{nam,num}_tables.
18639         (funcnam_table): New static table.
18640         (funcnum_table): New static table.
18641         (write_rtnbeg): Write value saved in funcnum_table.
18642         (write_rtnend): Write value saved in funcnum_table.
18643         (vmsdbgout_begin_function): Save current function info in
18644         (vmsdbgout_init): Initialize func{nam,num}_tables. Minor reformatting.
18645         (vmsdbgout_finish): Iterate over funcnum_table.
18646
18647 2010-06-29  Douglas B Rupp  <rupp@gnat.com>
18648
18649         * vmsdbgout.c (vmsdbgout_begin_epilogue): Declare
18650         (vmsdbgout_type_decl): Declare
18651         (vmsdbg_debug_hooks): Add entry for type_decl and begin_epilogue.
18652         (FUNC_EPILOGUE_LABEL): New macro
18653         (vmsdbgout_begin_epilogue): New function.
18654         (vmsdbgout_type_decl): New function.
18655
18656 2010-06-29  Douglas B Rupp  <rupp@gnat.com>
18657
18658         * vmsdbg.h: Update copyright.
18659
18660 2010-06-29  Douglas B Rupp  <rupp@gnat.com>
18661
18662         * vmsdbg.h (DST_K_TBG): New DST constant.
18663         * vmsdbgout.c (addr_const_to_string): Removed, not referenced.
18664         (write_modbeg): Cast module_language to avoid warning.
18665         (write_rtnbeg): Use DST_K_TBG vice magic mystery number.
18666
18667 2010-06-29  Joern Rennecke  <joern.rennecke@embecosm.com>
18668
18669         PR other/44034
18670         * target.def, doc/tm.texi.in, genhooks.c: New files.
18671         * target.h: Instead of defining individual hook members,
18672         define DEFHOOKPOD / DEFHOOK / DEFHOOK_UNDOC / HOOKSTRUCT and
18673         include target.def.
18674         * target-def.h: Instead of defining individual hook initializers,
18675         include target-hooks-def.h.
18676         * df-scan.c, haifa-sched.c, sel-sched.c: Rename targetm members:
18677         targetm.live_on_entry -> targetm.extra_live_on_entry
18678         targetm.sched.md_finish ->targetm.sched.finish
18679         targetm.sched.md_init -> targetm.sched.init
18680         targetm.sched.md_init_global -> targetm.sched.init_global
18681         targetm.asm_out.unwind_label -> targetm.asm_out.emit_unwind_label
18682         targetm.asm_out.except_table_label ->
18683           targetm.asm_out.emit_except_table_label
18684         targetm.asm_out.visibility -> targetm.asm_out.assemble_visibility
18685         targetm.target_help -> targetm.help
18686         targetm.vectorize.builtin_support_vector_misalignment ->
18687           targetm.vectorize.support_vector_misalignment
18688         targetm.file_start_app_off -> targetm.asm_file_start_app_off
18689         targetm.file_start_file_directive ->
18690          targetm.asm_file_start_file_directive
18691         * dwarf2out.c, opts.c, tree-vect-data-refs.c, except.c: Likewise.
18692         * varasm.c, config/alpha/alpha.c, config/cris/cris.c: Likewise.
18693         * config/spu/spu.c, config/ia64/ia64.c: Rename target macros:
18694         TARGET_VECTOR_ALIGNMENT_REACHABLE ->
18695           TARGET_VECTORIZE_VECTOR_ALIGNMENT_REACHABLE
18696         TARGET_SUPPORT_VECTOR_MISALIGNMENT ->
18697           TARGET_VECTORIZE_SUPPORT_VECTOR_MISALIGNMENT
18698         TARGET_UNWIND_EMIT -> TARGET_ASM_UNWIND_EMIT
18699         * config/rs6000/rs6000.c, config/arm/arm.c: Likewise.
18700         * Makefile.in (TARGET_H): Depend on target.def.
18701         (TARGET_DEF_H): Depend on target-hooks-def.h.
18702         (target-hooks-def.h, tm.texi, s-target-hooks-def-h): New rules.
18703         (s-tm-texi, build/genhooks.o, build/genhooks): Likewise.
18704         * doc/tm.texi: Regenerate.
18705
18706         * Makefile.in (s-tm-texi): Remove stray tab / rule.
18707
18708         * config/m68k/m68k.c (targetm.sched.init_global): Update comment.
18709         (targetm.sched.init): Likewise.
18710
18711 2010-06-29  Nathan Froyd  <froydnj@codesourcery.com>
18712
18713         PR bootstrap/44713
18714         * config/i386/i386.c (type_natural_mode): Const-ify CUM parameter.
18715         (function_arg_advance_32): Const-ify TYPE parameter.
18716         (function_arg_advance_64): Likewise.  Change type of NAMED to bool.
18717         (ix86_function_arg_advance): Change type of NAMED to bool.
18718         (function_arg_32): Const-ify CUM and TYPE parameters.
18719         (function_arg_64): Likewise.  Change type of NAMED to bool.
18720         (function_arg_ms_64): Const-ify CUM parameter. Change type of NAMED
18721         to bool.
18722         (ix86_function_arg): Change type of NAMED to bool.
18723         (ix86_setup_incoming_varargs): Call ix86_function_arg_advance.  Pass
18724         last argument as a bool.
18725
18726 2010-06-29  Joern Rennecke  <joern.rennecke@embecosm.com>
18727
18728         * doc/tm.texi (TARGET_OPTION_OVERRIDE): Document.
18729         (OVERRIDE_OPTIONS): Add note of obsolescence.
18730         Replace references with references to TARGET_OPTION_OVERRIDE.
18731         (Except for C_COMMON_OVERRIDE_OPTIONS, which remains similar to
18732          the macro).
18733         * targhooks.c (default_target_option_override): New function.
18734         * targhooks.h (default_target_option_override): Declare.
18735         * target.h (struct gcc_target): Add override member to
18736         target_option member.
18737         * toplev.c (process_options): Replace OVERRIDE_OPTIONS use with
18738         targetm.target_option.override call.
18739         * target-def.h (TARGET_OPTION_OVERRIDE): Define.
18740         (TARGET_OPTION_HOOKS): Add TARGET_OPTION_OVERRIDE.
18741
18742 2010-06-29  Jan Hubicka  <jh@suse.cz>
18743
18744         * tree-inline.c: Replace incomming by incomin and clonning by cloning.
18745
18746 2010-06-29  Jan Hubicka  <jh@suse.cz>
18747
18748         * predict.c (propagate_freq): Clear EXIT_BLOCK_PTR frequency if it is
18749         unreachable.
18750         (rebuild_frequencies): New function.
18751         * predict.h (rebuild_frequencies): Declare.
18752         * tree-inline.c (copy_cfg_body): Compute properly count & frequency of
18753         entry block and edge reaching new_entry.
18754         (tree_function_versioning): When doing partial cloning, rebuild
18755         frequencies when done.
18756         * passes.c (execute_function_todo): Use rebild_frequencies.
18757
18758 2010-06-29  Richard Guenther  <rguenther@suse.de>
18759
18760         * tree-dfa.c (dump_variable): Remove noalias_state dumping.
18761         * tree-flow.h (enum noalias_state): Remove.
18762         (struct var_ann_d): Remove noalias_state member.
18763
18764 2010-06-29  Bernd Schmidt  <bernds@codesourcery.com>
18765
18766         PR target/43902
18767         * config/arm/arm.md (maddsidi4, umaddsidi4): New expanders.
18768         (maddhisi4): Renamed from mulhisi3addsi.  Operands renumbered.
18769         (maddhidi4): Likewise.
18770
18771         Revert parts of the change for PR25130.
18772         * cse.c (exp_equiv_p): For MEMs, if for_gcse, only compare
18773         MEM_ALIAS_SET.
18774
18775 2010-06-29  Nathan Froyd  <froydnj@codesourcery.com>
18776
18777         * calls.c, dse.c, expr.c, function.c: Call targetm.calls.function_arg,
18778         targetm.calls.function_incoming_arg, and
18779         targetm.calls.function_arg_advance instead of FUNCTION_ARG,
18780         FUNCTION_INCOMING_ARG, and FUNCTION_ARG_ADVANCE, respectively.
18781         * target.h (struct gcc_target): Add function_arg_advance,
18782         function_arg, and function_incoming_arg fields.
18783         * target-def.h (TARGET_FUNCTION_ARG_ADVANCE, TARGET_FUNCTION_ARG):
18784         (TARGET_FUNCTION_INCOMING_ARG): Define.
18785         (TARGET_CALLS): Add TARGET_FUNCTION_ARG_ADVANCE, TARGET_FUNCTION_ARG,
18786         and TARGET_FUNCTION_INCOMING_ARG.
18787         * targhooks.h (default_function_arg_advance): Declare.
18788         (default_function_arg, default_function_incoming_arg): Declare.
18789         * targhooks.c (default_function_arg_advance): New function.
18790         (default_function_arg, default_function_incoming_arg): New function.
18791         * config/i386/i386.c (function_arg_advance): Rename to...
18792         (ix86_function_arg_advance): ...this.  Make static.
18793         (function_arg): Rename to...
18794         (ix86_function_arg): ...this.  Make static.
18795         (TARGET_FUNCTION_ARG_ADVANCE): Define.
18796         (TARGET_FUNCTION_ARG): Define.
18797         * config/i386/i386.h (FUNCTION_ARG_ADVANCE): Delete.
18798         (FUNCTION_ARG): Delete.
18799         * config/i386/i386-protos.h (function_arg_advance): Delete prototype.
18800         (function_arg): Delete prototype.
18801
18802 2010-06-29  Nathan Froyd  <froydnj@codesourcery.com>
18803
18804         * reginfo.c (init_reg_sets_1): Adjust comments.
18805         * combine-stack-adj.c (rest_of_handle_stack_adjustments): Likewise.
18806         * calls.c (prepare_call_address): Likewise.
18807         (emit_call_1): Use targetm.calls.return_pops_args.
18808         (expand_call): Likewise.
18809         * function.c (assign_parms): Likewise.
18810         * system.h (RETURN_POPS_ARGS): Add to #pragma poison list.
18811         * target.h (struct gcc_target) [struct calls]: Add
18812         return_pops_args field.
18813         * targhooks.h (default_return_pops_args): Declare.
18814         * targhooks.c (default_return_pops_args): Define.
18815         * target-def.h (TARGET_RETURN_POPS_ARGS): Define.
18816         (TARGET_CALLS): Add TARGET_RETURN_POPS_ARGS.
18817         * doc/tm.texi (RETURN_POPS_ARGS): Rename to...
18818         (TARGET_RETURN_POPS_ARGS): ...this.  Use deftypefn.  Adjust
18819         documentation.
18820         * config/alpha/alpha.h (RETURN_POPS_ARGS): Delete.
18821         * config/arc/arc.h (RETURN_POPS_ARGS): Likewise.
18822         * config/arm/arm.h (RETURN_POPS_ARGS): Likewise.
18823         * config/avr/avr.h (RETURN_POPS_ARGS): Likewise.
18824         * config/bfin/bfin.h (RETURN_POPS_ARGS): Likewise.
18825         * config/cris/cris.h (RETURN_POPS_ARGS): Likewise.
18826         * config/crx/crx.h (RETURN_POPS_ARGS): Likewise.
18827         * config/fr30/fr30.h (RETURN_POPS_ARGS): Likewise.
18828         * config/frv/frv.h (RETURN_POPS_ARGS): Likewise.
18829         * config/h8300/h8300.h (RETURN_POPS_ARGS): Likewise.
18830         * config/ia64/ia64.h (RETURN_POPS_ARGS): Likewise.
18831         * config/iq2000/iq2000.h (RETURN_POPS_ARGS): Likewise.
18832         * config/lm32/lm32.h (RETURN_POPS_ARGS): Likewise.
18833         * config/m32c/m32c.h (RETURN_POPS_ARGS): Likewise.
18834         * config/m32r/m32r.h (RETURN_POPS_ARGS): Likewise.
18835         * config/m68hc11/m68hc11.h (RETURN_POPS_ARGS): Likewise.
18836         * config/mcore/mcore.h (RETURN_POPS_ARGS): Likewise.
18837         * config/mep/mep.h (RETURN_POPS_ARGS): Likewise.
18838         * config/mips/mips.h (RETURN_POPS_ARGS): Likewise.
18839         * config/mmix/mmix.h (RETURN_POPS_ARGS): Likewise.
18840         * config/mn10300/mn10300.h (RETURN_POPS_ARGS): Likewise.
18841         * config/moxie/moxie.h (RETURN_POPS_ARGS): Likewise.
18842         * config/pa/pa.h (RETURN_POPS_ARGS): Likewise.
18843         * config/pdp11/pdp11.h (RETURN_POPS_ARGS): Likewise.
18844         * config/picochip/picochip.h (RETURN_POPS_ARGS): Likewise.
18845         * config/rs6000/rs6000.h (RETURN_POPS_ARGS): Likewise.
18846         * config/rx/rx.h (RETURN_POPS_ARGS): Likewise.
18847         * config/s390/s390.h (RETURN_POPS_ARGS): Likewise.
18848         * config/score/score.h (RETURN_POPS_ARGS): Likewise.
18849         * config/sh/sh.h (RETURN_POPS_ARGS): Likewise.
18850         * config/sparc/sparc.h (RETURN_POPS_ARGS): Likewise.
18851         * config/spu/spu.h (RETURN_POPS_ARGS): Likewise.
18852         * config/stormy16/stormy16.h (RETURN_POPS_ARGS): Likewise.
18853         * config/v850/v850.h (RETURN_POPS_ARGS): Likewise.
18854         * config/xtensa/xtensa.h (RETURN_POPS_ARGS): Likewise.
18855         * config/i386/i386-protos.h (ix86_return_pops_args): Delete.
18856         * config/i386/i386.h (RETURN_POPS_ARGS): Delete.
18857         * config/i386/i386.c (ix86_return_pops_args): Make static.
18858         Constify arguments.
18859         (TARGET_RETURN_POPS_ARGS): Define.
18860         * config/m68k/m68k.h (RETURN_POPS_ARGS): Move to...
18861         * config/m68k/m68k.c (m68k_return_pops_args): ...here.  New function.
18862         (TARGET_RETURN_POPS_ARGS): Define.
18863         * config/vax/vax.h (RETURN_POPS_ARGS): Move to...
18864         * config/vax/vax.c (vax_return_pops_args): ...here.  New function.
18865         (TARGET_RETURN_POPS_ARGS): Define.
18866
18867 2010-06-29  Richard Guenther  <rguenther@suse.de>
18868
18869         PR middle-end/44667
18870         * tree-inline.c (initialize_inlined_parameters): Make sure
18871         to remap the inlined parameter variable substitutions types.
18872
18873 2010-06-29  Eric Botcazou  <ebotcazou@adacore.com>
18874
18875         PR rtl-optimization/44659
18876         * combine.c (make_compound_operation) <SUBREG>: Do not return the
18877         result of force_to_mode if it partially re-expanded the compound.
18878
18879 2010-06-28  Jan Hubicka  <jh@suse.cz>
18880
18881         PR middle-end/44671
18882         * ipa-split.c (test_nonssa_use, mark_nonssa_use): Check also uses of
18883         RESULT_DECL.
18884
18885 2010-06-28  Anatoly Sokolov  <aesok@post.ru>
18886
18887         * double-int.h (force_fit_type_double): Remove declaration.
18888         * double-int.c (force_fit_type_double): Move to tree.c.
18889         * tree.h (force_fit_type_double): Declare.
18890         * tree.h (force_fit_type_double): Moved from double-int.c. Use
18891         double_int type for 'cst' argument. Use double_int_fits_to_tree_p and
18892         double_int_to_tree instead of fit_double_type and build_int_cst_wide.
18893         * convert.c (convert_to_pointer): Adjust call to
18894         force_fit_type_double.
18895         * tree-vrp.c (extract_range_from_assert,
18896         extract_range_from_unary_expr): Adjust call to force_fit_type_double.
18897         * fold-const.c: Update comment.
18898         (int_const_binop, fold_convert_const_int_from_int,
18899         fold_convert_const_int_from_real, fold_convert_const_int_from_fixed,
18900         extract_muldiv_1, fold_div_compare, fold_sign_changed_comparison,
18901         fold_unary_loc, fold_negate_const, fold_abs_const, fold_not_const,
18902         round_up_loc): Adjust call to force_fit_type_double.
18903
18904 2010-06-28  Philipp Tomsich  <philipp.tomsich@theobroma-systems.com>
18905
18906         * config/rs6000/rs6000.h (PROCESSOR_TITAN): Declare.
18907
18908 2010-06-28  Martin Jambor  <mjambor@suse.cz>
18909
18910         * tree-sra.c (convert_callers): New parameter, change fndecls of
18911         recursive calls.
18912         (modify_function): Pass the old decl to convert_callers.
18913
18914 2010-06-28  Martin Jambor  <mjambor@suse.cz>
18915
18916         * ipa-cp.c (ipcp_init_cloned_node): Replace calls to
18917         ipa_check_create_node_params and ipa_initialize_node_params with
18918         checking asserts they are not necessary.
18919
18920 2010-06-28  Jan Hubicka  <jh@suse.cz>
18921
18922         PR tree-optimization/44687
18923         * ipa-split.c (split_function): Use DECL_RESULT to store return value.
18924
18925 2010-06-28  Martin Jambor  <mjambor@suse.cz>
18926
18927         PR c++/44535
18928         * gimple-fold.c (get_first_base_binfo_with_virtuals): New function.
18929         (gimple_get_relevant_ref_binfo): Use get_first_base_binfo_with_virtuals
18930         instead of BINFO_BASE_BINFO.
18931
18932 2010-06-28  Michael Matz  <matz@suse.de>
18933
18934         PR middle-end/44592
18935         * gimple-fold.c (gimplify_and_update_call_from_tree): Maintain
18936         proper VDEF chain for intermediate stores in the sequence.
18937
18938 2010-06-28  Jan Hubicka  <jh@suse.cz>
18939
18940         PR tree-optimization/44357
18941         * ipa-inline.c (add_new_edges_to_heap): Do not add edges to
18942         uninlinable functions.
18943
18944 2010-06-28  Philipp Tomsich  <philipp.tomsich@theobroma-systems.com>
18945
18946         * config.gcc (powerpc*-*-*): Handle titan.
18947         * config/rs6000/rs6000.c (titan_cost): New costs.
18948         (rs6000_override_options): Add "titan" to processor_target_table.
18949         Add Titan to branch alignment logic.
18950         Correctly set rs6000_cost for titan.
18951         * config/rs6000/rs6000.md (cpu): Add titan.  Include "titan.md".
18952         * config/rs6000/titan.md: New file.
18953         * doc/invoke.texi (RS/6000 and PowerPC Options): Document -mcpu=titan.
18954
18955 2010-06-28  Nathan Froyd  <froydnj@codesourcery.com>
18956
18957         * tree-browser.c (TB_history_stack): Convert to a VEC.
18958         (TB_SET_HEAD): Adjust for new type of TB_history_stack.
18959         (TB_history_prev): Likewise.
18960
18961 2010-06-28  Nathan Froyd  <froydnj@codesourcery.com>
18962
18963         * vec.h (vec_heap_free): Add parentheses around free.
18964
18965 2010-06-28  Steven Bosscher  <steven@gcc.gnu.org>
18966
18967         * system.h: Poison GCC_EXCEPT_H for front-end files.
18968
18969         * langhooks.h (struct lang_hooks): Add eh_protect_cleanup_actions
18970         langhook.
18971         * langhooks-def.h (LANG_HOOKS_EH_PROTECT_CLEANUP_ACTIONS) New.
18972         Define to NULL by default.
18973         * except.h: Define GCC_EXCEPT_H.
18974         (doing_eh): Remove prototype.
18975         (init_eh, init_eh_for_function): Move prototypes to toplev.h.
18976         (lang_protect_cleanup_actions): Remove.
18977         * except.c (lang_protect_cleanup_actions): Remove.
18978         (doing_eh): Remove.
18979         (gen_eh_region): Don't check doing_eh here.
18980         * toplev.h (init_eh, init_eh_for_function_): Moved from except.h.
18981         * tree-eh.c (honor_protect_cleanup_actions): Use new langhook
18982         instead of lang_protect_cleanup_actions.
18983         * omp-low.c (maybe_catch_exception): Likewise.
18984         * Makefile.in: Update dependencies.
18985
18986 2010-06-28  Bingfeng Mei  <bmei@broadcom.com>
18987
18988         * cgraph.h (struct varpool_node): new used_from_object_file flag.
18989         (struct cgraph_local_info): new used_from_object_file flag.
18990         * cgraph.c (dump_cgraph_node): dump used_from_object_file flag.
18991         (cgraph_clone_node): initialize used_from_object_file.
18992         (cgraph_create_virtual_clone): initialize used_from_object_file.
18993         * lto-symbtab.c (lto_symtab_merge_decls_1): Set
18994         used_from_object_file flags for symbols of LDPR_PREVAILING_DEF
18995         when compiling with -fwhole-program.
18996         (lto_symtab_resolve_symbols) Use LDPR_PREVAILING_DEF_IRONLY for
18997         internal resolver.
18998         * ipa.c (function_and_variable_visibility): Set externally_visible
18999         flag of varpool_node if used_from_object_file flag is set.
19000         (cgraph_externally_visible_p): check used_from_object_file flag.
19001         * doc/invoke.texi (-fwhole-program option): Change description of
19002         externally_visible attribute accordingly.
19003         * doc/extend.texi (externally_visible): Ditto.
19004
19005 2010-06-27  Jan Hubicka  <jh@suse.cz>
19006
19007         * params.def (max-inline-insns-auto): Default to 40.
19008         * doc/invoke.texi (max-inline-insns-auto): Document the change.
19009
19010 2010-06-27  Jan Hubicka  <jh@suse.cz>
19011
19012         PR middle-end/44671
19013         PR middle-end/44686
19014         * tree.c (build_function_decl_skip_args): Clear DECL_BUILT_IN on
19015         signature change.
19016         * ipa-split.c (split_function): Always clear DECL_BUILT_IN.
19017         * ipa-prop.c (ipa_modify_formal_parameters): Likewise.
19018
19019 2010-06-27  Anatoly Sokolov  <aesok@post.ru>
19020
19021         * target.h (struct gcc_target): Add register_move_cost field.
19022         * target-def.h (TARGET_REGISTER_MOVE_COST): New.
19023         (TARGET_INITIALIZER): Use TARGET_REGISTER_MOVE_COST.
19024         * targhooks.c (default_register_move_cost): New function.
19025         * targhooks.h (default_register_move_cost): Declare function.
19026         * defaults.h (REGISTER_MOVE_COST): Delete.
19027         * ira-int.h (ira_register_move_cost): Update comment.
19028         * ira.c (ira_register_move_cost): Update comment.
19029         * reload.h (register_move_cost): Declare.
19030         * reginfo.c (register_move_cost): New function.
19031         (move_cost): Update comment.
19032         (init_move_cost, memory_move_secondary_cost): Replace
19033         REGISTER_MOVE_COST with register_move_cost.
19034         * postreload.c (reload_cse_simplify_set): (Ditto.).
19035         * reload.c (find_valid_class, find_reloads): (Ditto.).
19036         * reload1.c (choose_reload_regs): (Ditto.).
19037         * doc/tm.texi (TARGET_REGISTER_MOVE_COST): New.
19038         (REGISTER_MOVE_COST, TARGET_MEMORY_MOVE_COST): Update documentation.
19039         * doc/md.texi (can_create_pseudo_p): Update documentation.
19040
19041         * config/i386/i386.h (MEMORY_MOVE_COST): Remove macro.
19042         * config/i386/i386-protos.h (int ix86_memory_move_cost): Remove.
19043         * config/i386/i386.h (ix86_memory_move_cost): Make static.
19044         (TARGET_MEMORY_MOVE_COST): Define.
19045
19046         * config/ia64/ia64.h (MEMORY_MOVE_COST): Remove macro.
19047         * config/ia64/ia64-protos.h (int ia64_memory_move_cost): Remove.
19048         * config/ia64/ia64.h (ia64_memory_move_cost): Make static.
19049         (TARGET_MEMORY_MOVE_COST): Define.
19050
19051 2010-06-27  Richard Guenther  <rguenther@suse.de>
19052
19053         PR tree-optimization/44683
19054         * tree-ssa-dom.c (record_edge_info): Record equivalences for the
19055         false edge from the inverted condition.
19056
19057 2010-06-27  Richard Guenther  <rguenther@suse.de>
19058
19059         PR middle-end/44684
19060         * tree-ssa-alias.c (refs_may_alias_p_1): Allow SSA name refs.
19061         (stmt_may_clobber_ref_p_1): Do not bother to call the oracle
19062         for register LHS.  Or non-store assignments.
19063
19064 2010-06-26  Eric Botcazou  <ebotcazou@adacore.com>
19065
19066         * config/sparc/sparc.c (sparc_emit_set_const32): Make static.
19067         (sparc_emit_set_const64): Likewise.  Remove disabled code.
19068         * config/sparc/sparc-protos.h (sparc_emit_set_const32): Delete.
19069         (sparc_emit_set_const64): Likewise.
19070
19071 2010-06-26  Catherine Moore  <clm@codesourcery.com>
19072
19073         * config/mips/mips.md (alu_type): New attribute.
19074         (type): Infer type from alu_type.
19075         (*add<mode>3, *add<mode>3_mips16, *addsi3_extended,
19076         *baddu_si_eb, *baddu_si_el, *baddu_di, sub<mode>3,
19077         *subsi3_extended, negsi2, negdi2, *low<mode>,
19078         *low<mode>_mips16, *ior<mode>3, *ior<mode>3_mips16,
19079         xor<mode>3, *nor<mode>3,
19080         *zero_extend<GPR:mode>_trunc<SHORT:mode>,
19081         *zero_extendhi_truncqi):  Set alu_type instead of type.
19082
19083 2010-06-26  Douglas B Rupp  <rupp@gnat.com>
19084
19085         * config/alpha/alpha.c (alpha_need_linkage): Adjust
19086         splay_tree_new_ggc call.
19087         (alpha_use_linkage): Likewise.
19088
19089 2010-06-26  Joseph Myers  <joseph@codesourcery.com>
19090
19091         * collect2.c (main): Remove SWITCHES_NEED_SPACES conditional.
19092         * doc/tm.texi (SWITCHES_NEED_SPACES): Don't document.
19093         * gcc.c (SWITCHES_NEED_SPACES, switches_need_spaces): Remove.
19094         (static_specs): Remove switches_need_spaces.
19095         (process_command, do_self_spec): Hardcode handling "-o" instead of
19096         checking switches_need_spaces.
19097         * system.h (SWITCHES_NEED_SPACES): Poison.
19098
19099 2010-06-26  Richard Guenther  <rguenther@suse.de>
19100
19101         PR tree-optimization/44393
19102         * tree-loop-distribution.c (generate_loops_for_partition): Fix
19103         stmt removal and VOP renaming.
19104         (generate_memset_zero): Remove redundant stmt updating.
19105         * tree-flow.h (mark_virtual_ops_in_bb): Remove.
19106         * tree-cfg.c (mark_virtual_ops_in_bb): Likewise.
19107
19108 2010-06-26  Jan Hubicka  <jh@suse.cz>
19109
19110         * ipa-split.c (consider_split): PHI in entry block is OK as long as all
19111         edges comming from header are equivalent.
19112         (visit_bb): Handle PHIs correctly.
19113         * tree-inline.c (copy_phis_for_bb): Be able to copy
19114         PHI from entry edge.
19115         (copy_cfg_body): Produce edge from entry BB before copying PHIs.
19116
19117 2010-06-26  Richard Guenther  <rguenther@suse.de>
19118
19119         PR middle-end/44674
19120         * tree-ssa-alias.c (refs_may_alias_p_1): Allow all kind of
19121         decls.  Handle LABEL_DECLs like FUNCTION_DECLs.
19122
19123 2010-06-26  Joseph Myers  <joseph@codesourcery.com>
19124
19125         * gcc.c (n_switches_alloc, n_infiles_alloc, alloc_infile,
19126         add_infile, alloc_switch): New.
19127         (process_command): Remove variable lang_n_infiles.  Process
19128         options in a single pass.  Use new functions for allocating
19129         infiles and switches arrays.  Properly skip operands of
19130         -Xpreprocessor and -Xassembler.
19131
19132 2010-06-26  Jan Hubicka  <jh@suse.cz>
19133
19134         PR middle-end/44671
19135         * cgraphunit.c (cgraph_function_versioning): Remove wrong
19136         cgraph_make_decl_local call; fix typo copying RTL data.
19137
19138 2010-06-25  DJ Delorie  <dj@redhat.com>
19139
19140         * config/m32c/m32c-protos.h (m32c_note_pragma_address): Declare.
19141         (m32c_output_aligned_common): Likewise.
19142         * config/m32c/m32c.h (ASM_OUTPUT_ALIGNED_DECL_COMMON): New.
19143         (ASM_OUTPUT_ALIGNED_DECL_LOCAL): New.
19144         * config/m32c/m32c-pragma.c (m32c_pragma_address): New.
19145         (m32c_register_pragmas): Register it.
19146         * config/m32c/m32c.c (m32c_get_pragma_address): New.
19147         (m32c_insert_attributes): Set #pragma address decls volatile.
19148         (pragma_entry_eq): New.
19149         (pragma_entry_hash): New.
19150         (m32c_note_pragma_address): New.
19151         (m32c_get_pragma_address): New.
19152         (m32c_output_aligned_common): New.
19153         * doc/extend.texi: Document the new pragma.
19154
19155         * config/m32c/m32c.c (m32c_illegal_subreg_p): Reject illegal MEMs
19156         also.
19157         * config/m32c/predicates.md (m32c_any_operand): Check the code
19158         instead of memory_operand so as to allow matching volatile MEMs.
19159         (m32c_nonimmediate_operand): Likewise.
19160         (mra_operand): Allow volatiles.
19161
19162 2010-06-25  Alexandre Oliva  <aoliva@redhat.com>
19163
19164         PR debug/44610
19165         * simplify-rtx.c (delegitimize_mem_from_attrs): Don't use a base
19166         address if the offset is unknown.
19167
19168 2010-06-25  Douglas B Rupp  <rupp@gnat.com>
19169
19170         * dwarf2out.c (dwarf2out_vms_debug_main_pointer): New function.
19171         * dwarf2out.h (dwarf2out_vms_debug_main_pointer): Declare new function.
19172         * config/ia64/ia64-protos.h (ia64_start_function): Declare.
19173         * config/ia64/sysv4.h (ASM_DECLARE_FUNCTION_NAME): Move contents
19174         to ia64_start_function. Invoke it.
19175         * config/ia64/ia64.c (ia64_start_function): Call new function
19176         dwarf2out_vms_debug_main_pointer.
19177
19178 2010-06-25  Sebastian Pop  <sebastian.pop@amd.com>
19179
19180         * tree-if-conv.c (insert_gimplified_predicates): Do not insert
19181         statements computing the true predicate.
19182
19183 2010-06-25  Sebastian Pop  <sebastian.pop@amd.com>
19184
19185         * tree-if-conv.c (init_bb_predicate): Initialize the predicate
19186         to boolean_true_node.
19187         (reset_bb_predicate): New.
19188         (predicate_bbs): Call reset_bb_predicate.
19189
19190 2010-06-25  Sebastian Pop  <sebastian.pop@amd.com>
19191
19192         * tree-if-conv.c (combine_blocks): Remove FIXME comment.
19193         (tree_if_conversion): Returns true when something has been changed.
19194         (main_tree_if_conversion): Return TODO_cleanup_cfg when if-conversion
19195         changed something.
19196
19197 2010-06-25  Sebastian Pop  <sebastian.pop@amd.com>
19198
19199         * Makefile.in (tree-if-conv.o): Depends on DBGCNT_H.
19200         * dbgcnt.def (if_conversion_tree): New DEBUG_COUNTER.
19201         * tree-if-conv.c: Include dbgcnt.h.
19202         (tree_if_conversion): Use if_conversion_tree to count the number of
19203         if-convertible loops.
19204
19205 2010-06-25  Changpeng Fang  <changpeng.fang@amd.com>
19206
19207         * common.opt (fprefetch-loop-arrays): Re-define
19208         -fprefetch-loop-arrays as a tri-state option with the initial
19209         value of -1.
19210         * tree-ssa-loop.c (gate_tree_ssa_loop_prefetch): Invoke prefetch
19211         pass only when flag_prefetch_loop_arrays > 0.
19212         * toplev.c (process_options): Note that, with tri-states,
19213         flag_prefetch_loop_arrays>0 means prefetching is enabled.
19214         * config/i386/i386.c (override_options): Enable prefetching at -O3
19215         for a set of CPUs that sw prefetching is helpful.
19216         (software_prefetching_beneficial_p): New.  Return TRUE if software
19217         prefetching is beneficial for the given CPU.
19218
19219 2010-06-25  H.J. Lu  <hongjiu.lu@intel.com>
19220
19221         PR rtl-optimization/44326
19222         * implicit-zee.c (find_removable_zero_extends): Replace
19223         INSN_P with NONDEBUG_INSN_P.
19224
19225 2010-06-25  Martin Jambor  <mjambor@suse.cz>
19226
19227         * ipa-prop.h (struct ipa_param_descriptor): Removed the modified flag.
19228         (struct ipa_node_params): Removed the modification_analysis_done flag.
19229         (ipa_is_param_modified): Removed.
19230         (ipa_analyze_node): Declare.
19231         (ipa_compute_jump_functions): Remove declaration.
19232         (ipa_count_arguments): Likewise.
19233         (ipa_detect_param_modifications): Likewise.
19234         (ipa_analyze_params_uses): Likewise.
19235         * ipa-prop.c (struct param_analysis_info): New type.
19236         (visit_store_addr_for_mod_analysis): Removed.
19237         (visit_load_for_mod_analysis): Renamed to visit_ref_for_mod_analysis,
19238         moved down in the file.
19239         (ipa_detect_param_modifications): Merged into ipa_analyze_params_uses.
19240         (ipa_count_arguments): Made static.
19241         (mark_modified): New function.
19242         (is_parm_modified_before_call): New function.
19243         (compute_pass_through_member_ptrs): New parameter parms_info, call
19244         is_parm_modified_before_call instead of ipa_is_param_modified.
19245         (ipa_compute_jump_functions_for_edge): New parameter parms_info, pass
19246         it to compute_pass_through_member_ptrs.
19247         (ipa_compute_jump_functions): New parameter parms_info, pass it to
19248         ipa_compute_jump_functions_for_edge.  Call ipa_initialize_node_params
19249         on the callee if it is analyzed.  Made static.
19250         (ipa_analyze_indirect_call_uses): New parameter parms_info, call
19251         is_parm_modified_before_call instead of ipa_is_param_modified.
19252         (ipa_analyze_call_uses): New parameter parms_info, pass it to
19253         ipa_analyze_indirect_call_uses.
19254         (ipa_analyze_stmt_uses): New parameter parms_info, pass it to
19255         ipa_analyze_call_uses.
19256         (ipa_analyze_params_uses): New parameter parms_info, pass it to
19257         ipa_analyze_stmt_uses.  Also perform the used analysis.  Made static.
19258         (ipa_analyze_node): New function.
19259         (ipa_print_node_params): Do not dump the modified flag.
19260         (ipa_write_node_info): Assert uses_analysis_done rather than streaming
19261         it.  Do not stream the modified parameter flag.
19262         (ipa_read_node_info): Set uses_analysis_done to 1 instead of streaming
19263         it.  Do not stream the modified parameter flag.
19264         * ipa-cp.c (ipcp_analyze_node): Removed.
19265         (ipcp_init_stage): Iterate only once over the nodes, analyze each one
19266         with only a call to ipa_analyze_node.
19267         * ipa-inline.c (inline_indirect_intraprocedural_analysis): Analyze the
19268         node with only a call to ipa_analyze_node.
19269
19270 2010-06-25  Manuel López-Ibáñez  <manu@gcc.gnu.org>
19271
19272         * doc/invoke.texi (-Wsuggest-attribute): Add item for noreturn.
19273
19274 2010-06-25  Jan Hubicka  <jh@suse.cz>
19275
19276         * tree-pass.h (pass_split_functions): Declare.
19277         * opts.c (decode_options): Enable function splitting at -O2
19278         * timevar.def (TV_IPA_FNSPLIT): New macro.
19279         * ipa-split.c: New file.
19280         * common.opt (-fpartial-inlining): New flag.
19281         * Makefile.in (ipa-split.o): New object file.
19282         * passes.c (init_optimization_passes): Add ipa-split.
19283         * params.def (partial-inlining-entry-probability): New parameters.
19284         * doc/invoke.texi (-fpartial-inlining): New.
19285
19286 2010-06-25  Manuel López-Ibáñez  <manu@gcc.gnu.org>
19287
19288         PR 44665
19289         * tree-inline.c (gimple_expand_calls_inline): Fix typo in comment.
19290         * gimplify.c (is_gimple_reg_rhs_or_call): Likewise.
19291         (gimplify_expr): Likewise.
19292
19293 2010-06-25  Martin Jambor  <mjambor@suse.cz>
19294
19295         * ipa-prop.c (determine_cst_member_ptr): Ignore non-clobbering
19296         statements instead of bailing out on them.
19297         (ipa_analyze_indirect_call_uses): Do not require that loads from the
19298         parameter are in the same BB as the condition.  Update comments.
19299
19300 2010-06-25  Jakub Jelinek  <jakub@redhat.com>
19301
19302         PR middle-end/43866
19303         * tree-ssa-loop-unswitch.c (tree_may_unswitch_on): If stmt is always
19304         true or always false, return NULL_TREE.
19305         (tree_unswitch_single_loop): Optimize conditions even when reaching
19306         max-unswitch-level parameter.  If num > 0, optimize first all conditions
19307         using entry checks, then do still reachable block discovery and consider
19308         only conditions in still reachable basic blocks in the loop.
19309
19310         PR tree-optimization/44539
19311         * tree-cfgcleanup.c (fixup_noreturn_call): Call update_stmt even when
19312         the call doesn't have LHS, but has VDEF.
19313
19314 2010-06-25  Joseph Myers  <joseph@codesourcery.com>
19315
19316         * config/pa/pa.h (MODIFY_TARGET_NAME): Remove.
19317         * doc/tm.texi (MODIFY_TARGET_NAME): Don't document.
19318         * gcc.c (enum add_del, struct modify_target, modify_target): Remove.
19319         (process_command): Remove code conditional on MODIFY_TARGET_NAME.
19320         * system.h (MODIFY_TARGET_NAME): Poison.
19321
19322 2010-06-25  Alan Modra  <amodra@gmail.com>
19323
19324         * doc/invoke.texi: Delete mcmodel=medium from powerpc options.
19325         * config/rs6000/rs6000.h (enum rs6000_cmodel): Delete CMODEL_MEDIUM.
19326         * config/rs6000/linux64.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Set
19327         CMODEL_LARGE as default.
19328         * config/rs6000/rs6000.c (rs6000_handle_option): Remove mcmodel=medium.
19329         (offsettable_ok_by_alignment): Delete.
19330         (rs6000_emit_move): Remove mcmodel=medium optimization.
19331
19332 2010-06-25  Bernd Schmidt  <bernds@codesourcery.com>
19333
19334         With large parts from Jim Wilson:
19335         PR target/43902
19336         * tree-pretty-print.c (dump_generic_node, op_code_prio): Add
19337         WIDEN_MULT_PLUS_EXPR and WIDEN_MULT_MINUS_EXPR.
19338         * optabs.c (optab_for_tree_code): Likewise.
19339         (expand_widen_pattern_expr): Likewise.
19340         * tree-ssa-math-opts.c (convert_mult_to_widen): New function, broken
19341         out of execute_optimize_widening_mul.
19342         (convert_plusminus_to_widen): New function.
19343         (execute_optimize_widening_mul): Use the two new functions.
19344         * expr.c (expand_expr_real_2): Add support for GIMPLE_TERNARY_RHS.
19345         Remove code to generate widening multiply-accumulate.  Add support
19346         for WIDEN_MULT_PLUS_EXPR and WIDEN_MULT_MINUS_EXPR.
19347         * gimple-pretty-print.c (dump_ternary_rhs): New function.
19348         (dump_gimple_assign): Call it when appropriate.
19349         * tree.def (WIDEN_MULT_PLUS_EXPR, WIDEN_MULT_MINUS_EXPR): New codes.
19350         * cfgexpand.c (gimple_assign_rhs_to_tree): Likewise.
19351         (expand_gimple_stmt_1): Likewise.
19352         (expand_debug_expr): Support WIDEN_MULT_PLUS_EXPR and
19353         WIDEN_MULT_MINUS_EXPR.
19354         * tree-ssa-operands.c (get_expr_operands): Likewise.
19355         * tree-inline.c (estimate_operator_cost): Likewise.
19356         * gimple.c (extract_ops_from_tree_1): Renamed from
19357         extract_ops_from_tree.  Add new arg for a third operand; fill it.
19358         (gimple_build_assign_stat): Support operations with three operands.
19359         (gimple_build_assign_with_ops_stat): Likewise.
19360         (gimple_assign_set_rhs_from_tree): Likewise.
19361         (gimple_assign_set_rhs_with_ops_1): Renamed from
19362         gimple_assign_set_rhs_with_ops.  Add new arg for a third operand.
19363         (get_gimple_rhs_num_ops): Support GIMPLE_TERNARY_RHS.
19364         (get_gimple_rhs_num_ops): Handle WIDEN_MULT_PLUS_EXPR and
19365         WIDEN_MULT_MINUS_EXPR.
19366         * gimple.h (enum gimple_rhs_class): Add GIMPLE_TERNARY_RHS.
19367         (extract_ops_from_tree_1): Adjust declaration.
19368         (gimple_assign_set_rhs_with_ops_1): Likewise.
19369         (gimple_build_assign_with_ops): Pass NULL for last operand.
19370         (gimple_build_assign_with_ops3): New macro.
19371         (gimple_assign_rhs3, gimple_assign_rhs3_ptr, gimple_assign_set_rhs3,
19372         gimple_assign_set_rhs_with_ops, extract_ops_from_tree): New inline
19373         functions.
19374         * tree-cfg.c (verify_gimple_assign_ternary): New static function.
19375         (verify_gimple_assign): Call it.
19376         * doc/gimple.texi (Manipulating operands): Document GIMPLE_TERNARY_RHS.
19377         (Tuple specific accessors, subsection GIMPLE_ASSIGN): Document new
19378         functions for dealing with three-operand statements.
19379         * tree.c (commutative_ternary_tree_code): New function.
19380         * tree.h (commutative_ternary_tree_code): Declare it.
19381         * tree-vrp.c (gimple_assign_nonnegative_warnv_p): Return false for
19382         ternary statements.
19383         (gimple_assign_nonzero_warnv_p): Likewise.
19384         * tree-ssa-sccvn.c (stmt_has_constants): Handle GIMPLE_TERNARY_RHS.
19385         * tree-ssa-ccp.c (get_rhs_assign_op_for_ccp): New static function.
19386         (ccp_fold): Use it.  Handle GIMPLE_TERNARY_RHS.
19387         * tree-ssa-dom.c (enum expr_kind): Add EXPR_TERNARY.
19388         (struct hashtable_expr): New member ternary in the union.
19389         (initialize_hash_element): Handle GIMPLE_TERNARY_RHS.
19390         (hashable_expr_equal_p): Fix indentation.  Handle EXPR_TERNARY.
19391         (iterative_hash_hashable_expr): Likewise.
19392         (print_expr_hash_elt): Handle EXPR_TERNARY.
19393         * gimple-fold.c (fold_gimple_assign): Handle GIMPLE_TERNARY_RHS.
19394         * tree-ssa-threadedge.c (fold_assignment_stmt): Remove useless break
19395         statements.  Handle GIMPLE_TERNARY_RHS.
19396
19397 2010-06-25  Jan Hubicka  <jh@suse.cz>
19398
19399         * doc/invoke.texi (-Wsuggest-attribute): Add noreturn.
19400
19401 2010-06-25  Shujing Zhao  <pearly.zhao@oracle.com>
19402
19403         PR c/44517
19404         * c-parser.c (c_parser_parms_list_declarator): Return NULL if one of
19405         parameters are not good.
19406         (c_parser_parameter_declaration): Error unknown type name if the type
19407         name can't start declaration specifiers.
19408
19409 2010-06-25  Joseph Myers  <joseph@codesourcery.com>
19410
19411         * gcc.c (translate_options): Don't mention +e in comment.
19412         (process_command): Don't handle +e specially.
19413
19414 2010-06-25  Bernd Schmidt  <bernds@codesourcery.com>
19415
19416         * ira.c (allocno_pool, copy_pool, allocno_live_range_pool): Delete.
19417
19418         * ira-build.c (merge_hard_reg_conflicts): New function.
19419         (create_cap_allocno, copy_info_to_removed_store_destinations,
19420         propagate_some_info_from_allocno, propagate_allocno_info): Use it.
19421         (move_allocno_live_ranges, copy_allocno_live_ranges): New functions.
19422         (remove_unnecessary_allocnos, remove_low_level_allocnos)
19423         copy_nifo_to_removed_store_destination): Use them.
19424         * ira-lives.c (make_hard_regno_born): New function, split out of
19425         make_regno_born.
19426         (make_allocno_born): Likewise.
19427         (make_hard_regno_dead): New function, split out of make_regno_dead.
19428         (make_allocno_dead): Likewise.
19429         (inc_register_pressure): New function, split out of set_allocno_live.
19430         (dec_register_pressure): New function, split out of clear_allocno_live.
19431         (mark_pseudo_regno_live): New function, split out of mark_reg_live.
19432         (mark_hard_reg_live): Likewise.  Use inc_register_pressure.
19433         (mark_pseudo_regno_dead): New function, split out of mark_reg_dead.
19434         (mark_hard_reg_dead): Likewise.  Use dec_register_pressure.
19435         (make_pseudo_conflict): Use mark_pseudo_regno_dead and
19436         mark_pseudo_regno_live.
19437         (process_bb_node_lives): Use mark_pseudo_regno_live,
19438         make_hard_regno_born and make_allocno_dead.
19439         (make_regno_born, make_regno_dead, mark_reg_live, mark_reg_dead,
19440         set_allocno_live, clear_allocno_live): Delete functions.
19441
19442         * ira-int.h (ira_parent_allocno, ira_parent_or_cap_allocno): Declare.
19443         * ira-build.c (ira_parent_allocno, ira_parent_or_cap_allocno): New
19444         functions.
19445         (ira_flattening): Use ira_parent_allocno.
19446         * ira-conflicts.c (process_regs_for_copy, propagate_copies)
19447         build_allocno_conflicts): Use ira_parent_or_cap_allocno.
19448
19449         * ira-color.c (assign_hard_reg): Improve formatting of multi-line for
19450         statement.
19451
19452         * ira-int.h (SET_MINMAX_SET_BIT, CLEAR_MINMAX_SET_BIT,
19453         TEST_MINMAX_SET_BIT, minmax_set_iterator, minmax_set_iter_init,
19454         minmax_set_iter_cond, minmax_set_iter_next,
19455         FOR_EACH_BIT_IN_MINMAX_SET): Renamed from SET_ALLOCNO_SET_BIT,
19456         CLEAR_ALLOCNO_SET_BIT, TEST_ALLOCNO_SET_BIT, ira_allocno_set_iterator,
19457         ira_allocno_set_iter_init, ira_allocno_set_iter_cond,
19458         ira_allocno_set_iter_Next and FOR_EACH_ALLOCNO_IN_ALLOCNO_SET.  All
19459         uses changed.
19460
19461         * ira-int.h (struct live_range, live_range_t): Renamed from struct
19462         ira_allocno_live_range and allocno_live_range_t; all uses changed.
19463         * ira-build.c (live_range_pool): Renamed from allocno_live_range_pool.
19464         All uses changed.
19465
19466 2010-06-24  Richard Earnshaw  <rearnsha@arm.com>
19467
19468         * thumb2.md (thumb2_tlobits_cbranch): Delete.
19469         (peephole2 to convert zero_extract/compare of single bit to
19470          lshift/compare): New.
19471
19472 2010-06-24  Anatoly Sokolov  <aesok@post.ru>
19473
19474         * fold-const.c (const_binop): Remove 'notrunc' argement. Adjust
19475         recursive call and call to 'int_const_binop'.
19476         (build_range_check, fold_cond_expr_with_comparison, unextend,
19477         fold_truthop, extract_muldiv_1, fold_comparison, fold_binary_loc,
19478         multiple_of_p): Adjust call to const_binop.
19479
19480 2010-06-24  Uros Bizjak  <ubizjak@gmail.com>
19481
19482         * config/i386/i386.md (XFmode push splitter): Use GET_MODE_SIZE to
19483         determine size of XFmode operand.
19484         (XFmode extended DFmode push splitter): Ditto.
19485         (XFmode extended SFmode push splitter): Ditto.
19486
19487 2010-06-24  H.J. Lu  <hongjiu.lu@intel.com>
19488
19489         PR target/44588
19490         * config/i386/i386.md (extract_code): New.
19491         (<u>divmodqi4): Likewise.
19492         (divmodhiqi3): Likewise.
19493         (udivmodhiqi3): Likewise.
19494         (<u>divqi3): Remvoved.
19495
19496 2010-06-24  Jakub Jelinek  <jakub@redhat.com>
19497
19498         PR middle-end/44492
19499         * recog.h (struct recog_data): Add is_asm field.
19500         * recog.c (asm_operand_ok, constrain_operands): If neither < nor > is
19501         present in constraints of inline-asm operand and memory operand
19502         contains {PRE,POST}_{INC,DEC,MODIFY}, return 0.
19503         (extract_insn): Initialize recog_data.is_asm.
19504         * doc/md.texi (Constraints): Document operand side-effect rules.
19505
19506 2010-06-24  Andi Kleen  <ak@linux.intel.com>
19507
19508         * c-parser.c (c_parser_conditional_expression): Call
19509         warn_for_omitted_condop.
19510         * doc/invoke.texi: Document omitted condop warning.
19511
19512 2010-06-24  Nick Clifton<nickc@redhat.com>
19513
19514         * loop-unswitch.c (compare_and_jump_seq): Assert that the last
19515         insn in the sequence is a jump insn before setting its label.
19516
19517 2010-06-24  Alan Modra  <amodra@gmail.com>
19518
19519         * collect2.c (main): Match exactly --version and --help.
19520
19521 2010-06-24  DJ Delorie  <dj@redhat.com>
19522
19523         * config/m32c/m32c-pragma.c: Don't include rtl.h.
19524
19525 2010-06-23  Uros Bizjak  <ubizjak@gmail.com>
19526
19527         * config/i386/i386.md (mov<mode>): Macroize expander from mov{sf,df,xf}
19528         using X87MODEF mode iterator.
19529         (pushsf splitter): Macroize splitter using P mode iterator.
19530         (*swap<mode>): Macroize insn from *swap{sf,df} using MODEF
19531         mode iterator.
19532
19533         (*movxf_internal): Rename from *movxf_integer.
19534         (*movxf_internal_nointeger): Rename from *movxf_nointeger.
19535         (*movdf_internal_rex64): Rename from *movdf_integer_rex64.
19536         (*movdf_internal): Rename from *movdf_integer.
19537         (*movdf_internal_nointeger): Rename from *movdf_nointeger.
19538         (*movsf_internal): Rename from *movdf_1.
19539
19540 2010-06-23  Basile Starynkevitch  <basile@starynkevitch.net>
19541
19542         * coretypes.h (gimple_seq_node_d, gimple_seq_node)
19543         (const_gimple_seq_node): Removed typedefs.
19544
19545         * gimple.h (gimple_seq_node_d, gimple_seq_node)
19546         (const_gimple_seq_node): Added typedefs moved from coretypes.h.
19547
19548 2010-06-23  H.J. Lu  <hongjiu.lu@intel.com>
19549
19550         * config/i386/i386.c (bdesc_args): Replace CODE_FOR_avx_si_si256,
19551         CODE_FOR_avx_ps_ps256 and CODE_FOR_avx_pd_pd256 with
19552         CODE_FOR_vec_extract_lo_v8si, CODE_FOR_vec_extract_lo_v8sf
19553         and CODE_FOR_vec_extract_lo_v4df.
19554
19555         * config/i386/sse.md (vec_extract_lo_<AVX256MODE4P:mode>):
19556         Changed to define_insn_and_split.
19557         (vec_extract_lo_<AVX256MODE8P:mode>): Likewise.
19558         (vec_extract_lo_v16hi): Likewise.
19559         (vec_extract_lo_v32qi): Likewise.
19560         (avx_<avxmodesuffixp><avxmodesuffix>_<avxmodesuffixp>): Likewise.
19561         (avx_<avxmodesuffixp>_<avxmodesuffixp><avxmodesuffix>): Removed.
19562
19563 2010-06-23  Joern Rennecke  <joern.rennecke@embecosm.com>
19564
19565         PR target/44640
19566         * config/spu/spu-protos.h (spu_expand_epilogue) Use bool.
19567         * config/spu/spu.c (spu_scalar_mode_supported_p): Declare with bool.
19568         (spu_vector_mode_supported_p, spu_handle_fndecl_attribute): Likewise.
19569         (spu_handle_vector_attribute, spu_pass_by_reference): Likewise.
19570         (spu_rtx_costs, spu_function_ok_for_sibcall): Likewise.
19571
19572         PR target/44640
19573         * config/spu/spu.c (ea_load_store_inline): Use add_reg_note.
19574
19575         PR other/44644
19576         * df-core.c (struct df): Rename to df_d.
19577         * df.h (struct df): Likewise.
19578         * dse.h (struct df): Remove forward declaration.
19579         * recog.h (struct insn_data): Rename to:
19580         (struct_insn_data_d).  Adjusted all users.
19581
19582 2010-06-23  Arnaud Charlet  <charlet@adacore.com
19583
19584         PR ada/22220
19585         * doc/install.texi: Update requirements to build GNAT.
19586
19587 2010-06-22  Andreas Schwab  <schwab@linux-m68k.org>
19588
19589         * config/m68k/m68k.c (m68k_output_addr_const_extra): Add cast to
19590         enum type.
19591         (m68k_sched_attr_opx_type): Remove unreachable return.
19592         (m68k_sched_attr_opy_type): Likewise.
19593         (m68k_sched_attr_size): Likewise.
19594         (sched_get_opxy_mem_type): Likewise.
19595         (m68k_sched_attr_op_mem): Likewise.
19596
19597 2010-06-22  Eric Botcazou  <ebotcazou@adacore.com>
19598
19599         * cgraphunit.c (cgraph_redirect_edge_call_stmt_to_callee): Chain the
19600         new statement and adjust VDEF only if necessary.  Remove superfluous
19601         call to maybe_clean_or_replace_eh_stmt.
19602         * gimple.c (gimple_call_copy_skip_args): Use gimple_call_copy_flags to
19603         copy the flags.
19604         * gimple-iterator.c (gsi_replace): Clear BB of old statement here...
19605         * tree-inline.c (copy_bb): ...and not there.
19606
19607 2010-06-22  Cary Coutant  <ccoutant@google.com>
19608
19609         * dwarf2out.c (is_nested_in_subprogram): New function.
19610         (should_move_die_to_comdat): Use it.
19611         (copy_ancestor_tree): Don't mark DIEs here.
19612         (copy_decls_walk): Start walk from root of newly-added tree;
19613         mark DIEs here instead.
19614
19615 2010-06-22  H.J. Lu  <hongjiu.lu@intel.com>
19616
19617         * config/i386/i386.md (unit): Also check sseishft1.
19618
19619 2010-06-22  Jan Hubicka  <jh@suse.cz>
19620
19621         * gimple.h (gimple_expr_code): Do checking on when gimple checking is
19622         enabled.
19623
19624 2010-06-22  Jan Hubicka  <jh@suse.cz>
19625
19626         * df-problems.c (df_rd_confluence_n, df_lr_confluence_n,
19627         df_live_confluence_n, df_byte_lr_confluence_n, df_md_confluence_n):
19628         Return true if something changed.
19629         * df.h (df_confluence_function_n): Return bool.
19630         * df-core.c (df_worklist_propagate_forward,
19631         df_worklist_propagate_backward): Track changes and ages.
19632         (df_worklist_dataflow_doublequeue): Use bitmap iterator for main walk;
19633         track ages.
19634         * dse.c (dse_confluence_n): Return always true.
19635
19636 2010-06-22  Jan Hubicka  <jh@suse.cz>
19637
19638         * bitmap.c (bitmap_clear_bit): Micro optimize.
19639
19640 2010-06-22  Uros Bizjak  <ubizjak@gmail.com>
19641
19642         * config/i386/i386.md (SWI1248x): New mode iterator.
19643         (SWI48x): Ditto.
19644         (SWI12): Ditto.
19645         (SWI24): Ditto.
19646
19647         (mov<mode>): Macroize expander from mov{qi,hi,si,di} using
19648         SWI1248x mode iterator.
19649         (*push<mode>2_rex64): Macroize insn from *push{qi,hi,si}_rex64
19650         using SWI124 mode iterator.
19651         (*push<mode>2): Macroize insn from *push{qi,hi} using SWI12
19652         mode iterator.
19653         (*push<mode>2_prologue): Macroize insn from  *pushsi2_prologue and
19654         *pushdi2_prologue_rex64 using P mode iterator.
19655         (*mov<mode>_xor): Macroize insn from *movsi_xor and *movdi_xor_rex64
19656         using SWI48 mode iterator.
19657         (*mov<mode>_or): Ditto from *movsi_or and *movdi_or_rex64.
19658         (*movabs<mode>_1): Macroize insn from *movabs{qi,hi,si,di}_1_rex64
19659         using SWI1248x mode iterator.
19660         (*movabs<mode>_2): Ditto from *movabs{qi,hi,si,di}_1_rex64.
19661         (*swap<mode>): Macroize insn from *swapsi and *swapdi_rex64 using
19662         SWI48 mode iterator.
19663         (*swap<mode>_1): Macroize insn from *swap{qi,hi}_1 using SWI12 mode
19664         iterator.
19665         (*swap<mode>_2): Ditto from *swap{qi,hi}_2.
19666         (movstrict<mode>): Macroize expander from movstrict{qi,hi} using
19667         SWI12 mode iterator.
19668         (*movstrict<mode>_1): Macroize insn from *movstrict{qi,hi}_1 using
19669         SWI12 mode iterator.
19670         (*movstrict<mode>_xor): Ditto from *movstrict{qi,hi}_xor.
19671         (*mov<mode>_extv_1): Macroize insn from *mov{hi,si}_extv_1 using
19672         SWI24 mode iterator.
19673         (*mov<mode>_extzv_1): Macroize insn from *mov{si,di}_extzv_1 using
19674         SWI48 mode iterator.
19675         (mov<mode>_insn_1): New expander.
19676         (*mov<mode>_insv_1_rex64): Macroize insn from *mov{si,di}_insv_1_rex64
19677         using SWI48x mode iterator.
19678
19679         (*movoi_internal_avx): Rename from *movoi_internal.
19680         (*movti_internal_rex64): Rename from *movti_rex64.
19681         (*movti_internal_sse): Rename from *movti_sse.
19682         (*movdi_internal_rex64): Rename from *movdi_1_rex64.
19683         (*movdi_internal): Rename from *movdi_2.
19684         (*movsi_internal): Rename from *movsi_1.
19685         (*movhi_internal): Rename from *movhi_1.
19686         (*movqi_internal): Rename from *movqi_1.
19687
19688         (insv): Update the call to gen_movsi_insv_1 for rename.
19689         * config/i386/i386.c (promote_duplicated_reg): Ditto.
19690
19691 2010-06-22  Jan Hubicka  <jh@suse.cz>
19692
19693         * passes.c (execute_function_todo): Move call of statistics_fini_pass
19694         to ...
19695         (execute_todo) ... this one.
19696
19697 2010-06-22  Alan Modra  <amodra@gmail.com>
19698
19699         PR target/44364
19700         * config/rs6000/e500.h (HARD_REGNO_CALLER_SAVE_MODE): Define.
19701         * caller-save.c (insert_restore, insert_save): Use non-validate
19702         form of adjust_address.
19703
19704 2010-06-21  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
19705
19706         PR target/39690
19707         * config/pa/pa.c (override_options): Disable
19708         -freorder-blocks-and-partition.
19709
19710 2010-06-21  H.J. Lu  <hongjiu.lu@intel.com>
19711
19712         PR target/44615
19713         * config/i386/atom.md (atom_sseishft_2): Also check sseishft1.
19714
19715         * config/i386/i386.md (type): Add sseishft1
19716
19717         * config/i386/ppro_insn (ppro_insn): Also check sseishft1.
19718         (ppro_insn_load): Likewise.
19719         (ppro_insn_store): Likewise.
19720         (ppro_insn_both): Likewise.
19721
19722         * config/i386/sse.md (sse2_lshrv1ti3): Add atom_unit.
19723         (*vec_extractv2di_1_rex64_avx): Replace sseishft with sseishft1
19724         for type.
19725         (*vec_extractv2di_1_avx): Likewise.
19726         (*vec_extractv2di_1_rex64): Replace sseishft with sseishft1 for
19727         type.  Remove atom_unit.
19728         (*vec_extractv2di_1_sse2): Likewise.
19729
19730 2010-06-21  DJ Delorie  <dj@redhat.com>
19731
19732         * diagnostic.h (diagnostic_classification_change_t): New.
19733         (diagnostic_context): Add history and push/pop list.
19734         (diagnostic_push_diagnostics): Declare.
19735         (diagnostic_pop_diagnostics): Declare.
19736         * diagnostic.c (diagnostic_classify_diagnostic): Store changes
19737         from pragmas in a history chain instead of the global table.
19738         (diagnostic_push_diagnostics): New.
19739         (diagnostic_pop_diagnostics): New.
19740         (diagnostic_report_diagnostic): Scan history chain to find state
19741         of diagnostics as of the diagnostic location.
19742         * opts.c (set_option): Pass UNKNOWN_LOCATION to
19743         diagnostic_classify_diagnostic.
19744         (enable_warning_as_error): Likewise.
19745         * diagnostic-core.h (DK_POP): Add after "real" diagnostics, for
19746         use in the history chain.
19747         * doc/extend.texi: Document pragma GCC diagnostic changes.
19748
19749 2010-06-21  Jakub Jelinek  <jakub@redhat.com>
19750
19751         * dwarf2out.c (add_linkage_name): New function.  Don't add
19752         anything to DW_TAG_member DIEs.
19753         (add_name_and_src_coords_attributes): Use it.
19754         (gen_variable_die): Call it for C++ static data members if
19755         specification is DW_TAG_member.
19756
19757         * dwarf2out.c (base_type_die): Use DW_ATE_UTF for
19758         C++ char16_t and char32_t.
19759
19760         * Makefile.in (build/genattrtab.o): Depend on vecprim.h.
19761         * genattrtab.c: Include vecprim.h.
19762         (cached_attrs, cached_attr_count, attrs_seen_once,
19763         attrs_seen_more_than_once, attrs_to_cache, attrs_cached_inside,
19764         attrs_cached_after): New variables.
19765         (find_attrs_to_cache): New function.
19766         (FLG_BITWISE, FLG_AFTER, FLG_INSIDE, FLG_OUTSIDE_AND): Define.
19767         (write_test_expr): Add attrs_cached argument, return it too,
19768         attempt to cache non-const attributes used more than once in
19769         a single case handling.
19770         (write_attr_get): Use find_attrs_to_cache, for caching candidates
19771         emit cached_* variables.  Adjust write_attr_set callers.
19772         (write_attr_set): Add attrs_cached attribute, use find_attrs_to_cache
19773         to find attributes that should be cached in this block.  Adjust
19774         write_test_expr callers.
19775         (write_attr_case): Clear attrs_to_cache.  Adjust write_attr_set
19776         callers.
19777         (make_automaton_attrs): Adjust write_test_expr caller.
19778
19779         * Makefile.in (cfgexpand.o): Depend on $(INSN_ATTR_H).
19780         * genattrtab.c (check_tune_attr, find_tune_attr): New functions.
19781         (make_automaton_attrs): If find_tune_attr returns non-NULL,
19782         write separate internal_dfa_insn_code_* and insn_default_latency_*
19783         functions for each attribute's value and emit init_sched_attrs
19784         function and function pointers.
19785         * genattr.c (const_attrs, reservations): New variables.
19786         (gen_attr): Add const attributes to const_attrs vector.
19787         (check_tune_attr, find_tune_attr): New functions.
19788         (main): Add reservations to reservations vector.  If find_tune_attr
19789         returns true, add prototype for init_sched_attrs and make
19790         internal_dfa_insn_code and insn_default_latency function pointers,
19791         otherwise define init_sched_attrs as dummy macro.
19792         * cfgexpand.c: Include insn-attr.h.
19793         (gimple_expand_cfg): Call init_sched_attrs.
19794
19795         * stmt.c (resolve_asm_operand_names): Fix handling of %%.
19796
19797         PR target/44575
19798         * config/i386/i386.c (ix86_gimplify_va_arg): When copying
19799         va_arg from a set of register save slots into a temporary,
19800         if the container is bigger than type size, do the copying
19801         using smaller mode or using memcpy.
19802
19803         PR bootstrap/44426
19804         * sel-sched-dump.h (sel_prepare_string_for_dot_label): Remove
19805         prototype.
19806         (sel_print_to_dot): Remove macro.
19807         (sel_print): Likewise.  New prototype.
19808         * sel-sched-dump.c (sel_prepare_string_for_dot_label): Make static.
19809         (sel_print): New function.
19810
19811 2010-06-21  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
19812
19813         * config/sol2.h (TARGET_OS_CPP_BUILTINS): Define
19814         __STDC_VERSION__=199901L, _XOPEN_SOURCE=600 for C++.
19815
19816 2010-06-21  Nick Clifton  <nickc@redhat.com>
19817
19818         * config/rx/rx.h (PTRDIFF_TYPE): Define.
19819         (SMALL_REGISTER_CLASS): Define (to zero).
19820         (PRINT_OPERAND): Delete.
19821         (PRINT_OPERAND_ADDRESS): Delete.
19822         * config/rx/rx-protos.h (rx_print_operand): Delete prototype.
19823         (rx_print_operand_address): Delete prototype.
19824         * config/rx/rx.c (rx_print_operand): Make static.
19825         Allow %H and %L to handle CONST_DOUBLEs.
19826         (rx_print_operand_address): Make static.
19827         (rx_gen_move_template): Rename local variable 'template' to
19828         out_template.
19829         (rx_function_arg): Do not pass unknown sized objects in registers.
19830         (TARGET_PRINT_OPERAND): Define.
19831         (TARGET_PRINT_OPERAND_ADDRESS): Define.
19832
19833 2010-06-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
19834
19835         * Makefile.in (POD2MAN): Provide --date from $(DATESTAMP).
19836
19837 2010-06-21  Kai Tietz  <kai.tietz@onevision.com>
19838
19839         * config/i386/i386.c (ix86_compute_frame_layout): Avoid
19840         stack-alignment for simple leaf-functions.
19841
19842 2010-06-20  Alexandre Oliva  <aoliva@redhat.com>
19843
19844         * doc/install.texi: Document bootstrap-lto.
19845
19846 2010-06-20  Alexandre Oliva  <aoliva@redhat.com>
19847
19848         PR debug/44248
19849         * lto-streamer-in.c (input_bb): Leave debug stmts alone.
19850         (input_function): Drop them here, if VTA is disabled.
19851
19852 2010-06-20  Uros Bizjak  <ubizjak@gmail.com>
19853
19854         PR target/44546
19855         * config/i386/predicates.md (ix86_swapped_fp_comparsion_operator):
19856         New predicate.
19857         * config/i386/i386.md (*fp_jcc_8<mode>_387 and splitters): Use
19858         ix86_swapped_fp_comparsion_operator instead of
19859         ix86_fp_comparison_operator.
19860
19861         (*fp_jcc_1_387): Rename from *fp_jcc_3_387.
19862         (*fp_jcc_1r_387): Rename from *fp_jcc_4_387.
19863         (*fp_jcc_2_387): Rename from *fp_jcc_5_387.
19864         (*fp_jcc_2r_387): Rename from *fp_jcc_6_387.
19865         (*fp_jcc_3_387): Rename from *fp_jcc_7_387.
19866         (*fp_jcc_4_<mode>_387): Rename from *fp_jcc_8<mode>_387.
19867
19868 2010-06-20  Joseph Myers  <joseph@codesourcery.com>
19869
19870         PR other/32998
19871         * opth-gen.awk: Generate definitions of OPT_SPECIAL_unknown,
19872         OPT_SPECIAL_program_name and OPT_SPECIAL_input_file.
19873         * opts-common.c (find_opt): Return OPT_SPECIAL_unknown on failure.
19874         (decode_cmdline_option): Update for this return value.  Set
19875         orig_option_with_args_text field.  Set arg field for unknown
19876         options.  Make static.
19877         (decode_cmdline_options_to_array): New.
19878         (prune_options): Update handling of find_opt return value.
19879         * opts.c (read_cmdline_option): Take decoded option.  Return void.
19880         (read_cmdline_options): Take decoded options.
19881         (decode_options): Add parameters for decoded options.  Use
19882         decode_cmdline_options_to_array.  Use decoded options for -O
19883         scan.  Use integral_argument for -O parameters.  Update call to
19884         read_cmdline_options.
19885         (enable_warning_as_error): Update handling of find_opt return value.
19886         * opts.h: Update comment on unknown options.
19887         (struct cl_decoded_option): Update comments on opt_index and arg.
19888         Add orig_option_with_args_text.
19889         (decode_cmdline_option): Remove.
19890         (decode_cmdline_options_to_array): Declare.
19891         (decode_options): Update prototype.
19892         * toplev.c (save_argv): Remove.
19893         (save_decoded_options, save_decoded_options_count): New.
19894         (read_integral_parameter): Remove.
19895         (print_switch_values): Use decoded options.
19896         (toplev_main): Don't set save_argv.  Update call to decode_options.
19897         * toplev.h (read_integral_parameter): Remove.
19898         * varasm.c (elf_record_gcc_switches): Don't handle holding back names.
19899
19900 2010-06-19  Richard Earnshaw  <rearnsha@arm.com>
19901
19902         PR target/44072
19903         * arm.md (cmpsi2_addneg): Prefer emitting adds to subs with a negative
19904         immediate.
19905         * constraints.md (Pw, Px): New constraints.
19906         * thumb2.md (cmpsi2_addneg peephole2): New peepholes.
19907
19908 2010-06-19  H.J. Lu  <hongjiu.lu@intel.com>
19909
19910         * config/i386/sse.md (fma4modesuffixf4): Removed.
19911         (ssemodesuffixf2s): Likewise.
19912         (ssemodesuffixf4): Likewise.
19913         (ssemodesuffixf2c): Likewise.
19914         (ssescalarmodesuffix2s): Likewise.
19915         (avxmodesuffixf2c): Likewise.
19916         (ssemodesuffix): New.
19917         (ssescalarmodesuffix): Likewise.
19918         Update patterns with ssemodesuffix and ssescalarmodesuffix.
19919
19920 2010-06-19  Philip Herron  <herron.philip@googlemail.com>
19921
19922         * c-decl.c (c_write_global_declarations): Don't check flag_syntax_only.
19923
19924 2010-06-18  H.J. Lu  <hongjiu.lu@intel.com>
19925
19926         * stor-layout.c (debug_rli): Remove unused local variables.
19927
19928 2010-06-18  Eric Botcazou  <ebotcazou@adacore.com>
19929
19930         PR rtl-optimization/40900
19931         * expr.c (expand_expr_real_1) <SSA_NAME>: Fix long line.  Save the
19932         original expression for later reuse.
19933         <expand_decl_rtl>: Use promote_function_mode to compute the signedness
19934         of the promoted RTL for a SSA_NAME on the LHS of a call statement.
19935
19936 2010-06-18  Anatoly Sokolov  <aesok@post.ru>
19937
19938         * double-int.h (double_int_to_shwi, double_int_to_uhwi,
19939         double_int_fits_in_uhwi_p): Implement as static inline.
19940         (double_int_xor): New inline function.
19941         (double_int_lrotate, double_int_rrotate, double_int_max,
19942         double_int_umax, double_int_smax, double_int_min, double_int_umin,
19943         double_int_smin): Declare.
19944         (lrotate_double, rrotate_double): Remove declaration.
19945         * double-int.c (double_int_fits_in_uhwi_p, double_int_to_shwi,
19946         double_int_to_uhwi, lrotate_double, rrotate_double): Remove function.
19947         (double_int_lrotate, double_int_rrotate, double_int_max,
19948         double_int_umax, double_int_smax, double_int_min, double_int_umin,
19949         double_int_smin): New function.
19950         * fold-const.c (int_const_binop): Clean up, use double_int_*
19951         functions.
19952         * simplify-rtx.c (simplify_const_binary_operation): Clean up, use
19953         double_int_* and immed_double_int_const functions.
19954
19955 2010-06-18  Nathan Froyd  <froydnj@codesourcery.com>
19956
19957         * function.h (types_used_by_cur_var_decl): Change type to a VEC.
19958         * function.c (types_used_by_cur_var_decl): Likewise.
19959         (used_types_insert): Adjust for new type of types_used_by_cur_var_decl.
19960
19961 2010-06-18  Nathan Froyd  <froydnj@codesourcery.com>
19962
19963         * tree.h (record_layout_info): Change type of pending_statics field
19964         to a VEC.
19965         * stor-layout.c (start_record_layout): Store NULL into
19966         pending_statics.
19967         (debug_rli): Call debug_vec_tree instead of debug_tree.
19968         (place_field): Likewise.
19969         (finish_record_layout): Likewise.
19970
19971 2010-06-18  Alan Modra  <amodra@gmail.com>
19972
19973         * config/rs6000/linux64.h (SET_CMODEL): Don't expand to empty.
19974
19975 2010-06-17  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
19976
19977         PR target/43740
19978         * config/pa/pa.c (emit_move_sequence): Don't infer REG_POINTER flag
19979         for SET source operand from SET destination operand.
19980
19981 2010-06-17  Bernd Schmidt  <bernds@codesourcery.com>
19982
19983         PR rtl-optimization/39871
19984         * reload1.c (init_eliminable_invariants): For flag_pic, disable
19985         equivalences only for constants that aren't LEGITIMATE_PIC_OPERAND_P.
19986         (function_invariant_p): Rule out a plus of frame or arg pointer with
19987         a SYMBOL_REF.
19988         * ira.c (find_reg_equiv_invariant_const): Likewise.
19989
19990 2010-06-17  Gunther Nikl  <gnikl@users.sourceforge.net>
19991
19992         * config/rs6000/rs6000.c (print_operand) <'K'>: Also use
19993         print_operand_address and puts to output the operand for CONST.
19994
19995 2010-06-17  Jakub Jelinek  <jakub@redhat.com>
19996
19997         PR debug/44572
19998         * dwarf2out.c (dwarf2out_debug_hooks): Add entry for begin_epilogue
19999         hook.
20000
20001 2010-06-17  Nathan Froyd  <froydnj@codesourcery.com>
20002
20003         * v850-protos.h (print_operand): Delete.
20004         (print_operand_address): Delete.
20005         * v850.h (PRINT_OPERAND): Delete.
20006         (PRINT_OPERAND_PUNCT_VALID_P): Delete.
20007         (PRINT_OPERAND_ADDRESS): Delete.
20008         * v850.c (print_operand_address): Rename to...
20009         (v850_print_operand_address): ...this.  Make static. Call
20010         v850_print_operand.
20011         (print_operand): Rename to...
20012         (v850_print_operand): ...this.  Make static.  Call
20013         v850_print_operand_address.
20014         (v850_print_operand_punct_valid_p): New function.
20015         (TARGET_PRINT_OPERAND, TARGET_PRINT_OPERAND_ADDRESS): Define.
20016         (TARGET_PRINT_OPERAND_PUNCT_VALID_P): Define.
20017
20018 2010-06-17  Nathan Froyd  <froydnj@codesourcery.com>
20019
20020         * config/sh/sh-protos.h (print_operand): Delete.
20021         (print_operand_address): Delete.
20022         * config/sh/sh.h (PRINT_OPERAND): Delete.
20023         (PRINT_OPERAND_PUNCT_VALID_P): Delete.
20024         (PRINT_OPERAND_ADDRESS): Delete.
20025         * config/sh/sh.c (sh_print_operand_address): Make static.
20026         (sh_print_operand): Make static.  Call sh_print_operand_address
20027         and sh_print_operand.
20028         (sh_print_operand_punct_valid_p): New function.
20029         (TARGET_PRINT_OPERAND, TARGET_PRINT_OPERAND_ADDRESS): Define.
20030         (TARGET_PRINT_OPERAND_PUNCT_VALID_P): Define.
20031
20032 2010-06-17  Nathan Froyd  <froydnj@codesourcery.com>
20033
20034         * config/mcore/mcore-protos.h (mcore_print_operand): Delete.
20035         (mcore_print_operand_address): Delete.
20036         * config/mcore/mcore.h (PRINT_OPERAND): Delete.
20037         (PRINT_OPERAND_PUNCT_VALID_P): Delete.
20038         (PRINT_OPERAND_ADDRESS): Delete.
20039         * config/mcore/mcore.c (mcore_print_operand_address): Make static.
20040         (mcore_print_operand): Make static.
20041         (mcore_print_operand_punct_valid_p): New function.
20042         (TARGET_PRINT_OPERAND, TARGET_PRINT_OPERAND_ADDRESS): Define
20043         (TARGET_PRINT_OPERAND_PUNCT_VALID_P): Define.
20044
20045 2010-06-17  Nathan Froyd  <froydnj@codesourcery.com>
20046
20047         * config/m68hc11/m68hc11-protos.h (print_operand): Delete.
20048         (print_operand_address): Delete.
20049         * config/m68hc11/m68hc11.h (PRINT_OPERAND): Delete.
20050         (PRINT_OPERAND_ADDRESS): Delete.
20051         * config/m68hc11/m68hc11.c (m68hc11_print_operand_address): Make
20052         static.
20053         (m68hc11_print_operand): Make static.
20054         (TARGET_PRINT_OPERAND, TARGET_PRINT_OPERAND_ADDRESS): Define.
20055
20056 2010-06-17  Nathan Froyd  <froydnj@codesourcery.com>
20057
20058         * config/m32r/m32r-protos.h (m32r_print_operand): Delete.
20059         (m32r_print_operand_address): Delete.
20060         * config/m32r/m32r.h (m32r_punct_chars): Delete.
20061         (PRINT_OPERAND): Delete.
20062         (PRINT_OPERAND_PUNCT_VALID_P): Delete.
20063         (PRINT_OPERAND_ADDRESS): Delete.
20064         * config/m32r/m32r.c (m32r_punct_chars): Make static.
20065         (m32r_print_operand_address): Make static.
20066         (m32r_print_operand): Make static.
20067         (m32r_print_operand_punct_valid_p): New function.
20068         (TARGET_PRINT_OPERAND, TARGET_PRINT_OPERAND_ADDRESS):
20069         (TARGET_PRINT_OPERAND_ADDRESS): Define.
20070
20071 2010-06-17  Nathan Froyd  <froydnj@codesourcery.com>
20072
20073         * config/iq2000/iq2000-protos.h (print_operand): Delete.
20074         (print_operand_address): Delete.
20075         * config/iq2000/iq2000.h (PRINT_OPERAND): Delete.
20076         (PRINT_OPERAND_PUNCT_VALID_P): Delete.
20077         (PRINT_OPERAND_ADDRESS): Delete.
20078         (iq2000_print_operand_punct): Delete.
20079         * config/iq2000/iq2000.c (iq2000_print_operand_punct): Make static.
20080         (iq2000_print_operand_address): Make static.
20081         (iq2000_print_operand): Make static.
20082         (iq2000_print_operand_punct_valid_p): New function.
20083         (TARGET_PRINT_OPERAND, TARGET_PRINT_OPERAND_ADDRESS):
20084         (TARGET_PRINT_OPERAND_ADDRESS): Define.
20085
20086 2010-06-17  Nathan Froyd  <froydnj@codesourcery.com>
20087
20088         * config/frv/frv-protos.h (frv_print_operand): Delete.
20089         (frv_print_operand_address): Delete.
20090         * config/frv/frv.h (PRINT_OPERAND): Delete.
20091         (PRINT_OPERAND_PUNCT_VALID_P): Delete.
20092         (PRINT_OPERAND_ADDRESS): Delete.
20093         * config/frv/frv.c (frv_print_operand_address): Make static.
20094         (frv_print_operand): Make static.
20095         (frv_print_operand_punct_valid_p): New function.
20096         (TARGET_PRINT_OPERAND, TARGET_PRINT_OPERAND_ADDRESS):
20097         (TARGET_PRINT_OPERAND_ADDRESS): Define.
20098
20099 2010-06-17  Nathan Froyd  <froydnj@codesourcery.com>
20100
20101         * tree.h (vec_member): Declare.
20102         * tree.c (vec_member): Define.
20103
20104 2010-06-17  Richard Guenther  <rguenther@suse.de>
20105
20106         * tree-flow-inline.h (array_ref_contains_indirect_ref): Remove.
20107         * tree-flow.h (array_ref_contains_indirect_ref): Likewise.
20108
20109 2010-06-17  Richard Guenther  <rguenther@suse.de>
20110
20111         * tree-inline.c (declare_return_variable): Remove bogus code.
20112
20113 2010-06-17  Richard Guenther  <rguenther@suse.de>
20114
20115         * gimplify.c (gimplify_bind_expr): Always promote complex
20116         and vector variables to registers if possible.
20117
20118 2010-06-17  Richard Guenther  <rguenther@suse.de>
20119
20120         * expr.c (get_inner_reference): Use double_int for bit_offset
20121         calculation.
20122
20123 2010-06-16  DJ Delorie  <dj@redhat.com>
20124
20125         * common.opt (-fstrict-volatile-bitfields): new.
20126         * doc/invoke.texi: Document it.
20127         * fold-const.c (optimize_bit_field_compare): For volatile
20128         bitfields, use the field's type to determine the mode, not the
20129         field's size.
20130         * expr.c (expand_assignment): Likewise.
20131         (get_inner_reference): Likewise.
20132         (expand_expr_real_1): Likewise.
20133         * expmed.c (store_fixed_bit_field): Likewise.
20134         (extract_bit_field_1): Likewise.
20135         (extract_fixed_bit_field): Likewise.
20136
20137 2010-06-16  Richard Guenther  <rguenther@suse.de>
20138
20139         * tree-inline.c (remap_gimple_op_r): Recurse using remap_gimple_op_r.
20140
20141 2010-06-16  Douglas B Rupp  <rupp@gnat.com>
20142
20143         * config/ia64/vms.h (ASM_OUTPUT_DWARF_DELTA_UNITS): Remove.
20144         (ASM_OUTPUT_DWARF_VMS_DELTA: Define new macro.
20145         * dbxout.c (gcc_debug_hooks): New entry begin_epilogue.
20146         * debug.c: Likewise.
20147         * sdbout.c: Likewise.
20148         * vmsdbgout.c: Likewise.
20149         * debug.h: Likewise. (dwarf2out_vms_{begin,end}_prologue): Declare.
20150         * doc/tm.texi (ASM_OUTPUT_DWARF_VMS_DELTA): Document.
20151         * dwarf2asm.c (dw2_asm_output_vms_delta): New function.
20152         (ASM_OUTPUT_DWARF_VMS_DELTA): Call it.
20153         * dwarf2asm.h (dw2_asm_output_vms_delta): Declare.
20154         * dwarf2out.c (dw_fde_struct): New fields
20155         dw_fde_vms_{end,begin}_prologue.
20156         (PROLOGUE_END_LABEL, EPILOGUE_BEGIN_LABEL): New macros.
20157         (dwarf2out_begin_prologue): Set dw_fde_struct defaults for above.
20158         (dwarf2out_vms_end_prologue): New function.
20159         (dwarf2out_vms_begin_epilogue): New function.
20160         (dw_val_struct): New value dw_val_class_vms_delta.
20161         (gcc_debug_hooks): New entry begin_epilogue. Set end_prologue,
20162         begin_epilogue for VMS.
20163         (AT_vms_delta1, AT_vms_delta2, add_AT_vms_delta): Declare
20164         new static functions.
20165         (dwarf_attr_name): New cases DW_AT_HP_{prologue,epilogue}.
20166         (AT_vms_delta1, AT_vms_delta2, add_AT_vms_delta): New
20167         static functions.
20168         (print_die): New case dw_val_class_vms_delta.
20169         (attr_checksum): Likewise.
20170         (same_dw_val_p: Likewise.
20171         (size_of_die): Likewise.
20172         (value_format): Likewise.
20173         (output_die): Likewise.
20174         (gen_subprogram_die): Call add_AT_vms_delta on VMS.
20175         (dwarf2out_begin_epilogue): Rename to dwarf2out_cfi_begin_epilogue
20176         * dwarf2out.h (dwarf2out_begin_epilogue): Rename to
20177         dwarf2out_cfi_begin_epilogue
20178         * final.c (final_scan_insn): Likewise. Call begin_epilogue.
20179
20180 2010-06-16  Nathan Froyd  <froydnj@codesourcery.com>
20181
20182         * config/cris/cris-protos.h (cris_print_operand): Delete.
20183         (cris_print_operand_address): Delete.
20184         * config/cris/cris.h (PRINT_OPERAND): Delete.
20185         (PRINT_OPERAND_PUNCT_VALID_P): Delete.
20186         (PRINT_OPERAND_ADDRESS): Delete.
20187         * config/cris/cris.c (cris_print_operand_address): Make static.
20188         (cris_print_operand): Make static.
20189         (cris_print_operand_punct_valid_p): New function.
20190         (TARGET_PRINT_OPERAND, TARGET_PRINT_OPERAND_ADDRESS):
20191         (TARGET_PRINT_OPERAND_ADDRESS): Define.
20192
20193 2010-06-16  Nathan Froyd  <froydnj@codesourcery.com>
20194
20195         * config/arm/arm-protos.h (arm_print_operand): Delete.
20196         (arm_print_operand_address): Delete.
20197         * config/arm/arm.h (PRINT_OPERAND): Delete.
20198         (PRINT_OPERAND_PUNCT_VALID_P): Delete.
20199         (PRINT_OPERAND_ADDRESS, ARM_PRINT_OPERAND_ADDRESS):
20200         (THUMB_PRINT_OPERAND_ADDRESS): Delete and move code to...
20201         * config/arm/arm.c (arm_print_operand_address): ...here.  New function.
20202         (arm_print_operand): Make static.
20203         (arm_print_operand_punct_valid_p): New function.
20204         (TARGET_PRINT_OPERAND, TARGET_PRINT_OPERAND_ADDRESS):
20205         (TARGET_PRINT_OPERAND_ADDRESS): Define.
20206
20207 2010-06-16  Nick Clifton  <nickc@redhat.com>
20208
20209         * config/rx/constraints.md (NEGint4): New constraint.
20210         * config/rx/rx.md (attr cc): Add set_zsc.
20211         (cbranchsf4): Only test for -fnon-call-exceptions if cfun has been
20212         initialised.
20213         (cmpsf): Likewise.
20214         (call_internal): Clobber the cc0 register.
20215         (call_value_internal): Likewise.
20216         (cstoresi4): Likewise.
20217         (movsieq): Likewise.
20218         (movsine): Likewise.
20219         (addsi3): Add alternative to handle small negative constants.
20220         (sunsi3): Likewise.
20221         (addsi3): Do not set the O bit in the cc0 register.
20222         (adddi3): Likewise.
20223         (subsi3): Likewise.
20224         (subdi3): Likewise.
20225         (andsi3): Reorder alternatives to prefer shorter forms.
20226         (mulsi3): Likewise.
20227         (iorsi3): Likewise.
20228         (negsi2): Note that the cc0 flags are set.
20229         (rotlsi3): Note that only the Z and S bits are set in cc0.
20230         (lshrsi3): Likewise.
20231         (ashlsi3): Likewise.
20232         (subsf3): Use %Q for the MEM operand.
20233         (fix_truncsfsi2): Likewise.
20234         (floatsisf2): Likewise.
20235         (bitset): Remove early clobber from destination.
20236         (bitset_in_memory): Likewise.
20237         (lrintsf2): Clobber the cc0 register.
20238         * config/rx/rx.c (rx_notice_update_cc): Handle CC_SET_ZSC.
20239         (rx_print_operand): Handle %N.
20240
20241 2010-06-16  Jan Hubicka  <jh@suse.cz>
20242
20243         * df-core.c (df_compact_blocks): Free problem_temps vector.
20244
20245 2010-06-16  Martin Jambor  <mjambor@suse.cz>
20246
20247         PR tree-optimization/43905
20248         * tree-sra.c: Include tree-inline.h.
20249         (create_abstract_origin): Removed.
20250         (modify_function): Version the call graph node instead of creating
20251         abstract origins and dealing with same_body aliases.
20252         * tree-sra.c (ipa_sra_preliminary_function_checks): Check whether the
20253         function is versionable.
20254         * Makefile.in (tree-sra.o): Add TREE_INLINE_H to dependencies.
20255
20256 2010-06-16  Maxim Kuvyrkov  <maxim@codesourcery.com>
20257
20258         * config/mips/linux64.h (BIONIC_DYNAMIC_LINKERN32): Define.
20259         (CHOOSE_DYNAMIC_LINKER): Update.
20260
20261 2010-06-15  Uros Bizjak  <ubizjak@gmail.com>
20262
20263         * config/i386/i386.c (*prefetch_sse_<mode>):  Macroize insn from
20264         *prefetch_sse and *prefetch_sse_rex using P mode iterator.
20265         (*prefetch_3dnow_<mode>): Ditto from *prefetch_3dnow and
20266         *prefetch_3dnow_rex.
20267
20268 2010-06-15  Anatoly Sokolov  <aesok@post.ru>
20269
20270         * target.h (struct asm_out):Add declare_constant_name field.
20271         * target-def.h (TARGET_ASM_DECLARE_CONSTANT_NAME): Define.
20272         (TARGET_INITIALIZER): Use TARGET_ASM_DECLARE_CONSTANT_NAME.
20273         * output.h (default_asm_declare_constant_name): Declare.
20274         (assemble_label): Update prototype.
20275         * varasm.c (assemble_constant_contents): Use
20276         targetm.asm_out.declare_constant_name target hook.
20277         (assemble_label): Add 'file' argument.
20278         (default_asm_declare_constant_name): New function.
20279         * system.h (ASM_DECLARE_CONSTANT_NAME): Poison.
20280         * doc/tm.texi (ASM_DECLARE_CONSTANT_NAME): Remove.
20281         (TARGET_ASM_DECLARE_CONSTANT_NAME): Document it.
20282
20283         * config/darwin-protos.h (darwin_asm_declare_constant_name): Declare.
20284         * config/darwin.c (darwin_asm_declare_constant_name): New function.
20285         (machopic_output_indirection): Update assemble_label argument list.
20286         * config/darwin.h (ASM_DECLARE_CONSTANT_NAME): Remove.
20287         (TARGET_ASM_DECLARE_CONSTANT_NAME): Define.
20288
20289 2010-06-15  Sebastian Pop  <sebastian.pop@amd.com>
20290
20291         PR middle-end/44391
20292         * graphite-clast-to-gimple.c (graphite_create_new_loop_guard): Use
20293         size_one_node for pointer types.  Do not call gmp_cst_to_tree.
20294
20295 2010-06-15  Richard Guenther  <rguenther@suse.de>
20296
20297         * tree-ssa-pre.c (eliminate): Handle PHI elimination to constants.
20298
20299 2010-06-15  Paul Brook  <paul@codesourcery.com>
20300
20301         * config/arm/arm.c (use_vfp_abi): Add sorry() for Thumb-1
20302         hard-float ABI.
20303
20304 2010-06-15  Alexandre Oliva  <aoliva@redhat.com>
20305
20306         * tree-vect-patterns.c (vect_pattern_recog_1): Bail out if we
20307         don't get a vector type for output.
20308
20309 2010-06-15  Jakub Jelinek  <jakub@redhat.com>
20310
20311         PR fortran/44536
20312         * langhooks.h (struct lang_hooks_for_decls): Add omp_report_decl.
20313         * langhooks-def.h (LANG_HOOKS_OMP_REPORT_DECL): Define.
20314         (LANG_HOOKS_DECLS): Add it.
20315         * gimplify.c (omp_notice_variable): Call
20316         lang_hooks.decls.omp_report_decl.
20317
20318 2010-06-15  Martin Jambor  <mjambor@suse.cz>
20319
20320         PR lto/44464
20321         * tree-sra.c (replace_removed_params_ssa_names): Call release_ssa_name
20322         on the newly dead SSA name.
20323
20324 2010-06-15  Alan Modra  <amodra@gmail.com>
20325
20326         * doc/invoke.texi: Add mcmodel to powerpc options.
20327         * configure.ac: Add HAVE_LD_LARGE_TOC test.
20328         * configure: Regenerate.
20329         * config.in: Regenerate.
20330         * config/rs6000/linux64.opt (mcmodel): New.
20331         * config/rs6000/linux64.h (TARGET_USES_LINUX64_OPT): Define.
20332         (TARGET_CMODEL, SET_CMODEL): Define.
20333         (SUBSUBTARGET_OVERRIDE_OPTIONS): Check user -mcmodel choice,
20334         select CMODEL_MEDIUM default.
20335         * config/rs6000/rs6000.h (enum rs6000_cmodel): New.
20336         (TARGET_CMODEL): Define default.
20337         * config/rs6000/rs6000.c (cmodel): New variable.
20338         (rs6000_explicit_options): Add cmodel field.
20339         (rs6000_handle_option): Handle -mcmodel.
20340         (create_TOC_reference): Add largetoc_reg param.  Generate high,
20341         lo_sum rtl for CMODEL_MEDIUM and CMODEL_LARGE.  Update all callers.
20342         (rs6000_delegitimize_address): Recognise new toc reference rtl
20343         and minimal-toc rtl.
20344         (rs6000_legitimize_reload_address): Handle new toc references.
20345         (print_operand_address): Handle legitimate_constant_pool_address_p
20346         match before lo_sum.
20347         (rs6000_eliminate_indexed_memrefs): Tidy.
20348         (rs6000_emit_move): Tweak threshold for inlining constants.
20349         Keep rs6000_emit_allocate_stack large stack frame offsets
20350         loaded into r0 inline.
20351         (rs6000_generate_compare <cmptf_internal2>): One more clobber.
20352         (tocrel_base, tocrel_offset): New variables.
20353         (toc_relative_expr_p): Set them here.
20354         (print_operand_address): Skip over any offset on constant pool address.
20355         (rs6000_output_addr_const_extra): Print tocrel_offset before @toc.
20356         (rs6000_mode_dependent_address <LO_SUM>): False for new toc refs.
20357         (offsettable_ok_by_alignment): New function.
20358         (rs6000_emit_move): Address suitably aligned local symbol_refs
20359         relative to the toc pointer for -mcmodel=medium.
20360         (legitimate_constant_pool_address_p): Make param const_rtx.  Add
20361         strict param.  Allow lo_sum version of addressing.  Verify reg
20362         used for -mminimal-toc and -mcmodel != small.  Update all callers.
20363         * config/rs6000/constraints.md: Update for above change.
20364         * config/rs6000/predicates.md: Likewise.
20365         * config/rs6000/rs6000.md (tls_gd_aix): Generate -mcmodel=medium/large
20366         code.
20367         (tls_gd): Split for -mcmodel=medium/large.
20368         (tls_gd_high, tls_gd_low): New.
20369         (tls_ld_aix, tls_ld, tls_ld_high, tls_ld_low): Similarly.
20370         (tls_got_dtprel, tls_got_dtprel_high, tls_got_dtprel_low): Similarly.
20371         (tls_got_tprel, tls_got_tprel_high, tls_got_tprel_low): Similarly.
20372         (largetoc_high, largetoc_low): New.
20373         (cmptf_internal2): Add clobber.
20374         * config/rs6000/rs6000-protos.h: Update.
20375
20376 2010-06-14  Changpeng Fang  <changpeng.fang@amd.com>
20377
20378         * tree-ssa-loop-prefetch.c (nothing_to_prefetch_p): New.  Return
20379         true if no prefetch is going to be generated for a given group.
20380         (estimate_prefetch_count): Use prefetch_mod and unroll_factor to
20381         estimate the prefetch_count.
20382         (loop_prefetch_arrays): Call nothing_to_prefetch_p; estimate the
20383         prefetch count by considering the unroll_factor and prefetch_mod
20384         for is_loop_prefetching_profitable.
20385
20386 2010-06-14  Andreas Schwab  <schwab@linux-m68k.org>
20387
20388         * config/m68k/m68k.c (m68k_delegitimize_address): Don't do
20389         anything if the argument is not a MEM.
20390
20391 2010-06-14  Alexandre Oliva  <aoliva@redhat.com>
20392
20393         PR debug/43650
20394         PR debug/44181
20395         PR debug/44247
20396         * tree-ssa-loop-manip.c (tree_transform_and_unroll_loop): Skip
20397         debug stmts.
20398         (canonicalize_loop_ivs): Likewise.
20399
20400 2010-06-14  Alexandre Oliva  <aoliva@redhat.com>
20401
20402         PR debug/43656
20403         * haifa-sched.c (setup_insn_reg_pressure_info,
20404         update_register_pressure): Reject debug insns.
20405         (ready_sort): Don't setup reg pressure for debug insns.
20406         (schedule_insn): Don't update reg pressure for debug insns.
20407
20408 2010-06-14  Richard Guenther  <rguenther@suse.de>
20409
20410         * lto-streamer.c (cached_bp): Remove.
20411         (bitpack_delete): Likewise.
20412         (bitpack_create): Likewise.
20413         (bp_get_next_word): Likewise.
20414         (bp_pack_value, bp_unpack_value): Move ...
20415         * lto-streamer.h (bp_pack_value, bp_unpack_value): ... here.
20416         Re-implement.
20417         (struct bitpack_d): Likewise.
20418         (bitpack_create, lto_output_bitpack, lto_input_bitpack):
20419         New inline functions.
20420         * lto-streamer-out.c (lto_output_bitpack): Remove.
20421         (pack_ts_base_value_fields): Adjust.  Avoid conditional bitpacking.
20422         (pack_value_fields): Adjust.
20423         (lto_write_tree): Likewise.
20424         (output_gimple_stmt): Likewise.
20425         (output_function): Likewise.
20426         * lto-streamer-in.c (input_gimple_stmt): Adjust.
20427         (input_function): Likewise.
20428         (unpack_ts_base_value_fields): Adjust.  Avoid conditional bitpacking.
20429         (lto_input_bitpack): Remove.
20430         (lto_materialize_tree): Adjust.
20431         * Makefile.in (ipa-prop.o): Add $(LTO_STREAMER_H) dependency.
20432         * lto-cgraph.c (lto_output_edge): Adjust.
20433         (lto_output_node): Likewise.
20434         (lto_output_varpool_node): Likewise.
20435         (lto_output_ref): Likewise.
20436         (input_node): Likewise.
20437         (input_varpool_node): Likewise.
20438         (input_ref): Likewise.
20439         (input_edge): Likewise.
20440         (output_node_opt_summary): Likewise.
20441         (input_node_opt_summary): Likewise.
20442         * ipa-pure-const.c (pure_const_write_summary): Likewise.
20443         (pure_const_read_summary): Likewise.
20444         * ipa-prop.c (ipa_write_indirect_edge_info): Likewise.
20445         (ipa_read_indirect_edge_info): Likewise.
20446         (ipa_write_node_info): Likewise.
20447         (ipa_read_node_info): Likewise.
20448
20449 2010-06-14  H.J. Lu  <hongjiu.lu@intel.com>
20450
20451         PR target/44534
20452         * config/i386/sse.md (vec_extract_lo_<mode>): Replace 0x1 with 0x0.
20453         (vec_extract_lo_v16hi): Likewise.
20454         (vec_extract_lo_v32qi): Likewise.
20455
20456 2010-06-14  Jakub Jelinek  <jakub@redhat.com>
20457
20458         PR bootstrap/44426
20459         * tree.h (build_call_expr): Don't define as vararg macro, instead
20460         add a prototype.
20461         * builtins.c (build_call_nofold): Remove.
20462         (expand_builtin_int_roundingfn, expand_builtin_pow,
20463         expand_builtin_mempcpy_args, expand_builtin_stpcpy,
20464         expand_builtin_memset_args, expand_builtin_strcmp,
20465         expand_builtin_strncmp, expand_builtin_memory_chk): Use
20466         build_call_nofold_loc instead of build_call_nofold.
20467         (build_call_expr): New function.
20468
20469         PR tree-optimization/44508
20470         * tree-ssa-propagate.h (substitute_and_fold): Add DO_DCE argument.
20471         * tree-ssa-propagate.c (substitute_and_fold): If !DO_DCE,
20472         don't eliminate trivially dead stmts.
20473         * tree-vrp.c (vrp_finalize): Pass false as last argument
20474         to substitute_and_fold.
20475         * tree-ssa-copy.c (fini_copy_prop): Pass true as last argument
20476         to substitute_and_fold.
20477         * tree-ssa-ccp.c (ccp_finalize): Likewise.
20478
20479         PR bootstrap/44509
20480         * c-config-lang.in (gtfiles): Add c-family/c-cppbuiltin.c.
20481
20482 2010-06-14  Ira Rosen  <irar@il.ibm.com>
20483
20484         PR tree-optimization/44507
20485         * tree-vect-loop.c (get_initial_def_for_reduction): Use -1
20486         to build initial vector for BIT_AND_EXPR.
20487         * tree-vect-slp.c (vect_get_constant_vectors): Likewise.
20488
20489 2010-06-14  Jakub Jelinek  <jakub@redhat.com>
20490
20491         * config/s390/s390.md (*mov<mode>_64 DD_DF, mov<mode>): Properly
20492         adjust z10prop set_attr.
20493
20494 2010-06-13  Jan Hubicka  <jh@suse.cz>
20495
20496         * bitmap.c (bitmap_and, bitmap_and_into, bitmap_and_compl,
20497         bitmap_and_compl_into, bitmap_compl_and_into, bitmap_ior,
20498         bitmap_ior_into, bitmap_xor, bitmap_xor_into,
20499         bitmap_ior_and_compl, bitmap_ior_and_compl): Turn internal
20500         datastructure checks into checking asserts.
20501         * rtlanal.c (find_reg_note): Use gcc_checking_assert.
20502         * tree-ssa-sccvn.c (VN_INFO): Likewise.
20503         * df-scan.c (df_reorganize_refs_by_reg_by_reg, df_install_ref,
20504         df_ref_create_structure): Likewise.
20505         * alloc-pool.c (create_alloc_pool, empty_alloc_pool, pool_alloc,
20506         pool_free): Use gcc_checking_assert.
20507         * alias.c (get_alias_set): Likewise.
20508         * var-tracking.c (variable_htab_free, shared_hash_copy,
20509         canonicalize_values_mark, variable_merge_over_cur): Likewise.
20510         * lto-streamer.c (bp_unpack_value): Likewise.
20511
20512 2010-06-13  Richard Guenther  <rguenther@suse.de>
20513
20514         * lto-streamer-in.c (lto_input_ts_type_tree_pointers):
20515         Do not stream but initialize TYPE_CANONICAL to NULL.
20516         (lto_output_ts_type_tree_pointers): Do not stream TYPE_CANONICAL.
20517         * gimple.c (gimple_types_compatible_p): Disregard
20518         TYPE_STRUCTURAL_EQUALITY_P.
20519         (gimple_register_type): Use TYPE_CANONICAL as cache.
20520         * lto-streamer.c (lto_record_common_node): Zero TYPE_CANONICAL
20521         before registering common types.
20522         * config/i386/i386.c (ix86_function_arg_boundary): Do not
20523         use TYPE_CANONICAL, instead use TYPE_MAIN_VARIANT.
20524         * tree.h (TYPE_CANONICAL): Clarify documentation.
20525
20526 2010-06-13  Anatoly Sokolov  <aesok@post.ru>
20527
20528         * config/ia64/ia64.h (FUNCTION_VALUE_REGNO_P, FUNCTION_VALUE,
20529         LIBCALL_VALUE): Remove macros.
20530         * config/ia64/ia64-protos.h (ia64_function_value): Remove.
20531         * config/ia64/ia64.c (TARGET_FUNCTION_VALUE, TARGET_LIBCALL_VALUE,
20532         TARGET_FUNCTION_VALUE_REGNO_P): Define.
20533         (ia64_libcall_value, ia64_function_value_regno_p): New functions.
20534         (ia64_function_value): Make static. Handle receiving the function
20535         type in 'fn_decl_or_type' argunent. Add 'outgoing' argument.
20536
20537 2010-06-12  Jan Hubicka  <jh@suse.cz>
20538
20539         * cse.c (cse_extended_basic_block): Move optimize_bb_for_speed_p
20540         at correct place.
20541
20542 2010-06-12  Bernd Schmidt  <bernds@codesourcery.com>
20543
20544         * config/arm/arm.c (thumb2_reorg): Fix errors in previous change.
20545
20546 2010-06-12  Jan Hubicka  <jh@suse.cz>
20547
20548         * df-core.c (df_clear_bb_info): New function.
20549         (df_set_blocks): bb_info is always allocated.
20550         (df_get_bb_info): Use block_info_elt_size.
20551         (df_set_bb_info): Likewise.
20552         (df_compact_blocks): Update for new block_info.
20553         (grow_bb_info): New function.
20554         * df-problems.c (df_grow_bb_info): Move to df-core.c
20555         (df_rd_set_bb_info): Remove.
20556         (df_rd_free_bb_info): Do not free block pool.
20557         (df_rd_alloc): Do not create pool, use check for
20558         obstack presence instead of NULL pointer for new blocks.
20559         (df_rd_free): DO not free alloc pool; clear block_info.
20560         (problem_RD): Add size of block info structure.
20561         (df_lr_set_bb_info): Remove.
20562         (df_lr_free_bb_info): Do not free block pool.
20563         (df_lr_alloc): Do not create pool, use check for
20564         obstack presence instead of NULL pointer for new blocks.
20565         (df_lr_free): DO not free alloc pool; clear block_info.
20566         (problem_LR): Add size of block info structure.
20567         (df_live_set_bb_info): Remove.
20568         (df_live_free_bb_info): Do not free block pool.
20569         (df_live_alloc): Do not create pool, use check for
20570         obstack presence instead of NULL pointer for new blocks.
20571         (df_live_free): DO not free alloc pool; clear block_info.
20572         (problem_LIVE): Add size of block info structure.
20573         (problem_CHAIN): Add size of block info structure.
20574         (df_byte_lr_set_bb_info): Remove.
20575         (df_byte_lr_free_bb_info): Do not free block pool.
20576         (df_byte_lr_alloc): Do not create pool, use check for
20577         obstack presence instead of NULL pointer for new blocks.
20578         (df_byte_lr_free): DO not free alloc pool; clear block_info.
20579         (problem_BYTE_LR): Add size of block info structure.
20580         (problem_NOTE): Add size of block info structure.
20581         (df_byte_MD_set_bb_info): Remove.
20582         (df_byte_MD_free_bb_info): Do not free block pool.
20583         (df_byte_MD_alloc): Do not create pool, use check for
20584         obstack presence instead of NULL pointer for new blocks.
20585         (df_byte_MD_free): DO not free alloc pool; clear block_info.
20586         (problem_BD): Add size of block info structure.
20587         * df-scan.c (df_scan_free_internal): Free block pool.
20588         (df_scan_set_bb_info): Remove.
20589         (df_scan_free_bb_info): Check for artificial_defs instead
20590         of bb_info being non-NULL.
20591         (df_scan_alloc): DO not create df_scan_block pool.
20592         (problem_SCAN): Set size of block info.
20593         (df_bb_refs_record): Do not allocate bb_info.
20594         * df.h (df_problem): Add block_info_elt_size.
20595         (struct dataflow): Change block_info to void *.
20596         (df_scan_get_bb_info, df_rd_get_bb_info, df_lr_get_bb_info,
20597         df_md_get_bb_info, df_live_get_bb_info, df_byte_lr_get_bb_info): Return
20598         in-line structures.
20599
20600 2010-06-12  Jan Hubicka  <jh@suse.cz>
20601
20602         PR tree-optimize/44485
20603         * tree-cfgcleanup.c (fixup_noreturn_call): Remove basic blocks
20604         containing use of return value of noreturn function.
20605
20606 2010-06-12  Anatoly Sokolov  <aesok@post.ru>
20607
20608         * targhooks.c (default_function_value): Don't use
20609         FUNCTION_OUTGOING_VALUE.
20610         * system.h (FUNCTION_OUTGOING_VALUE): Poison.
20611         * doc/tm.texi (FUNCTION_OUTGOING_VALUE): Removed.
20612
20613 2010-06-12  Kazu Hirata  <kazu@codesourcery.com>
20614
20615         * config.gcc (mips64*-*-linux*, mipsisa64*-*-linux*, mips*-*-linux*):
20616         Add crtfastmath.o to extra_parts.
20617         * config/mips/crtfastmath.c: New.
20618         * config/mips/linux.h (ENDFILE_SPEC): New.
20619
20620 2010-06-12  Sebastian Pop  <sebastian.pop@amd.com>
20621
20622         * graphite-clast-to-gimple.c (gcc_type_for_interval): Do not pass
20623         old_type in parameter.
20624         (gcc_type_for_value): Update call to gcc_type_for_interval.
20625         (compute_type_for_level_1): Renamed compute_type_for_level.
20626         Update call to gcc_type_for_interval.
20627
20628 2010-06-11  Joseph Myers  <joseph@codesourcery.com>
20629
20630         * common.opt (Wstrict-aliasing=, Wstrict-overflow=, fabi-version=,
20631         flto-compression-level=, ftree-parallelize-loops=): Add RejectNegative.
20632
20633 2010-06-11  Joseph Myers  <joseph@codesourcery.com>
20634
20635         * opts-common.c: Include options.h.
20636         (integral_argument): Move from opts.c.
20637         (decode_cmdline_option): New.  Based on read_cmdline_option.
20638         * opts.c (integral_argument): Move to opts-common.c.
20639         (read_cmdline_option): Move most contents to
20640         decode_cmdline_option.  Use %qs in diagnostics.
20641         * opts.h (CL_ERR_DISABLED, CL_ERR_MISSING_ARG, CL_ERR_WRONG_LANG,
20642         CL_ERR_UINT_ARG, struct cl_decoded_option, integral_argument,
20643         decode_cmdline_option): New.
20644
20645 2010-06-11  Uros Bizjak  <ubizjak@gmail.com>
20646
20647         PR target/44481
20648         * config/i386/i386.md (UNSPEC_PARITY): New unspec.
20649         (paritydi2_cmp): Use UNSPEC_PARITY unspec instead of parity RTX.
20650         (partiysi2_cmp): Ditto.
20651         (*partiyhi2_cmp): Ditto.
20652         (*parityqi2_cmp): Remove.
20653
20654 2010-06-11  Jan Hubicka  <jh@suse.cz>
20655
20656         * bitmap.h (bmp_iter_next_bit): New.
20657         (bmp_iter_set, bmp_iter_and, bmp_iter_and_compl): Use it.
20658
20659 2010-06-11  Sandra Loosemore  <sandra@codesourcery.com>
20660             Eric Botcazou  <ebotcazou@adacore.com>
20661
20662         * tree-ssa-loop-ivopts.c (get_computation_cost_at): Return again the
20663         computed cost.
20664
20665 2010-06-11  Uros Bizjak  <ubizjak@gmail.com>
20666
20667         * config/i386/i386.md (unspec): New define_c_enum.
20668         (unspecv): Ditto.
20669
20670 2010-06-10  Jakub Jelinek  <jakub@redhat.com>
20671
20672         * Makefile.in (c-family/c-cppbuiltin.o): Depend on $(CPP_ID_DATA_H).
20673
20674 2010-06-11  Sebastian Pop  <sebastian.pop@amd.com>
20675
20676         PR middle-end/44483
20677         * tree-if-conv.c (bb_predicate_s): New struct.
20678         (bb_predicate_p): New.
20679         (bb_has_predicate): New.
20680         (bb_predicate): New.
20681         (set_bb_predicate): New.
20682         (bb_predicate_gimplified_stmts): New.
20683         (set_bb_predicate_gimplified_stmts): New.
20684         (add_bb_predicate_gimplified_stmts): New.
20685         (init_bb_predicate): New.
20686         (free_bb_predicate): New.
20687         (is_predicated): Use bb_predicate.
20688         (add_to_predicate_list): Use bb_predicate and set_bb_predicate.
20689         (predicate_bbs): Same.  Gimplify the condition of the basic blocks
20690         before processing their successors.
20691         (clean_predicate_lists): Removed.
20692         (find_phi_replacement_condition): Use bb_predicate.
20693         (process_phi_nodes): Renamed ifconvert_phi_nodes.  Avoid useless
20694         computations.
20695         (insert_gimplified_predicates): New.
20696         (combine_blocks): Call insert_gimplified_predicates.
20697         (tree_if_conversion): Call free_bb_predicate instead of
20698         clean_predicate_lists.
20699
20700 2010-10-11  Paul Brook  <paul@codesourcery.com>
20701
20702         * doc/invoke.texi: Document ARM -mcpu=cortex-m4.
20703         * config/arm/arm.c (all_architectures): Change v7e-m default to
20704         cortexm4.
20705         * config/arm/arm-cores.def: Add cortex-m4.
20706         * config/arm/arm-tune.md: Regenerate.
20707
20708 2010-06-11  Jan Hubicka  <jh@suse.cz>
20709
20710         * ipa-pure-const.c (special_builtlin_state): New function.
20711         (check_call): Use it instead of special casign BUILT_IN_RETURN.
20712         (propagate_pure_const): Use it.
20713
20714 2010-06-11  Jan Hubicka  <jh@suse.cz>
20715
20716         * df-problems.c (df_live_scratch): Convert to bitmap_head.
20717         (df_live_alloc): Initialize df_live_scratch when initializing
20718         problem_data.
20719         (df_live_transfer_function): Update uses of df_live_scratch.
20720         (df_live_free): Free problem_data; clear df_live_scratch before
20721         releasing the obstack.
20722         (df_md_free): Free problem data.
20723
20724 2010-06-11  Jan Hubicka  <jh@suse.cz>
20725
20726         * doc/invoke.texi (Wsuggest-attribute): Document.
20727         (Wmissing-noreturn): Remove.
20728         * ipa-pure-const.c (warn_function_noreturn): New function.
20729         * opts.c (decode_options): Set warn_suggest_attribute_noreturn on
20730         warn_missing_noreturn.
20731         * common.opt (Wsuggest-attribute=noreturn): New.
20732         * tree-flow.h (warn_function_noreturn): Declare.
20733         * tree-cfg.c (execute_warn_function_noreturn): Use
20734         warn_function_noreturn.
20735         (gate_warn_function_noreturn): New.
20736         (pass_warn_function_noreturn): Update.
20737
20738 2010-06-11  Manuel López-Ibáñez  <manu@gcc.gnu.org>
20739
20740         * c-typeck.c (handle_warn_cast_qual): Add loc
20741         parameter. Improve warning message.
20742         (build_c_cast): Pass location to handle_warn_cast_qual.
20743
20744 2010-06-11  Uros Bizjak  <ubizjak@gmail.com>
20745
20746         * config/i386/i386.md (pro_epilogue_adjust_stack_1) <TYPE_ALU>: Assert
20747         that operand 0 == operand 1.  Use x86_maybe_negate_const_int to output
20748         insn mnemonic.
20749         (pro_epilogue_adjust_stack_rex64) <TYPE_ALU>: Ditto.
20750
20751 2010-06-10  Dodji Seketeli  <dodji@redhat.com>
20752
20753         Fix bootstap on mips
20754         * dwarf2out.c (is_naming_typedef_dec): Built-in TYPE_DECLs cannot
20755         be naming typedefs.
20756
20757 2010-06-11  Kai Tietz  <kai.tietz@onevision.com>
20758
20759         * system.h (helper_const_non_const_cast): New inline for
20760         gcc version <= 4.0.
20761         (CONST_CAST2): For gcc version <= 4.0 use
20762         new helper to do const/non-const casting.
20763
20764 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
20765
20766         * doc/md.texi: Document the "unspec" and "unspecv" enum names.
20767         * Makefile.in (OBJS-common): Include insn-enums.o.
20768         (insn-enums.o): New rule.
20769         (simple_generated_c): Add insn-enums.c.
20770         (build/genenums.o): New rule.
20771         (genprogmd): Add "enums".
20772         * genconstants.c (print_enum_type): Declare a C string array
20773         for each enum.
20774         * genenums.c: New file.
20775         * print-rtl.c (print_rtx): If defined, use the "unspecv" enum
20776         for UNSPEC_VOLATILE.  If defined, use the "unspec" enum for both
20777         UNSPEC and (as a fallback) for UNSPEC_VOLATILE.
20778
20779 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
20780
20781         * doc/md.texi (define_enum_attr): Document.
20782         * rtl.def (DEFINE_ENUM_ATTR): New rtx.
20783         * read-md.h (lookup_enum_type): Declare.
20784         * read-md.c (lookup_enum_type): New function.
20785         * genattr.c (gen_attr, main): Handle DEFINE_ENUM_ATTR.
20786         * genattrtab.c (attr_desc): Add an enum_name field.
20787         (evaluate_eq_attr): Take the associated attribute as argument.
20788         Get the enum prefix from the enum_name field, if defined.
20789         Use ACONCAT rather than a fixed-length buffer.  Update recursive calls.
20790         (simplify_test_exp): Pass attr to evaluate_eq_attr.
20791         (add_attr_value): New function, split out from...
20792         (gen_attr): ...here.  Handle DEFINE_ENUM_ATTR.
20793         (write_test_expr): Pass attr to evaluate_eq_attr.
20794         (write_attr_get): Use the enum_name as the enum tag, if defined.
20795         (write_attr_valueq): Use the enum_name as a prefix, if defined.
20796         (find_attr): Initialize enum_name.
20797         (main): Handle DEFINE_ENUM_ATTR.
20798         * gensupport.c (process_rtx): Likewise.
20799         * config/mips/mips.h (mips_tune_attr): Delete.
20800         * config/mips/mips.md (cpu): Use define_attr_enum.
20801
20802 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
20803
20804         * doc/md.texi (define_c_enum, define_enum): Document.
20805         * read-md.h (md_constant): Add a parent_enum field.
20806         (enum_value, enum_type): New structures.
20807         (upcase_string, traverse_enum_types): Declare.
20808         * read-md.c (enum_types): New variable.
20809         (upcase_string, add_constant): New functions.
20810         (handle_constants): Don't create the hash table here.
20811         Use add_constant.
20812         (traverse_md_constants): Don't check for a null md_constants.
20813         (decimal_string, handle_enum, traverse_enum_types): New functions.
20814         (read_md_files): Initialize md_constants and md_enums.
20815         * genconstants.c (print_md_constant): Ignore info argument.
20816         Only print constants that belong to no enum.
20817         (print_enum_type): New function.
20818         (main): Don't pass stdout to print_md_constant.  Call print_enum_type
20819         for each defined enum type.
20820         * config/mips/mips.md (processor): New define_enum.
20821         (unspec): New define_c_enum.
20822         (UNSPEC_COMPARE_AND_SWAP, UNSPEC_COMPARE_AND_SWAP_12)
20823         (UNSPEC_SYNC_OLD_OP, UNSPEC_SYNC_NEW_OP, UNSPEC_SYNC_NEW_OP_12)
20824         (UNSPEC_SYNC_OLD_OP_12, UNSPEC_SYNC_EXCHANGE, UNSPEC_SYNC_EXCHANGE_12)
20825         (UNSPEC_MEMORY_BARRIER): Moved to sync.md.
20826         (UNSPEC_ADDQ, UNSPEC_ADDQ_S, UNSPEC_SUBQ, UNSPEC_SUBQ_S, UNSPEC_ADDSC)
20827         (UNSPEC_ADDWC, UNSPEC_MODSUB, UNSPEC_RADDU_W_QB, UNSPEC_ABSQ_S)
20828         (UNSPEC_PRECRQ_QB_PH, UNSPEC_PRECRQ_PH_W, UNSPEC_PRECRQ_RS_PH_W)
20829         (UNSPEC_PRECRQU_S_QB_PH, UNSPEC_PRECEQ_W_PHL, UNSPEC_PRECEQ_W_PHR)
20830         (UNSPEC_PRECEQU_PH_QBL, UNSPEC_PRECEQU_PH_QBR, UNSPEC_PRECEQU_PH_QBLA)
20831         (UNSPEC_PRECEQU_PH_QBRA, UNSPEC_PRECEU_PH_QBL, UNSPEC_PRECEU_PH_QBR)
20832         (UNSPEC_PRECEU_PH_QBLA, UNSPEC_PRECEU_PH_QBRA, UNSPEC_SHLL)
20833         (UNSPEC_SHLL_S, UNSPEC_SHRL_QB, UNSPEC_SHRA_PH, UNSPEC_SHRA_R)
20834         (UNSPEC_MULEU_S_PH_QBL, UNSPEC_MULEU_S_PH_QBR, UNSPEC_MULQ_RS_PH)
20835         (UNSPEC_MULEQ_S_W_PHL, UNSPEC_MULEQ_S_W_PHR, UNSPEC_DPAU_H_QBL)
20836         (UNSPEC_DPAU_H_QBR, UNSPEC_DPSU_H_QBL, UNSPEC_DPSU_H_QBR)
20837         (UNSPEC_DPAQ_S_W_PH, UNSPEC_DPSQ_S_W_PH, UNSPEC_MULSAQ_S_W_PH)
20838         (UNSPEC_DPAQ_SA_L_W, UNSPEC_DPSQ_SA_L_W, UNSPEC_MAQ_S_W_PHL)
20839         (UNSPEC_MAQ_S_W_PHR, UNSPEC_MAQ_SA_W_PHL, UNSPEC_MAQ_SA_W_PHR)
20840         (UNSPEC_BITREV, UNSPEC_INSV, UNSPEC_REPL_QB, UNSPEC_REPL_PH)
20841         (UNSPEC_CMP_EQ, UNSPEC_CMP_LT, UNSPEC_CMP_LE, UNSPEC_CMPGU_EQ_QB)
20842         (UNSPEC_CMPGU_LT_QB, UNSPEC_CMPGU_LE_QB, UNSPEC_PICK, UNSPEC_PACKRL_PH)
20843         (UNSPEC_EXTR_W, UNSPEC_EXTR_R_W, UNSPEC_EXTR_RS_W, UNSPEC_EXTR_S_H)
20844         (UNSPEC_EXTP, UNSPEC_EXTPDP, UNSPEC_SHILO, UNSPEC_MTHLIP, UNSPEC_WRDSP)
20845         (UNSPEC_RDDSP): Move to mips-dsp.md.
20846         (UNSPEC_ABSQ_S_QB, UNSPEC_ADDU_PH, UNSPEC_ADDU_S_PH, UNSPEC_ADDUH_QB)
20847         (UNSPEC_ADDUH_R_QB, UNSPEC_APPEND, UNSPEC_BALIGN, UNSPEC_CMPGDU_EQ_QB)
20848         (UNSPEC_CMPGDU_LT_QB, UNSPEC_CMPGDU_LE_QB, UNSPEC_DPA_W_PH)
20849         (UNSPEC_DPS_W_PH, UNSPEC_MADD, UNSPEC_MADDU, UNSPEC_MSUB, UNSPEC_MSUBU)
20850         (UNSPEC_MUL_PH, UNSPEC_MUL_S_PH, UNSPEC_MULQ_RS_W, UNSPEC_MULQ_S_PH)
20851         (UNSPEC_MULQ_S_W, UNSPEC_MULSA_W_PH, UNSPEC_MULT, UNSPEC_MULTU)
20852         (UNSPEC_PRECR_QB_PH, UNSPEC_PRECR_SRA_PH_W, UNSPEC_PRECR_SRA_R_PH_W)
20853         (UNSPEC_PREPEND, UNSPEC_SHRA_QB, UNSPEC_SHRA_R_QB, UNSPEC_SHRL_PH)
20854         (UNSPEC_SUBU_PH, UNSPEC_SUBU_S_PH, UNSPEC_SUBUH_QB, UNSPEC_SUBUH_R_QB)
20855         (UNSPEC_ADDQH_PH, UNSPEC_ADDQH_R_PH, UNSPEC_ADDQH_W, UNSPEC_ADDQH_R_W)
20856         (UNSPEC_SUBQH_PH, UNSPEC_SUBQH_R_PH, UNSPEC_SUBQH_W, UNSPEC_SUBQH_R_W)
20857         (UNSPEC_DPAX_W_PH, UNSPEC_DPSX_W_PH, UNSPEC_DPAQX_S_W_PH)
20858         (UNSPEC_DPAQX_SA_W_PH, UNSPEC_DPSQX_S_W_PH, UNSPEC_DPSQX_SA_W_PH):
20859         Moved to mips-dspr2.md.
20860         (UNSPEC_MOVE_TF_PS, UNSPEC_C, UNSPEC_ALNV_PS, UNSPEC_CABS)
20861         (UNSPEC_ADDR_PS, UNSPEC_CVT_PW_PS, UNSPEC_CVT_PS_PW, UNSPEC_MULR_PS)
20862         (UNSPEC_ABS_PS, UNSPEC_RSQRT1, UNSPEC_RSQRT2, UNSPEC_RECIP1)
20863         (UNSPEC_RECIP2, UNSPEC_SINGLE_CC, UNSPEC_SCC): Move from mips-ps-3d.md.
20864         (UNSPEC_LOONGSON_PAVG, UNSPEC_LOONGSON_PCMPEQ, UNSPEC_LOONGSON_PCMPGT)
20865         (UNSPEC_LOONGSON_PEXTR, UNSPEC_LOONGSON_PINSR_0)
20866         (UNSPEC_LOONGSON_PINSR_1, UNSPEC_LOONGSON_PINSR_2)
20867         (UNSPEC_LOONGSON_PINSR_3, UNSPEC_LOONGSON_PMADD)
20868         (UNSPEC_LOONGSON_PMOVMSK, UNSPEC_LOONGSON_PMULHU)
20869         (UNSPEC_LOONGSON_PMULH, UNSPEC_LOONGSON_PMULL, UNSPEC_LOONGSON_PMULU)
20870         (UNSPEC_LOONGSON_PASUBUB, UNSPEC_LOONGSON_BIADD,
20871         UNSPEC_LOONGSON_PSADBH)
20872         (UNSPEC_LOONGSON_PSHUFH, UNSPEC_LOONGSON_PUNPCKH)
20873         (UNSPEC_LOONGSON_PUNPCKL, UNSPEC_LOONGSON_PADDD)
20874         (UNSPEC_LOONGSON_PSUBD): Move to mips-loongson.md.
20875         (UNSPEC_LOONGSON_ALU1_TURN_ENABLED_INSN)
20876         (UNSPEC_LOONGSON_ALU2_TURN_ENABLED_INSN)
20877         (UNSPEC_LOONGSON_FALU1_TURN_ENABLED_INSN)
20878         (UNSPEC_LOONGSON_FALU2_TURN_ENABLED_INSN): Move to mips-loongson2ef.md.
20879         (cpu): Update comment.
20880         * config/mips/sync.md (UNSPEC_COMPARE_AND_SWAP)
20881         (UNSPEC_COMPARE_AND_SWAP_12, UNSPEC_SYNC_OLD_OP, UNSPEC_SYNC_NEW_OP)
20882         (UNSPEC_SYNC_NEW_OP_12, UNSPEC_SYNC_OLD_OP_12, UNSPEC_SYNC_EXCHANGE)
20883         (UNSPEC_SYNC_EXCHANGE_12, UNSPEC_MEMORY_BARRIER): Moved from mips.md.
20884         * config/mips/loongson.md (UNSPEC_LOONGSON_PAVG,
20885         UNSPEC_LOONGSON_PCMPEQ)
20886         (UNSPEC_LOONGSON_PCMPGT, UNSPEC_LOONGSON_PEXTR,
20887         UNSPEC_LOONGSON_PINSR_0)
20888         (UNSPEC_LOONGSON_PINSR_1, UNSPEC_LOONGSON_PINSR_2)
20889         (UNSPEC_LOONGSON_PINSR_3, UNSPEC_LOONGSON_PMADD)
20890         (UNSPEC_LOONGSON_PMOVMSK, UNSPEC_LOONGSON_PMULHU)
20891         (UNSPEC_LOONGSON_PMULH, UNSPEC_LOONGSON_PMULL, UNSPEC_LOONGSON_PMULU)
20892         (UNSPEC_LOONGSON_PASUBUB, UNSPEC_LOONGSON_BIADD,
20893         UNSPEC_LOONGSON_PSADBH)
20894         (UNSPEC_LOONGSON_PSHUFH, UNSPEC_LOONGSON_PUNPCKH)
20895         (UNSPEC_LOONGSON_PUNPCKL, UNSPEC_LOONGSON_PADDD)
20896         (UNSPEC_LOONGSON_PSUBD): Moved from mips.md
20897         * config/mips/loongson2ef.md (UNSPEC_LOONGSON_ALU1_TURN_ENABLED_INSN)
20898         (UNSPEC_LOONGSON_ALU2_TURN_ENABLED_INSN)
20899         (UNSPEC_LOONGSON_FALU1_TURN_ENABLED_INSN)
20900         (UNSPEC_LOONGSON_FALU2_TURN_ENABLED_INSN): Moved from mips.md
20901         * config/mips/mips-dsp.md (UNSPEC_ADDQ, UNSPEC_ADDQ_S, UNSPEC_SUBQ)
20902         (UNSPEC_SUBQ_S, UNSPEC_ADDSC, UNSPEC_ADDWC, UNSPEC_MODSUB)
20903         (UNSPEC_RADDU_W_QB, UNSPEC_ABSQ_S, UNSPEC_PRECRQ_QB_PH)
20904         (UNSPEC_PRECRQ_PH_W, UNSPEC_PRECRQ_RS_PH_W, UNSPEC_PRECRQU_S_QB_PH)
20905         (UNSPEC_PRECEQ_W_PHL, UNSPEC_PRECEQ_W_PHR, UNSPEC_PRECEQU_PH_QBL)
20906         (UNSPEC_PRECEQU_PH_QBR, UNSPEC_PRECEQU_PH_QBLA, UNSPEC_PRECEQU_PH_QBRA)
20907         (UNSPEC_PRECEU_PH_QBL, UNSPEC_PRECEU_PH_QBR, UNSPEC_PRECEU_PH_QBLA)
20908         (UNSPEC_PRECEU_PH_QBRA, UNSPEC_SHLL, UNSPEC_SHLL_S, UNSPEC_SHRL_QB)
20909         (UNSPEC_SHRA_PH, UNSPEC_SHRA_R, UNSPEC_MULEU_S_PH_QBL)
20910         (UNSPEC_MULEU_S_PH_QBR, UNSPEC_MULQ_RS_PH, UNSPEC_MULEQ_S_W_PHL)
20911         (UNSPEC_MULEQ_S_W_PHR, UNSPEC_DPAU_H_QBL, UNSPEC_DPAU_H_QBR)
20912         (UNSPEC_DPSU_H_QBL, UNSPEC_DPSU_H_QBR, UNSPEC_DPAQ_S_W_PH)
20913         (UNSPEC_DPSQ_S_W_PH, UNSPEC_MULSAQ_S_W_PH, UNSPEC_DPAQ_SA_L_W)
20914         (UNSPEC_DPSQ_SA_L_W, UNSPEC_MAQ_S_W_PHL, UNSPEC_MAQ_S_W_PHR)
20915         (UNSPEC_MAQ_SA_W_PHL, UNSPEC_MAQ_SA_W_PHR, UNSPEC_BITREV, UNSPEC_INSV)
20916         (UNSPEC_REPL_QB, UNSPEC_REPL_PH, UNSPEC_CMP_EQ, UNSPEC_CMP_LT)
20917         (UNSPEC_CMP_LE, UNSPEC_CMPGU_EQ_QB, UNSPEC_CMPGU_LT_QB)
20918         (UNSPEC_CMPGU_LE_QB, UNSPEC_PICK, UNSPEC_PACKRL_PH, UNSPEC_EXTR_W)
20919         (UNSPEC_EXTR_R_W, UNSPEC_EXTR_RS_W, UNSPEC_EXTR_S_H, UNSPEC_EXTP)
20920         (UNSPEC_EXTPDP, UNSPEC_SHILO, UNSPEC_MTHLIP, UNSPEC_WRDSP)
20921         (UNSPEC_RDDSP): Moved from mips.md.
20922         * config/mips/mips-dspr2.md (UNSPEC_ABSQ_S_QB, UNSPEC_ADDU_PH)
20923         (UNSPEC_ADDU_S_PH, UNSPEC_ADDUH_QB, UNSPEC_ADDUH_R_QB, UNSPEC_APPEND)
20924         (UNSPEC_BALIGN, UNSPEC_CMPGDU_EQ_QB, UNSPEC_CMPGDU_LT_QB)
20925         (UNSPEC_CMPGDU_LE_QB, UNSPEC_DPA_W_PH, UNSPEC_DPS_W_PH, UNSPEC_MADD)
20926         (UNSPEC_MADDU, UNSPEC_MSUB, UNSPEC_MSUBU, UNSPEC_MUL_PH)
20927         (UNSPEC_MUL_S_PH, UNSPEC_MULQ_RS_W, UNSPEC_MULQ_S_PH, UNSPEC_MULQ_S_W)
20928         (UNSPEC_MULSA_W_PH, UNSPEC_MULT, UNSPEC_MULTU, UNSPEC_PRECR_QB_PH)
20929         (UNSPEC_PRECR_SRA_PH_W, UNSPEC_PRECR_SRA_R_PH_W, UNSPEC_PREPEND)
20930         (UNSPEC_SHRA_QB, UNSPEC_SHRA_R_QB, UNSPEC_SHRL_PH, UNSPEC_SUBU_PH)
20931         (UNSPEC_SUBU_S_PH, UNSPEC_SUBUH_QB, UNSPEC_SUBUH_R_QB, UNSPEC_ADDQH_PH)
20932         (UNSPEC_ADDQH_R_PH, UNSPEC_ADDQH_W, UNSPEC_ADDQH_R_W, UNSPEC_SUBQH_PH)
20933         (UNSPEC_SUBQH_R_PH, UNSPEC_SUBQH_W, UNSPEC_SUBQH_R_W, UNSPEC_DPAX_W_PH)
20934         (UNSPEC_DPSX_W_PH, UNSPEC_DPAQX_S_W_PH, UNSPEC_DPAQX_SA_W_PH)
20935         (UNSPEC_DPSQX_S_W_PH, UNSPEC_DPSQX_SA_W_PH): Moved from mips.md.
20936         * config/mips/mips-ps-3d.md (UNSPEC_MOVE_TF_PS, UNSPEC_C)
20937         (UNSPEC_ALNV_PS, UNSPEC_CABS, UNSPEC_ADDR_PS, UNSPEC_CVT_PW_PS)
20938         (UNSPEC_CVT_PS_PW, UNSPEC_MULR_PS, UNSPEC_ABS_PS, UNSPEC_RSQRT1)
20939         (UNSPEC_RSQRT2, UNSPEC_RECIP1, UNSPEC_RECIP2, UNSPEC_SINGLE_CC)
20940         (UNSPEC_SCC): Moved from mips.md.
20941         * config/mips/mips.c (mips_arch, mips_tune): Change enum from
20942         "processor_type" to "processor".
20943         (mips_rtx_cost_data): Replace PROCESSOR_MAX with NUM_PROCESSOR_VALUES.
20944         * config/mips/mips.h (processor_type): Delete.
20945         (mips_cpu_info.cpu, mips_arch, mips_tune): Change enum from
20946         "processor_type" to "processor".
20947
20948 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
20949
20950         * configure.ac (tm_include_list): Add insn-constants.h.
20951         * configure: Regenerate.
20952         * Makefile.in (GTM_H): Move insn-constants.h here from...
20953         (TM_H): ...here.
20954         * mkconfig.sh: Remove special handling for insn-constants.h.
20955
20956 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
20957
20958         * Makefile.in (BUILD_RTL): Move build/read-md.o to...
20959         (BUILD_MD): ...this new variable.
20960         (simple_generated_rtl_h, simple_generated_rtl_c): New variables
20961         that include the old contents of simple_generated_h and
20962         simple_generated_c.
20963         (simple_generated_h, simple_generated_c): Include them.  Add
20964         insn-constants.h.
20965         (s-%): Make simple_generated_{h,c} stamps depend on $(MD_DEPS)
20966         and simple_generated_rtl_{h,c} stamps depend on insn-conditions.md.
20967         Remove these dependencies from the main rule and include
20968         insn-conditions.md in the command line only if it appears
20969         in the dependency list.
20970         (insn-constants.h, s-constants): Delete.
20971         (build/genconstants.o): Don't depend on $(RTL_BASE_H), $(GTM_H)
20972         or gensupport.h.
20973         (build/genmddeps.o): Likewise.
20974         (genprogrtl): New variable that contains everything from genprogmd
20975         except mddeps and constants.
20976         (genprogmd): Redefine in terms of genprogrtl.  Make these programs
20977         depend on $(BUILD_MD)
20978         (genprog): New variable.  Make these programs depend on
20979         $(BUILD_ERRORS).
20980         * genmddeps.c: Don't include tm.h, rtl.h or gensupport.h.
20981         (main): Use read_md_files instead of init_rtx_reader_args.
20982         * genconstants.c: As for genmddeps.c.
20983         * read-md.h (read_skip_construct): Declare.
20984         * read-md.c (read_skip_construct): New function.
20985         (handle_file): Allow a null handle_directive, skipping the
20986         construct if so.
20987         (parse_include): Update the comment accordingly.
20988
20989 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
20990
20991         * Makefile.in (build/genmddeps.o): Depend on $(READ_MD_H).
20992         * genmddeps.c: Include read-md.h.
20993         (main): Call init_rtx_reader_args instead of init_md_reader_args.
20994         * genattr.c (main): Likewise.
20995         * genattrtab.c (main): Likewise.
20996         * genautomata.c (main): Likewise.
20997         * gencodes.c (main): Likewise.
20998         * genconditions.c (main): Likewise.
20999         * genconfig.c (main): Likewise.
21000         * genconstants.c (main): Likewise.
21001         * genemit.c (main): Likewise.
21002         * genextract.c (main): Likewise.
21003         * genflags.c (main): Likewise.
21004         * genopinit.c (main): Likewise.
21005         * genoutput.c (main): Likewise.
21006         * genpeep.c (main): Likewise.
21007         * genrecog.c (main): Likewise.
21008         * genpreds.c (main): Likewise.
21009         * gensupport.h (in_fname): Move to read-md.h.
21010         (init_md_reader_args_cb): Rename to...
21011         (init_rtx_reader_args_cb): ...this and return a bool.
21012         (init_md_reader_args): Rename to...
21013         (init_rtx_reader_args): ...this and return a bool.
21014         (include_callback): Move to read-md.h.
21015         * gensupport.c (in_fname, include_callback, base_dir, max_include_len)
21016         (file_name_list, first_dir_md_include): Move to read-md.c
21017         (first_bracket_include): Delete unused variable.
21018         (last_dir_md_include): Move to read-md.c.
21019         (process_include): Delete, moving code to read-md.c:handle_include.
21020         (process_rtx): Don't handle INCLUDE.
21021         (save_string): Delete.
21022         (rtx_handle_directive): New function.
21023         (init_md_reader_args_cb): Rename to...
21024         (init_rtx_reader_args_cb): ...this and return a boolean success value.
21025         Use read_md_args.
21026         (init_md_reader_args): Rename to...
21027         (init_rtx_reader_args): ...this and return a boolean success value.
21028         * rtl.def (INCLUDE): Delete.
21029         * rtl.h (read_rtx): Remove "int *" argument.  Add "const char *"
21030         argument.
21031         * read-rtl.c (read_conditions): Don't gobble ')' here.
21032         (read_mapping): Likewise.
21033         (read_rtx): Remove LINENO argument.  Add RTX_NAME argument.
21034         Handle top-level non-rtx constructs here rather than in read_rtx_1.
21035         Store the whole queue in *X.  Remove call to init_md_reader.
21036         (read_rtx_1): Rename to...
21037         (read_rtx_code): ...this.  Call read_nested_rtx to read subrtxes.
21038         Don't handle top-level non-rtx constructs here.  Don't handle (nil)
21039         here.
21040         (read_nested_rtx): New function.  Handle (nil) here rather than
21041         in read_rtx_code.
21042         (read_rtx_variadic): Call read_nested_rtx to read subrtxes.  Don't
21043         gobble ')' here.
21044         * read-md.h (directive_handler_t): New type.
21045         (in_fname, include_callback): Moved from read-md.h.
21046         (read_constants, init_md_reader): Delete.
21047         (read_md_files): Declare.
21048         * read-md.c (file_name_list, in_fname, base_dir, first_dir_md_include)
21049         (last_dir_md_include_ptr, include_callback, max_include_len): Moved
21050         from gensupport.c.
21051         (read_constants): Rename to...
21052         (handle_constants): ...this.  Don't gobble ')' here.
21053         (handle_include, handle_file, handle_toplevel_file)
21054         (parse_include): New functions, mostly taken from gensupport.c.
21055         (init_md_reader): Subsume into...
21056         (read_md_files): ...this new function.
21057
21058 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
21059
21060         * read-md.h (read_char): Increment read_md_lineno after reading '\n'.
21061         (unread_char): Decrement read_md_lineno after putting back '\n'.
21062         * read-md.c (fatal_with_file_and_line): Push back any characters
21063         that we decide not to add to the context.
21064         (read_skip_spaces): Don't increment read_md_lineno here.  Avoid using
21065         fatal_expected_char in cases where '/' ends a line (for example).
21066         (read_name): Don't increment read_md_lineno here.
21067         (read_escape): Likewise.
21068         (read_quoted_string): Likewise.
21069         (read_braced_string): Likewise.
21070
21071 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
21072
21073         * Makefile.in (READ_MD_H): Add $(HASHTAB_H).
21074         (build/genconstants.o): Depend on $(READ_MD_H) gensupport.h.
21075         * genconstants.c: Include read-md.h.
21076         * read-rtl.c (md_constants): Move to read-md.c.
21077         (md_name): Move to read-md.h.
21078         (initialize_iterators): Use leading_string_hash instead of def_hash
21079         and leading_string_eq_p instead of def_name_eq_p.
21080         (read_name): Move to read-md.c.
21081         (def_hash, def_name_eq_p): Delete.
21082         (read_constants, traverse_md_constants): Move to read-md.c.
21083         * rtl.h (md_constant, traverse_md_constants): Move to read-md.h.
21084         * read-md.h: Include hashtab.h.
21085         (md_name): Moved from read-rtl.c.
21086         (md_constant): Moved from read-md.h.
21087         (leading_string_hash, leading_string_eq_p, read_name)
21088         (read_constants, traverse_md_constants): Declare.
21089         * read-md.c (md_constants): Moved from read-rtl.c.
21090         (leading_string_hash, leading_string_eq_p): New functions.
21091         (read_name, read_constants, traverse_md_constants): Moved from
21092         read-rtl.c.
21093
21094 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
21095
21096         * read-rtl.c (md_name): New structure.
21097         (read_name): Take an md_name instead of a buffer pointer.
21098         Use the "string" field instead of strcpy when expanding constants.
21099         (read_constants): Remove the tmp_char argument.  Update the calls
21100         to read_name, using two local name buffers instead of the tmp_char
21101         argument.  Merge the constant-creation code.
21102         (read_conditions): Remove the tmp_char argument.  Update the calls
21103         to read_name, using a local name buffer instead of the tmp_char
21104         argument.
21105         (read_mapping): Replace tmp_char variable with a local name buffer.
21106         Update the calls to read_name.
21107         (read_rtx_1): Likewise.  Update the calls to read_constants and
21108         read_conditions.
21109
21110 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
21111
21112         * Makefile.in (build/read-md.o): Depend on errors.h.
21113         * read-md.h (error_with_line): Declare.
21114         * read-md.c: Include errors.h.
21115         (message_with_line_1): New function, extracted from...
21116         (message_with_line): ...here.
21117         (error_with_line): New function.
21118         * genattrtab.c: If a call to message_with_line is followed by
21119         "have_error = 1;", replace both statements with a call to
21120         error_with_line.
21121         * genoutput.c: Likewise.
21122         * genpreds.c: Likewise.
21123         * genrecog.c: If a call to message_with_line is followed by
21124         "error_count++;", replace both statements with a call to
21125         error_with_line.
21126         (errorcount): Delete.
21127         (main): Don't check it.
21128         * gensupport.c: If a call to message_with_line is followed by
21129         "errors = 1;", replace both statements with a call to error_with_line.
21130         (errors): Delete.
21131         (process_define_cond_exec): Check have_error instead of errors.
21132         (init_md_reader_args_cb): Likewise.  Don't set errors.
21133
21134 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
21135
21136         * read-md.h (read_md_file): Declare.
21137         (read_char, unread_char): New functions.
21138         (fatal_with_file_and_line, fatal_expected_char, read_skip_spaces)
21139         (read_quoted_string, read_string): Remove FILE * argument.
21140         * read-md.c (read_md_file): New variable.
21141         (read_md_filename, read_md_lineno): Update comments and remove
21142         unnecessary initialization.
21143         (fatal_with_file_and_line, fatal_expected_char, read_skip_spaces)
21144         (read_escape, read_quoted_string, read_braced_string, read_string):
21145         Remove FILE * argument.  Update calls accordingly, using read_char
21146         and unread_char instead of getc and ungetc.
21147         * rtl.h (read_rtx): Remove FILE * argument.
21148         * read-rtl.c (iterator_group): Remove FILE * argument from
21149         "find_builtin".
21150         (iterator_traverse_data): Remove "infile" field.
21151         (find_mode, find_code, apply_mode_maps, apply_iterator_to_rtx)
21152         (add_mapping, read_name, read_constants, read_conditions)
21153         (validate_const_int, find_iterator, read_mapping, check_code_iterator)
21154         (read_rtx, read_rtx_1, read_rtx_variadic): Remove FILE * argument.
21155         Remove file arguments from all calls, using read_char and unread_char
21156         instead of getc and ungetc.
21157         * gensupport.c (process_include): Preserve read_md_file around
21158         the include.  Set read_md_file to the handle of the included file.
21159         Update call to read_rtx.
21160         (init_md_reader_args_cb): Set read_md_file to the handle of the file
21161         and remove local FILE *.  Update calls to read_rtx.
21162
21163 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
21164
21165         * read-md.h (read_rtx_lineno): Rename to...
21166         (read_md_lineno): ...this.
21167         (read_rtx_filename): Rename to...
21168         (read_md_filename): ...this.
21169         (copy_rtx_ptr_loc): Rename to...
21170         (copy_md_ptr_loc): ...this.
21171         (print_rtx_ptr_loc): Rename to...
21172         (print_md_ptr_loc): ...this.
21173         * read-md.c: Likewise.  Update references after renaming.
21174         (string_obstack): Replace RTL with MD in comment.
21175         (set_rtx_ptr_loc): Rename to...
21176         (set_md_ptr_loc): ...this.
21177         (get_rtx_ptr_loc): Rename to...
21178         (get_md_ptr_loc): ...this.
21179         * genconditions.c: Update references after renaming.
21180         * genemit.c: Likewise.
21181         * genoutput.c: Likewise.
21182         * genpreds.c: Likewise.
21183         * gensupport.c: Likewise.
21184         * read-rtl.c: Likewise.
21185
21186 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
21187
21188         * Makefile.in (READ_MD_H): New variable.
21189         (BUILD_RTL): Add build/read-md.o.
21190         (lto-wrapper.o): Depend on coretypes.h instead of defaults.h.
21191         (build/gensupport.o, build/read-rtl.o, build/genattr.o)
21192         (build/genattrtab.o, build/genconditions.o build/genemit.o)
21193         (build/genextract.o, build/genflags.o, build/genoutput.o)
21194         (build/genpreds.o, build/genrecog.o): Depend on $(READ_MD_H).
21195         (build/read-md.o): New rule.
21196         * defaults.h (obstack_chunk_alloc, obstack_chunk_free)
21197         (OBSTACK_CHUNK_SIZE, gcc_obstack_init): Move to...
21198         * coretypes.h: ...here.
21199         * lto-wrapper.c: Include coretypes.h instead of defaults.h.
21200         * pretty-print.c (obstack_chunk_alloc, obstack_chunk_free): Delete.
21201         * genattr.c: Include read-md.h.
21202         * genattrtab.c: Likewise.
21203         * genconditions.c: Likewise.
21204         * genemit.c: Likewise.
21205         * genextract.c: Likewise.
21206         * genflags.c: Likewise.
21207         * genoutput.c: Likewise.
21208         * genpreds.c: Likewise.
21209         * genrecog.c: Likewise.
21210         * rtl.h (read_skip_spaces, copy_rtx_ptr_loc, print_rtx_ptr_loc)
21211         (join_c_conditions, print_c_condition, read_rtx_filename)
21212         (read_rtx_lineno): Move to read-md.h.
21213         * read-rtl.c: Include read-md.h.
21214         (ptr_loc, string_obstack, ptr_locs, ptr_loc_obstack)
21215         (joined_conditions, joined_conditions_obstack, read_rtx_lineno)
21216         (read_rtx_filename, fatal_with_file_and_line, fatal_expected_char)
21217         (leading_ptr_hash, leading_ptr_eq_p, set_rtx_ptr_loc, get_rtx_ptr_loc)
21218         (copy_rtx_ptr_loc, print_rtx_ptr_loc, join_c_conditions)
21219         (print_c_condition, read_skip_spaces, read_escape, read_quoted_string)
21220         (read_braced_string, read_string): Move to read-md.c.
21221         (read_rtx): Move some initialization to init_md_reader and call
21222         init_md_reader here.
21223         * gensupport.h (message_with_line, n_comma_elts, scan_comma_elt):
21224         Move to read-md.h.
21225         * gensupport.c: Include read-md.h.
21226         (message_with_line, n_comma_elts, scan_comma_elt): Move to read-md.c.
21227         * read-md.h, read-md.c: New files.
21228
21229 2010-06-10  Anatoly Sokolov  <aesok@post.ru>
21230
21231         * config/moxie/moxie.h (FUNCTION_VALUE, FUNCTION_OUTGOING_VALUE,
21232         LIBCALL_VALUE, FUNCTION_VALUE_REGNO_P): Remove macros.
21233         * config/moxie/moxie-protos.h (moxie_function_value): Remove.
21234         * config/moxie/moxie.c (moxie_function_value): Make static.
21235         (moxie_libcall_value, moxie_function_value_regno_p): New functions.
21236         (TARGET_LIBCALL_VALUE, TARGET_FUNCTION_VALUE_REGNO_P): Define.
21237
21238 2010-06-10  Martin Jambor  <mjambor@suse.cz>
21239
21240         * Makefile.in (tree-sra.o): Add DBGCNT_H to dependencies.
21241         * dbgcnt.def (tree_sra): New counter.
21242         * tree-sra.c: Include dbgcnt.h.
21243         (gate_intra_sra): Check tree_sra debug counter.
21244
21245 2010-06-10  Martin Jambor  <mjambor@suse.cz>
21246
21247         PR tree-optimization/44258
21248         * tree-sra.c (build_access_subtree): Return false iff there is a
21249         partial overlap.
21250         (build_access_trees): Likewise.
21251         (analyze_all_variable_accesses): Disqualify candidates if
21252         build_access_trees returns true for them.
21253
21254 2010-06-10  Alexandre Oliva  <aoliva@redhat.com>
21255
21256         PR debug/41371
21257         * var-tracking.c (find_loc_in_1pdv): Remove recursion, only
21258         tail-recurse into canonical node.  Fast-forward over
21259         non-canonical VALUEs.
21260
21261 2010-06-10  H.J. Lu  <hongjiu.lu@intel.com>
21262
21263         PR boostrap/44470
21264         * config/i386/i386.md (*add<mode>_1): Revert revision 160394.
21265         (*addsi_1_zext) <TYPE_LEA>: Likewise.
21266         (add lea splitter): Likewise.
21267         (add_zext lea splitter): Likewise.
21268
21269 2010-06-10  Joseph Myers  <joseph@codesourcery.com>
21270
21271         * common.opt (fshow-column): Don't mark as C ObjC C++ ObjC++.
21272
21273 2010-06-10  Jan Hubicka  <jh@suse.cz>
21274
21275         * df-problems.c (df_live_problem_data): Add live_bitmaps.
21276         (df_live_alloc): Initialize problem data and live_osbtacks.
21277         (df_live_finalize): Remove obstack, problem data; do not
21278         clear all bitmaps.
21279         (df_live_top_dump, df_live_bottom_dump): Do not dump old
21280         data when not allocated.
21281         (df_live_verify_solution_start): Do not allocate problem data.
21282         (df_live_verify_solution_end): Check if out is allocated.
21283         (struct df_md_problem_data): New structure.
21284         (df_md_alloc): Allocate problem data.
21285         (df_md_free): Free problem data; do not clear bitmaps.
21286
21287 2010-06-10  Jan Beulich  <jbeulich@novell.com>
21288
21289         PR bootstrap/37304
21290         * configure.ac: Replace $() with ${} when intending to expand
21291         variables rather than invoking commands.
21292         * configure: Re-generate.
21293
21294 2010-06-10  Jan Hubicka  <jh@suse.cz>
21295
21296         PR rtl-optimization/44460
21297         * emit-rtl.c (set_mem_attributes_minus_bitpos): Remove
21298         TYPE_NEEDS_CONSTRUCTING sanity check.
21299
21300 2010-06-10  Gerald Pfeifer  <gerald@pfeifer.com>
21301
21302         * doc/include/fdl.texi: Move to GFDL version 1.3.
21303
21304         * doc/cpp.texi: Move to GFDL version 1.3.
21305         * doc/gcc.texi: Move to GFDL version 1.3.  Fix copyright years.
21306         * doc/gccint.texi: Move to GFDL version 1.3.
21307         * doc/gcov.texi: Move to GFDL version 1.3.  Update copyright years.
21308         * doc/install.texi: Move to GFDL version 1.3.  Fix copyright years.
21309         * doc/invoke.texi: Move to GFDL version 1.3.
21310
21311 2010-06-09  Jan Hubicka  <jh@suse.cz>
21312
21313         * ipa-pure-const.c (propagate_pure_const, propagate_noreturn):
21314         Break out from ...
21315         (propagate) ... here; swap the order.
21316
21317 2010-06-09  Jan Hubicka  <jh@suse.cz>
21318
21319         * bitmap.c (bitmap_elt_insert_after, bitmap_first_set_bit,
21320         bitmap_first_set_bit, bitmap_last_set_bit, bitmap_last_set_bit,
21321         bitmap_and_into, bitmap_and_compl_into, bitmap_set_range,
21322         bitmap_compl_and_into, bitmap_elt_ior): Use checking asserts.
21323
21324 2010-06-09  Changpeng Fang  <changpeng.fang@amd.com>
21325
21326         * tree-ssa-loop-prefetch.c (gather_memory_references_ref):
21327         Do not the gather memory reference in the outer loop if the step
21328         is not a constant.
21329
21330 2010-06-09  Changpeng Fang  <changpeng.fang@amd.com>
21331
21332         * tree-ssa-loop-prefetch.c (PREFETCH_MOD_TO_UNROLL_FACTOR_RATIO) :
21333         Change the PREFETCH_MOD_TO_UNROLL_FACTOR_RATIO threshold value from
21334         8 to 4.  Minor change of the related comments.
21335
21336 2010-06-09  Sebastian Pop  <sebastian.pop@amd.com>
21337
21338         * tree-scalar-evolution.c (instantiate_scev_name): Do not fail
21339         the scev analysis when the variable is not used outside the loop
21340         in a close phi node: call compute_overall_effect_of_inner_loop.
21341
21342 2010-06-09  Sebastian Pop  <sebastian.pop@amd.com>
21343
21344         * graphite-sese-to-poly.c (single_pred_cond): Renamed
21345         single_pred_cond_non_loop_exit.  Return NULL for loop exit edges.
21346         (build_sese_conditions_before): Renamed call to single_pred_cond.
21347         (build_sese_conditions_after): Same.
21348
21349 2010-06-09  Sebastian Pop  <sebastian.pop@amd.com>
21350
21351         * graphite-poly.h: Fix comments and indentation.
21352         * graphite-sese-to-poly.c: Same.
21353         (build_sese_conditions_before): Compute stmt and gbb only when needed.
21354         * tree-chrec.c: Fix comments and indentation.
21355         (tree-ssa-loop-niter.c): Same.
21356
21357 2010-06-09  Eric Botcazou  <ebotcazou@adacore.com>
21358
21359         PR rtl-optimization/42461
21360         * dce.c (deletable_insn_p): Return true for const or pure calls again.
21361         * except.c (insn_could_throw_p): Return false if !flag_exceptions.
21362
21363 2010-06-09  Jan Hubicka  <jh@suse.cz>
21364
21365         * bitmap.c (bitmap_and): Walk array forward.
21366         (bitmap_and_compl_into): Likewise.
21367         (bitmap_xor): Likewise.
21368         (bitmap_xor_into):  Likewise.
21369         (bitmap_equal_p): Likewise.
21370         (bitmap_intersect_p): Likewise.
21371         (bitmap_intersect_compl_p): Likewise.
21372         (bitmap_ior_and_into): Likewise.
21373         (bitmap_elt_copy): Likewise.
21374         (bitmap_and_compl): Likewise.
21375         (bitmap_elt_ior): Likewise.
21376
21377 2010-06-09  Dave Korn  <dave.korn.cygwin@gmail.com>
21378
21379         * opts-common.c (prune_options): Ensure replacement argv array
21380         is correctly terminated by a NULL entry.
21381
21382 2010-06-09  Jan Hubicka  <jh@suse.cz>
21383
21384         * cgraph.h (varpool_first_static_initializer,
21385         varpool_next_static_initializer): Make checking only when
21386         checking enabled.
21387         * tree-vectorizer.h (vinfo_for_stmt): Remove check.
21388         (set_vinfo_for_stmt, get_earlier_stmt, is_loop_header_bb_p): Change
21389         gcc_assert to gcc_checking_assert.
21390         * tree-flow-inline.h (gimple_vop, get_var_ann, relink_imm_use,
21391         phi_nodes, set_phi_nodes, phi_arg_index_from_use, op_iter_next_use,
21392         op_iter_next_def, op_iter_next_tree, op_iter_init, op_iter_init_use,
21393         op_iter_init_phiuse, op_iter_init_phidef,
21394         array_ref_contains_indirect_ref, ref_contains_array_ref): Use
21395         gcc_checking_assert.
21396         * emit-rtl.h (set_first_insn, set_last_insn): Likewise.
21397         * tree-ssa-live.h (var_to_partition, var_to_partition_to_var,
21398         partition_is_global, live_on_entry, live_on_exit,
21399         live_merge_and_clear): Likewise.
21400         * system.h (gcc_checking_assert): New macro.
21401         * gimple.h (set_bb_seq): Use gcc_checking_assert.
21402
21403 2010-06-09  Jason Merrill  <jason@redhat.com>
21404
21405         * Makefile.in (TAGS): Collect tags info from c-family.
21406
21407 2010-06-09  Jan Hubicka  <jh@suse.cz>
21408
21409         * gimple.h (gcc_gimple_checking_assert): New macro.
21410         (gimple_set_def_ops, gimple_set_use_ops,
21411         gimple_set_vuse, gimple_set_vdef,
21412         gimple_omp_subcode, gimple_omp_set_subcode, gimple_ops, gimple_op,
21413         gimple_op_ptr, gimple_op_ptr, gimple_set_op, gimple_bind_set_block,
21414         gimple_asm_input_op, gimple_asm_input_op_ptr, gimple_asm_set_input_op,
21415         gimple_asm_output_op, gimple_asm_output_op_ptr,
21416         gimple_asm_set_output_op, gimple_asm_clobber_op,
21417         gimple_asm_set_clobber_op, gimple_asm_label_op,
21418         gimple_asm_set_label_op, gimple_try_set_kind,
21419         gimple_try_catch_is_cleanup, gimple_try_set_catch_is_cleanup,
21420         gimple_phi_arg, gimple_switch_num_labels, gimple_switch_set_index,
21421         gimple_switch_label, gimple_switch_set_label, gimple_omp_for_index,
21422         gimple_omp_for_index_ptr, gimple_omp_for_set_index,
21423         gimple_omp_for_initial, gimple_omp_for_initial_ptr,
21424         gimple_omp_for_set_initial, gimple_omp_for_final,
21425         gimple_omp_for_final_ptr, gimple_omp_for_set_final,
21426         gimple_omp_for_incr, gimple_omp_for_incr_ptr, gimple_omp_for_set_incr,
21427         gimple_omp_for_set_cond, gimple_omp_for_cond): Make checking
21428         conditional with ENABLE_GIMPLE_CHECKING.
21429         (gimple_phi_set_arg): Likewise; replace memcpy by assignment.
21430
21431 2010-06-09  Sandra Loosemore  <sandra@codesourcery.com>
21432
21433         * tree-ssa-loop-ivopts.c (adjust_setup_cost): New function.
21434         (get_computation_cost_at): Use it.
21435         (determine_use_iv_cost_condition): Likewise.
21436         (determine_iv_cost): Likewise.
21437
21438 2010-06-09  Richard Guenther  <rguenther@suse.de>
21439
21440         * tree-ssa-loop-niter.c (simplify_replace_tree): Do not
21441         replace constants.
21442
21443 2010-06-09  Kai Tietz  <kai.tietz@onevision.com>
21444
21445         * c-objc-common.c (c_tree_printer): Pre-intialize t by NULL_TREE.
21446
21447 2010-06-09  Martin Jambor  <mjambor@suse.cz>
21448
21449         PR tree-optimization/44423
21450         * tree-sra.c (dump_access): Dump also grp_assignment_read.
21451         (analyze_access_subtree): Pass negative allow_replacements to children
21452         if the current type is scalar.
21453
21454 2010-06-09  Joern Rennecke  <joern.rennecke@embecosm.com>
21455
21456         PR testsuite/42843
21457         * gcc-plugin.h (int plugin_is_GPL_compatible): Declare as extern "C".
21458         * doc/plugins.texi (Plugin license check): Update information
21459         on type of plugin_is_GPL_compatible.
21460         * Makefile.in (PLUGINCC): Define as $(COMPILER).
21461         (PLUGINCFLAGS): Define as $(COMPILER_FLAGS).
21462
21463 2010-06-09  Bernd Schmidt  <bernds@codesourcery.com>
21464
21465         * config/arm/arm.c (thumb2_reorg): New function.
21466         (arm_reorg): Call it.
21467         * config/arm/thumb2.md (define_peephole2 for flag clobbering
21468         arithmetic operations): Delete.
21469
21470 2010-06-09  Edmar Wienskoski  <edmar@freescale.com>
21471
21472         PR target/44067
21473         * config/rs6000/rs6000.md (DIFD): Do not split dpfp values for
21474         e500v2 target.
21475
21476 2010-06-09  Joern Rennecke  <joern.rennecke@embecosm.com>
21477
21478         PR plugins/44459
21479         * gcc-plugin.h: Encapsulate all declarations in extern "C".
21480
21481 2010-06-08  Jan Hubicka  <jh@suse.cz>
21482
21483         * basic-block.h (single_succ_edge, single_pred_edge, ei_container,
21484         ei_next, ei_prev): Do sanity checking with ENABLE_CHECKING only.
21485
21486 2010-06-08  Sandra Loosemore  <sandra@codesourcery.com>
21487
21488         PR tree-optimization/39874
21489         PR middle-end/28685
21490         * gimple.h (maybe_fold_and_comparisons, maybe_fold_or_comparisons):
21491         Declare.
21492         * gimple-fold.c (canonicalize_bool, same_bool_comparison_p,
21493         same_bool_result_p): New.
21494         (and_var_with_comparison, and_var_with_comparison_1,
21495         and_comparisons_1, and_comparisons, maybe_fold_and_comparisons): New.
21496         (or_var_with_comparison, or_var_with_comparison_1,
21497         or_comparisons_1, or_comparisons, maybe_fold_or_comparisons): New.
21498         * tree-ssa-reassoc.c (eliminate_redundant_comparison): Use
21499         maybe_fold_and_comparisons or maybe_fold_or_comparisons instead
21500         of combine_comparisons.
21501         * tree-ssa-ifcombine.c (ifcombine_ifandif, ifcombine_iforif): Likewise.
21502
21503 2010-06-08  Anatoly Sokolov  <aesok@post.ru>
21504
21505         * config/pdp11/pdp11.h (FUNCTION_VALUE, FUNCTION_OUTGOING_VALUE,
21506         LIBCALL_VALUE, FUNCTION_VALUE_REGNO_P): Remove macros.
21507         * config/pdp11/pdp11.c (pdp11_function_value, pdp11_libcall_value,
21508         pdp11_function_value_regno_p): New functions.
21509         (TARGET_FUNCTION_VALUE, TARGET_LIBCALL_VALUE,
21510         TARGET_FUNCTION_VALUE_REGNO_P): Define.
21511
21512 2010-06-08  Kazu Hirata  <kazu@codesourcery.com>
21513
21514         * config/arm/arm.c (arm_rtx_costs_1): Don't special case for
21515         Thumb-2 in the MINUS case.
21516
21517 2010-06-08  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
21518
21519         * doc/tm.texi (Per-Function Data): Do not reference ggc_alloc.
21520
21521         * doc/gty.texi (GTY Options): Document typed GC allocation and
21522         variable_size GTY option.
21523
21524         * ggc-internal.h: New.
21525
21526         * ggc.h: Update copyright year.
21527         (digit_string): Move to stringpool.c.
21528         (ggc_mark_stringpool, ggc_purge_stringpool, ggc_mark_roots)
21529         (gt_pch_save_stringpool, gt_pch_fixup_stringpool)
21530         (gt_pach_restore_stringpool, gt_pch_p_S, gt_pch_note_object)
21531         (init_ggc_pch, ggc_pch_count_object, ggc_pch_total_size)
21532         (ggc_pch_this_base, ggc_pch_alloc_object, ggc_pch_prepare_write)
21533         (ggc_pch_write_object, ggc_pch_finish, ggc_pch_read)
21534         (ggc_force_collect, ggc_get_size, ggc_statistics)
21535         (ggc_print_common_statistics): Move to ggc-internal.h.
21536         (digit_vector, new_ggc_zone, destroy_ggc_zone, ggc_alloc_stat)
21537         (ggc_alloc, ggc_alloc_cleared, ggc_realloc, ggc_calloc, GGC_NEW)
21538         (GGC_CNEW, GGC_NEWVEC, GGC_CNEWVEC, GGC_NEWVAR, ggc_alloc_rtvec)
21539         (ggc_alloc_tree, gt_pch_save, ggc_min_expand_heuristic)
21540         (ggc_min_heapsize_heuristic, ggc_alloc_zone)
21541         (ggc_alloc_zone_pass_stat): Remove.
21542         (ggc_internal_alloc_stat, ggc_internal_alloc)
21543         (ggc_internal_cleared_alloc_stat): New.
21544         (GGC_RESIZEVEC, GGC_RESIZEVAR): Redefine.
21545         (ggc_internal_vec_alloc_stat)
21546         (ggc_internal_cleared_vec_alloc_stat)
21547         (ggc_internal_vec_alloc_stat, ggc_internal_cleared_vec_alloc)
21548         (ggc_alloc_atomic_stat, ggc_alloc_atomic)
21549         (ggc_alloc_cleared_atomic, ggc_cleared_alloc_htab_ignore_args)
21550         (ggc_cleared_alloc_ptr_array_two_args): New.
21551         (htab_create_ggc, splay_tree_new_ggc): Redefine.
21552         (ggc_splay_alloc): Change the type of the first argument to
21553         enum gt_types_enum.
21554         (ggc_alloc_string): Make macro.
21555         (ggc_alloc_string_stat): New.
21556         (ggc_strdup): Redefine.
21557         (rtl_zone, tree_zone, tree_id_zone): Declare unconditionally.
21558         (ggc_alloc_rtvec_sized): New.
21559         (ggc_alloc_zone_stat): Rename to ggc_internal_alloc_zone_stat.
21560         (ggc_internal_alloc_zone_pass_stat, ggc_internal_alloc_zone_stat)
21561         (ggc_internal_cleared_alloc_zone_stat)
21562         (ggc_internal_zone_alloc_stat)
21563         (ggc_internal_zone_cleared_alloc_stat)
21564         (ggc_internal_zone_vec_alloc_stat)
21565         (ggc_alloc_zone_rtx_def_stat)
21566         (ggc_alloc_zone_tree_node_stat)
21567         (ggc_alloc_zone_cleared_tree_node_stat)
21568         (ggc_alloc_cleared_gimple_statement_d_stat): New.
21569
21570         * ggc-common.c: Include ggc-internal.h.
21571         (ggc_internal_cleared_alloc_stat): Rename from
21572         ggc_alloc_cleared_stat.
21573         (ggc_realloc_stat): Use ggc_internal_alloc_stat.
21574         (ggc_calloc): Remove.
21575         (ggc_cleared_alloc_htab_ignore_args): New.
21576         (ggc_cleared_alloc_ptr_array_two_args): New.
21577         (ggc_splay_alloc): Add obj_type parameter.
21578         (init_ggc_heuristics): Formatting fixes.
21579
21580         * ggc-none.c: Update copyright year.
21581         (ggc_alloc_stat): Rename to ggc_alloc_stat.
21582         (ggc_alloc_cleared_stat): Rename to
21583         ggc_internal_cleared_alloc_stat.
21584         (struct alloc_zone, rtl_zone, tree_zone, tree_id_zone): New.
21585
21586         * ggc-page.c: Update copyright year.  Include ggc-internal.h.
21587         Remove references to ggc_alloc in comments.
21588         (ggc_alloc_typed_stat): Call ggc_internal_alloc_stat.
21589         (ggc_alloc_stat): Rename to ggc_internal_alloc_stat.
21590         (new_ggc_zone, destroy_ggc_zone): Remove.
21591         (struct alloc_zone, rtl_zone, tree_zone, tree_id_zone): New.
21592
21593         * ggc-zone.c: Include ggc-internal.h.  Remove references to
21594         ggc_alloc in comments.
21595         (ggc_alloc_zone_stat): ggc_internal_alloc_zone_stat.
21596         (ggc_internal_alloc_zone_pass_stat): New.
21597         (ggc_internal_cleared_alloc_zone_stat): New.
21598         (ggc_alloc_typed_stat): Use ggc_internal_alloc_zone_pass_stat.
21599         (ggc_alloc_stat): Rename ggc_internal_alloc_stat.
21600         (new_ggc_zone, destroy_ggc_zone): Remove.
21601
21602         * stringpool.c: Update copyright year.  Include ggc-internal.h
21603         (digit_vector): Make static.
21604         (digit_string): Moved from ggc.h.
21605         (stringpool_ggc_alloc): Use ggc_alloc_atomic.
21606         (ggc_alloc_string): Rename to ggc_alloc_string_stat.
21607
21608         * Makefile.in (GGC_INTERNAL_H): New.
21609         (ggc_common.o, ggc-page.o, ggc-zone.o, stringpool.o): Add
21610         $(GGC_INTERNAL_H) to dependencies.
21611
21612         * gentype.c: Update copyright year.
21613         (walk_type): Accept variable_size GTY option.
21614         (USED_BY_TYPED_GC_P): New macro.
21615         (write_enum_defn): Use USED_BY_TYPED_GC_P.  Do not output
21616         whitespace at the end of strings.
21617         (get_type_specifier, variable_size_p): New functions.
21618         (alloc_quantity, alloc_zone): New enums.
21619         (write_typed_alloc_def): New function.
21620         (write_typed_struct_alloc_def): Likewise.
21621         (write_typed_typed_typedef_alloc_def): Likewise.
21622         (write_typed_alloc_defns): Likewise.
21623         (output_typename, write_splay_tree_allocator_def): Likewise.
21624         (write_splay_tree_allocators): Likewise.
21625         (main): Call write_typed_alloc_defns and
21626         write_splay_tree_allocators.
21627
21628         * lto-streamer.h (lto_file_decl_data_ptr): New.
21629
21630         * passes.c (order): Define using cgraph_node_ptr.
21631
21632         * strinpool.c (struct string_pool_data): Declare nested_ptr using
21633         ht_identifier_ptr.
21634
21635         * gimple.h (union gimple_statement_d): Likewise.
21636
21637         * rtl.h (struct rtx_def): Likewise.
21638         (struct rtvec_def): Likewise.
21639
21640         * tree.h (union tree_node): Likewise.
21641
21642         * tree-ssa-operands.h (struct ssa_operand_memory_d): Likewise.
21643
21644         * cfgloop.c (record_loop_exits): Use htab_create_ggc.
21645
21646         * tree-scalar-evolution.c (scev_initialize): Likewise.
21647
21648         * alias.c (record_alias_subset): Update splay_tree_new_ggc call.
21649
21650         * dwarf2asm.c (dw2_force_const_mem): Likewise.
21651
21652         * omp-low.c (lower_omp_critical): Likewise.
21653
21654         * bitmap.h (struct bitmap_head_def): Update comment to not
21655         reference ggc_alloc.
21656
21657         * config/pa/pa.c (get_deferred_label): Use GGC_RESIZEVEC.
21658
21659         * ira.c (fix_reg_equiv_init): Use GGC_RESIZEVEC.
21660
21661         * ipa-prop.c (duplicate_ggc_array): Rename to
21662         duplicate_ipa_jump_func_array.  Use typed GC allocation.
21663         (ipa_edge_duplication_hook): Call duplicate_ipa_jump_func_array.
21664
21665         * gimple.c (gimple_alloc_stat): Use
21666         ggc_alloc_cleared_gimple_statement_d_stat.
21667
21668         * varasm.c (create_block_symbol): Use ggc_alloc_zone_rtx_def.
21669
21670         * tree.c (make_node_stat): Use
21671         ggc_alloc_zone_cleared_tree_node_stat.
21672         (make_tree_vec_stat): Likewise.
21673         (build_vl_exp_stat): Likewise.
21674         (copy_node_stat): Use ggc_alloc_zone_tree_node_stat.
21675         (make_tree_binfo_stat): Likewise.
21676         (tree_cons_stat): Likewise.
21677
21678         * rtl.c (rtx_alloc_stat): Use ggc_alloc_zone_rtx_def_stat.
21679         (shallow_copy_rtx_stat): Likewise.
21680         (make_node_stat): Likewise.
21681
21682         * lto-symtab.c: Fix comment.
21683
21684         * tree-cfg.c (create_bb): Update comment to not reference
21685         ggc_alloc_cleared.
21686         * tree-ssa-structalias.c (struct heapvar_for_stmt): Fix param_is value.
21687
21688         * varpool.c (varpool_node): Use typed GC allocation.
21689         (varpool_extra_name_alias): Likewise.
21690
21691         * varasm.c (emutls_decl): Likewise.
21692         (get_unnamed_section): Likewise.
21693         (get_noswitch_section): Likewise.
21694         (get_section): Likewise.
21695         (get_block_for_section): Likewise.
21696         (build_constant_desc): Likewise.
21697         (create_constant_pool): Likewise.
21698         (force_const_mem): Likewise.
21699
21700         * tree.c (build_vl_exp_stat): Likewise.
21701         (build_real): Likewise.
21702         (build_string): Likewise.
21703         (decl_debug_expr_insert): Likewise.
21704         (decl_value_expr_insert): Likewise.
21705         (type_hash_add): Likewise.
21706         (build_omp_clause): Likewise.
21707
21708         * tree-ssanames.c (duplicate_ssa_name_ptr_info): Likewise.
21709
21710         * tree-ssa.c (init_tree_ssa): Likewise.
21711
21712         * tree-ssa-structalias.c (heapvar_insert): Likewise.
21713
21714         * tree-ssa-operands.c (ssa_operand_alloc): Likewise.
21715
21716         * tree-ssa-loop-niter.c (record_estimate): Likewise.
21717
21718         * tree-ssa-alias.c (get_ptr_info): Likewise.
21719
21720         * tree-scalar-evolution.c (new_scev_info_str): Likewise.
21721
21722         * tree-phinodes.c (allocate_phi_node): Likewise.
21723
21724         * tree-iterator.c (tsi_link_before): Likewise.
21725         (tsi_link_after): Likewise.
21726
21727         * tree-eh.c (add_stmt_to_eh_lp_fn): Likewise.
21728
21729         * tree-dfa.c (create_var_ann): Likewise.
21730
21731         * tree-cfg.c (create_bb): Likewise.
21732
21733         * toplev.c (alloc_for_identifier_to_locale): Likewise.
21734         (general_init): Likewise.
21735
21736         * stringpool.c (stringpool_ggc_alloc): Likewise.
21737         (gt_pch_save_stringpool): Likewise.
21738
21739         * sese.c (if_region_set_false_region): Likewise.
21740
21741         * passes.c (do_per_function_toporder): Likewise.
21742
21743         * optabs.c (set_optab_libfunc): Likewise.
21744         (set_conv_libfunc): Likewise.
21745
21746         * lto-symtab.c (lto_symtab_register_decl): Likewise.
21747
21748         * lto-streamer-in.c (lto_input_eh_catch_list): Likewise.
21749         (input_eh_region): Likewise.
21750         (input_eh_lp): Likewise.
21751         (make_new_block): Likewise.
21752         (unpack_ts_real_cst_value_fields): Likewise.
21753
21754         * lto-section-in.c (lto_new_in_decl_state): Likewise.
21755
21756         * lto-cgraph.c (input_node_opt_summary): Likewise.
21757
21758         * loop-init.c (loop_optimizer_init): Likewise.
21759
21760         * lambda.h (lambda_vector_new): Likewise.
21761
21762         * lambda-code.c (replace_uses_equiv_to_x_with_y): Likewise.
21763
21764         * ira.c (update_equiv_regs): Likewise.
21765
21766         * ipa.c (cgraph_node_set_new): Likewise.
21767         (cgraph_node_set_add): Likewise.
21768         (varpool_node_set_new): Likewise.
21769         (varpool_node_set_add): Likewise.
21770
21771         * ipa-prop.c (ipa_compute_jump_functions_for_edge): Likewise.
21772         (duplicate_ipa_jump_func_array): Likewise.
21773         (ipa_read_node_info): Likewise.
21774
21775         * ipa-cp.c (ipcp_create_replace_map): Likewise.
21776
21777         * integrate.c (get_hard_reg_initial_val): Likewise.
21778
21779         * gimple.c (gimple_alloc_stat): Likewise.
21780         (gimple_build_omp_for): Likewise.
21781         (gimple_seq_alloc): Likewise.
21782         (gimple_copy): Likewise.
21783
21784         * gimple-iterator.c (gsi_insert_before_without_update): Likewise.
21785         (gsi_insert_after_without_update): Likewise.
21786
21787         * function.c (add_frame_space): Likewise.
21788         (insert_temp_slot_address): Likewise.
21789         (assign_stack_temp_for_type): Likewise.
21790         (allocate_struct_function): Likewise.
21791         (types_used_by_var_decl_insert): Likewise.
21792
21793         * except.c (init_eh_for_function): Likewise.
21794         (gen_eh_region): Likewise.
21795         (gen_eh_region_catch): Likewise.
21796         (gen_eh_landing_pad): Likewise.
21797         (add_call_site): Likewise.
21798
21799         * emit-rtl.c (get_mem_attrs): Likewise.
21800         (get_reg_attrs): Likewise.
21801         (start_sequence): Likewise.
21802         (init_emit): Likewise.
21803
21804         * dwarf2out.c (new_cfi): Likewise.
21805         (queue_reg_save): Likewise.
21806         (dwarf2out_frame_init): Likewise.
21807         (new_loc_descr): Likewise.
21808         (find_AT_string): Likewise.
21809         (new_die): Likewise.
21810         (add_var_loc_to_decl): Likewise.
21811         (clone_die): Likewise.
21812         (clone_as_declaration): Likewise.
21813         (break_out_comdat_types): Likewise.
21814         (new_loc_list): Likewise.
21815         (loc_descriptor): Likewise.
21816         (add_loc_descr_to_each): Likewise.
21817         (add_const_value_attribute): Likewise.
21818         (tree_add_const_value_attribute): Likewise.
21819         (add_comp_dir_attribute): Likewise.
21820         (add_name_and_src_coords_attributes): Likewise.
21821         (lookup_filename): Likewise.
21822         (store_vcall_insn): Likewise.
21823         (dwarf2out_init): Likewise.
21824
21825         * dbxout.c (dbxout_init): Likewise.
21826
21827         * config/xtensa/xtensa.c (xtensa_init_machine_status): Likewise.
21828
21829         * config/sparc/sparc.c (sparc_init_machine_status): Likewise.
21830
21831         * config/score/score7.c (score7_output_external): Likewise.
21832
21833         * config/score/score3.c (score3_output_external): Likewise.
21834
21835         * config/s390/s390.c (s390_init_machine_status): Likewise.
21836
21837         * config/rs6000/rs6000.c (builtin_function_type): Likewise.
21838         (rs6000_init_machine_status): Likewise.
21839         (output_toc): Likewise.
21840
21841         * config/pa/pa.c (pa_init_machine_status): Likewise.
21842         (get_deferred_plabel): Likewise.
21843
21844         * config/moxie/moxie.c (moxie_init_machine_status): Likewise.
21845
21846         * config/mmix/mmix.c (mmix_init_machine_status): Likewise.
21847
21848         * config/mips/mips.c (mflip_mips16_use_mips16_p): Likewise.
21849
21850         * config/mep/mep.c (mep_init_machine_status): Likewise.
21851         (mep_note_pragma_flag): Likewise.
21852
21853         * config/m32c/m32c.c (m32c_init_machine_status): Likewise.
21854
21855         * config/iq2000/iq2000.c (iq2000_init_machine_status): Likewise.
21856
21857         * config/ia64/ia64.c (ia64_init_machine_status): Likewise.
21858
21859         * config/i386/winnt.c (i386_pe_record_external_function): Likewise.
21860         (i386_pe_maybe_record_exported_symbol): Likewise.
21861
21862         * config/i386/i386.c (get_dllimport_decl): Likewise.
21863         (ix86_init_machine_status): Likewise.
21864         (assign_386_stack_local): Likewise.
21865
21866         * config/frv/frv.c (frv_init_machine_status): Likewise.
21867
21868         * config/darwin.c (machopic_indirection_name): Likewise.
21869
21870         * config/cris/cris.c (cris_init_machine_status): Likewise.
21871
21872         * config/bfin/bfin.c (bfin_init_machine_status): Likewise.
21873
21874         * config/avr/avr.c (avr_init_machine_status): Likewise.
21875
21876         * config/arm/arm.c (arm_init_machine_status): Likewise.
21877
21878         * config/alpha/alpha.c (alpha_init_machine_status): Likewise.
21879         (alpha_need_linkage): Likewise.
21880         (alpha_use_linkage): Likewise.
21881
21882         * cgraph.c (cgraph_allocate_node): Likewise.
21883         (cgraph_create_edge_1): Likewise.
21884         (cgraph_create_indirect_edge): Likewise.
21885         (cgraph_add_asm_node): Likewise.
21886
21887         * cfgrtl.c (init_rtl_bb_info): Likewise.
21888
21889         * cfgloop.c (alloc_loop): Likewise.
21890         (rescan_loop_exit): Likewise.
21891
21892         * cfg.c (init_flow): Likewise.
21893         (alloc_block): Likewise.
21894         (unchecked_make_edge): Likewise.
21895
21896         * c-parser.c (c_parse_init): Likewise.
21897         (c_parse_file): Likewise.
21898
21899         * c-decl.c (bind): Likewise.
21900         (record_inline_static): Likewise.
21901         (push_scope): Likewise.
21902         (make_label): Likewise.
21903         (lookup_label_for_goto): Likewise.
21904         (finish_struct): Likewise.
21905         (finish_enum): Likewise.
21906         (c_push_function_context): Likewise.
21907
21908         * bitmap.c (bitmap_element_allocate): Likewise.
21909         (bitmap_gc_alloc_stat): Likewise.
21910
21911         * alias.c (record_alias_subset): Likewise.
21912         (init_alias_analysis): Likewise.
21913
21914 2010-06-08  Shujing Zhao  <pearly.zhao@oracle.com>
21915
21916         * fold-const.c (fold_comparison): Remove redundant parenthesis.
21917         * tree-inline.c (expand_call_inline): Pass translated return value of
21918         cgraph_inline_failed_string to diagnostic function.
21919
21920 2010-06-08  Andrew Pinski  <pinskia@gmail.com>
21921             Shujing Zhao  <pearly.zhao@oracle.com>
21922
21923         PR c/37724
21924         * c-typeck.c (convert_for_assignment): Call pedwarn_init if the
21925         implicit bad conversions is initialization.
21926         (error_init): Use gmsgid instead of msgid for argument name and change
21927         the call for error.
21928         (pedwarn_init): Use gmsgid instead of msgid for argument name and
21929         change the call for pedwarn.
21930         (warning_init): Use gmsgid instead of msgid for argument name and
21931         change the call for warning.
21932
21933 2010-06-07  Nathan Froyd  <froydnj@codesourcery.com>
21934
21935         * config/mips/mips-protos.h (mips_print_operand): Delete.
21936         (mips_print_operand_address): Delete.
21937         * config/mips/mips.h (mips_print_operand_punct): Delete.
21938         (PRINT_OPERAND): Delete.
21939         (PRINT_OPERAND_PUNCT_VALID_P): Delete.
21940         (PRINT_OPERAND_ADDRESS): Delete.
21941         * config/mips/mips.c (mips_print_operand_punct): Make static.
21942         (mips_print_operand_address): Make static.
21943         (mips_print_operand): Make static.  Call
21944         mips_print_operand_punct_valid_p.
21945         (mips_print_operand_punct_valid_p): New function.
21946         (TARGET_PRINT_OPERAND, TARGET_PRINT_OPERAND_ADDRESS): Define.
21947         (TARGET_PRINT_OPERAND_PUNCT_VALID_P): Define.
21948
21949 2010-06-07  Jan Hubicka  <jh@suse.cz>
21950
21951         PR middle-end/44454
21952         (df_lr_top_dump, df_lr_bottom_dump): Check that in/out bitmaps
21953         are allocated.
21954
21955 2010-06-07  Kaz Kojima  <kkojima@gcc.gnu.org>
21956
21957         * config/sh/sh.c (sh_build_builtin_va_list): Set tree type
21958         name of RECORD.
21959
21960 2010-06-07  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
21961
21962         * doc/sourcebuild.texi (Effective-Target Keywords, Other
21963         attributes): Document gas.
21964
21965 2010-06-07  Uros Bizjak  <ubizjak@gmail.com>
21966
21967         * config/i386/i386.md (*add<mode>_1): Remove alternative 2.
21968         <TYPE_LEA>: Split instruction.
21969         <default>: Remove alternative 2 handling.
21970         (*addsi_1_zext) <TYPE_LEA>: Split instruction.
21971         (add lea splitter): Generate SImode lea for mode sizes <= SImode.
21972         (add_zext lea splitter): Use ix86_lea_for_add_ok in insn predicate.
21973
21974         (*movsi_1) <TYPE_LEA>: Use %a modifier to output operand 1.
21975         (ashift_zext lea splitter): Use DImode for multiplication.
21976
21977         * config/i386/i386.c (ix86_expand_epilogue): Do not use ix86_gen_add
21978         to generate addition.
21979
21980 2010-06-07  Joseph Myers  <joseph@codesourcery.com>
21981
21982         * common.opt (fira-verbose): Use Var.
21983         (fpcc-struct-return): Use Init instead of VarExists.
21984         * defaults.h (DEFAULT_PCC_STRUCT_RETURN): Move definition from
21985         toplev.c.
21986         * flags.h (flag_signed_char, flag_short_enums,
21987         flag_pcc_struct_return, flag_ira_verbose,
21988         flag_detailed_statistics, flag_remove_unreachable_functions): Remove.
21989         * toplev.c (flag_detailed_statistics, flag_signed_char,
21990         flag_short_enums, flag_pcc_struct_return, flag_ira_verbose): Remove.
21991         (DEFAULT_PCC_STRUCT_RETURN): Move definition to defaults.h.
21992         * toplev.h (flag_crossjumping, flag_if_conversion,
21993         flag_if_conversion2, flag_keep_static_consts, flag_peel_loops,
21994         flag_rerun_cse_after_loop, flag_thread_jumps, flag_tracer,
21995         flag_unroll_loops, flag_unroll_all_loops, flag_unswitch_loops,
21996         flag_cprop_registers, time_report, flag_ira_loop_pressure,
21997         flag_ira_coalesce, flag_ira_move_spills,
21998         flag_ira_share_save_slots, flag_ira_share_spill_slots): Remove.
21999
22000 2010-06-07  Jan Hubicka  <jh@suse.cz>
22001
22002         * df-core.c (df_analyze_problem): Do verification after allocation.
22003
22004         * df-problems.c (df_lr_problem_data): Add lr_bitmaps.
22005         (df_lr_alloc): Initialize problem data; move bitmaps to
22006         lr_bitmaps obstack.
22007         (df_lr_finalize): Free problem data; do not bother to free bitmaps.
22008         (df_lr_verify_solution_start): Do not initialize problem data;
22009         allocate bitmaps in lr_bitmaps.
22010         (df_lr_verify_solution_end): Do not free problem data.
22011
22012 2010-06-07  Jan Hubicka  <jh@suse.cz>
22013
22014         * cgraph.c (cgraph_edge_cannot_lead_to_return): Also check
22015         if caller is noreturn.
22016         * ipa-reference.c (analyze_function): Use ipa_ref_cannot_lead_to_return
22017         * ipa-ref.h (ipa_ref_cannot_lead_to_return): New function.
22018         * ipa-ref.c (ipa_ref_cannot_lead_to_return): New function.
22019         * ipa-pure-const.c (check_decl): Add IPA parameter.
22020         (state_from_flags): New function.
22021         (better_state, worse_state): New functions.
22022         (check_call): When in IPA mode, do not care about callees.
22023         (check_load, check_store): Update.
22024         (check_ipa_load, check_ipa_store): New.
22025         (check_stmt): When in IPA mode, use IPA checkers.
22026         (analyze_function): Use state_from_flags.
22027         (propagate): Check indirect edges and references.
22028
22029 2010-06-07  Kazu Hirata  <kazu@codesourcery.com>
22030
22031         PR rtl-optimization/44404
22032         * auto-inc-dec.c (find_inc): Use reg_overlap_mentioned_p instead
22033         of count_occurrences to see if it's safe to modify mem_insn.
22034
22035 2010-06-07  Richard Guenther  <rguenther@suse.de>
22036
22037         * gimplify.c (gimplify_cleanup_point_expr): For empty body
22038         and EH-only cleanup drop the cleanup instead of inserting it
22039         unconditionally.
22040
22041 2010-06-07  Ira Rosen  <irar@il.ibm.com>
22042
22043         * doc/tm.texi (TARGET_VECTORIZE_BUILTIN_VECTORIZATION_COST): Update
22044         documentation.
22045         * targhooks.c (default_builtin_vectorization_cost): New function.
22046         * targhooks.h (default_builtin_vectorization_cost): Declare.
22047         * target.h (enum vect_cost_for_stmt): Define.
22048         (builtin_vectorization_cost): Change argument and comment.
22049         * tree-vectorizer.h: Remove cost model macros.
22050         * tree-vect-loop.c: Include target.h.
22051         (vect_get_cost): New function.
22052         (vect_estimate_min_profitable_iters): Replace cost model macros with
22053         calls to vect_get_cost.
22054         (vect_model_reduction_cost, vect_model_induction_cost): Likewise.
22055         * target-def.h (TARGET_VECTORIZE_BUILTIN_VECTORIZATION_COST): Add
22056         default implementation.
22057         * tree-vect-stmts.c (cost_for_stmt): Replace cost model macros with
22058         calls to target hook builtin_vectorization_cost.
22059         (vect_model_simple_cost, vect_model_store_cost, vect_model_load_cost):
22060         Likewise.
22061         * Makefile.in (tree-vect-loop.o): Add dependency on TARGET_H.
22062         * config/spu/spu.c (spu_builtin_vectorization_cost): Replace with new
22063         implementation to return costs.
22064         * config/i386/i386.c (ix86_builtin_vectorization_cost): Likewise.
22065         * config/spu/spu.h: Remove vectorizer cost model macros.
22066         * config/i386/i386.h: Likewise.
22067         * tree-vect-slp.c (vect_build_slp_tree): Replace cost model macro with
22068         a call to target hook builtin_vectorization_cost.
22069
22070 2010-06-06  Sriraman Tallam  <tmsriram@google.com>
22071
22072         PR target/44319
22073         * config/i386/i386.c (override_options): Turn zee pass on for level 2
22074         and above and defer till target is known.
22075         (optimization_options): Turn on zee pass if TARGET_64BIT is set and
22076         turn off otherwise.
22077
22078 2010-05-25  Jan Hubicka  <jh@suse.cz>
22079
22080         * df-core.c (df_set_blocks): Use bitmap_head instead of bitmap.
22081         (df_compact_blocks): Likewise.
22082         * df.h (struct df): Turn hardware_regs_used,
22083         regular_block_artificial_uses, eh_block_artificial_uses,
22084         insns_to_delete, insns_to_rescan, insns_to_notes_rescan into
22085         bitmap_head.
22086         * df-problems.c (df_lr_local_compute, df_lr_confluence_0,
22087         df_byte_lr_alloc, df_simulate_fixup_sets): Update.
22088         * df-scan.c (df_scan_free_internal, df_scan_alloc, df_scan_start_dump,
22089         df_scan_blocks, df_insn_delete, df_insn_rescan,
22090         df_insn_rescan_debug_internal, df_insn_rescan_all,
22091         df_process_deferred_rescans, df_process_deferred_rescans,
22092         df_notes_rescan, df_get_call_refs, df_get_call_refs,
22093         regs_invalidated_by_call_regset, df_get_call_refs, df_bb_refs_collect,
22094         df_record_entry_block_defs, df_record_exit_block_uses,
22095         df_update_exit_block_uses, df_bb_verify, df_entry_block_bitmap_verify,
22096         df_scan_verify): Update.
22097
22098 2010-05-25  Dodji Seketeli  <dodji@redhat.com>
22099
22100         PR c++/44188
22101         * c-common.c (is_typedef_decl): Move this definition ...
22102         * tree.c (is_typedef_decl): ... here.
22103         (typdef_variant_p): Move definition here from cp/tree.c.
22104         * c-common.h (is_typedef_decl): Move this declaration ...
22105         * tree.h (is_typedef_decl): ... here.
22106         (typedef_variant_p): Move declaration here from cp/cp-tree.h
22107         * dwarf2out.c (is_naming_typedef_decl): New function.
22108         (gen_tagged_type_die): Split out of ...
22109         (gen_type_die_with_usage): ... this function. When an anonymous
22110         tagged type is named by a typedef, make sure a DW_TAG_typedef DIE
22111         is emitted for the typedef.
22112         (gen_typedef_die): Emit DW_TAG_typedef also for typedefs naming
22113         anonymous tagged types.
22114
22115 2010-06-06  Manuel López-Ibáñez  <manu@gcc.gnu.org>
22116
22117         PR c/20000
22118         * c-decl.c (grokdeclarator): Delete warning.
22119
22120 2010-06-06  Eric Botcazou  <ebotcazou@adacore.com>
22121
22122         * stor-layout.c (self_referential_size): Set UNKNOWN_LOCATION on the
22123         newly built CALL_EXPR.
22124         * tree-profile.c (tree_profiling): Don't profile functions produced
22125         for built-in stuff.
22126
22127 2010-06-06  Segher Boessenkool  <segher@kernel.crashing.org>
22128
22129         PR bootstrap/44427
22130         PR bootstrap/44428
22131         * genautomata.c (SET_BIT, CLEAR_BIT, TEST_BIT): Make these macros
22132         endianness-independent.
22133
22134 2010-06-05  Steven Bosscher  <steven@gcc.gnu.org>
22135
22136         * c-common.c: Move to c-family/.
22137         * c-common.def: Likewise.
22138         * c-common.h: Likewise.
22139         * c-cppbuiltin.c: Likewise.
22140         * c-dump.c: Likewise.
22141         * c-format.c: Likewise.
22142         * c-format.h : Likewise.
22143         * c-gimplify.c: Likewise.
22144         * c-lex.c: Likewise.
22145         * c-omp.c: Likewise.
22146         * c.opt: Likewise.
22147         * c-opts.c: Likewise.
22148         * c-pch.c: Likewise.
22149         * c-ppoutput.c: Likewise.
22150         * c-pragma.c: Likewise.
22151         * c-pragma.h: Likewise.
22152         * c-pretty-print.c: Likewise.
22153         * c-pretty-print.h: Likewise.
22154         * c-semantics.c: Likewise.
22155         * stub-objc.c: Likewise.
22156
22157         * gengtype.c (get_file_langdir): Special-case files in c-family/.
22158         (get_output_file_with_visibility): Fix name for c-common.h.
22159         * c-config-lang.in: Update paths in gtfiles for files in c-family/.
22160
22161         * c-tree.h: Update include path for moved files.
22162         * c-lang.c: Likewise.
22163         * c-lang.h: Likewise.
22164         * c-parser.c: Likewise.
22165         * c-convert.c: Likewise.
22166         * c-decl.c: Likewise.
22167         * c-objc-common.c: Likewise.
22168         * configure.ac: Make sure c-family/ exists in the build directory.
22169         * configure: Regenerate.
22170         * Makefile.in: Update paths for moved files.  Regroup files per
22171         location and update dependencies.  Move generated_files down after
22172         ALL_GTFILES_H.
22173
22174         * config/spu/spu-c.c: Update paths for moved files.
22175         * config/mep/mep-pragma.c: Likewise.
22176         * config/darwin-c.c: Likewise.
22177         * config/i386/msformat-c.c: Likewise.
22178         * config/i386/i386-c.c: Likewise.
22179         * config/avr/avr-c.c: Likewise.
22180         * config/sol2-c.c: Likewise.
22181         * config/ia64/ia64-c.c: Likewise.
22182         * config/rs6000/rs6000-c.c: Likewise.
22183         * config/arm/arm.c: Likewise.
22184         * config/arm/arm-c.c: Likewise.
22185         * config/h8300/h8300.c: Likewise.
22186         * config/v850/v850-c.c: Likewise.
22187
22188         * config/t-darwin: Fix dependencies for moved files.
22189         * config/t-sol2: Fix dependencies for moved files.
22190         * config/mep/t-mep: Fix dependencies for moved files.
22191         * config/ia64/t-ia64: Fix dependencies for moved files.
22192         * config/rs6000/t-rs6000: Fix dependencies for moved files.
22193         * config/v850/t-v850: Fix dependencies for moved files.
22194         * config/v850/t-v850e: Fix dependencies for moved files.
22195
22196         * config/m32c/m32c-pragma.c
22197
22198         * po/exgettext: Look in c-family/ also.
22199
22200 2010-06-05  Eric Botcazou  <ebotcazou@adacore.com>
22201
22202         * tree-ssa-dce.c (mark_last_stmt_necessary): New function.
22203         (mark_control_dependent_edges_necessary): Call it instead of marking
22204         the last statement manually.
22205         (propagate_necessity): Likewise.
22206
22207 2010-06-05  Jan Hubicka  <jh@suse.cz>
22208
22209         * basic-block.h (compute_dominance_frontiers): Updated.
22210         (compute_idf): Likewise.
22211
22212         * tree-into-ssa.c (insert_phi_nodes): Use bitmap heads
22213         for dominance frontiers.
22214         (rewrite_into_ssa): Update for bitmap heads in dominance frontiers.
22215         (insert_updated_phi_nodes_for): Likewise.
22216         (update_ssa): Likewise.
22217         * cfganal.c (compute_dominance_frontiers_1): Likewise.
22218         (compute_dominance_frontiers): Likewise.
22219         (compute_idf): Likewise.
22220         * df-problems.c (df_md_local_compute): Likewise.
22221
22222 2010-06-05  Anatoly Sokolov  <aesok@post.ru>
22223
22224         * target.h (struct gcc_target): Add memory_move_cost field.
22225         * target-def.h (TARGET_MEMORY_MOVE_COST): New.
22226         (TARGET_INITIALIZER): Use TARGET_MEMORY_MOVE_COST.
22227         * targhooks.c (default_memory_move_cost): New function.
22228         * targhooks.h (default_memory_move_cost): Declare function.
22229         * reload.h (memory_move_cost): Declare.
22230         (memory_move_secondary_cost): Change type of 'in' argument to bool.
22231         * reginfo.c (memory_move_cost): New function.
22232         (memory_move_secondary_cost): Change type of 'in' argument to bool.
22233         * ira.h (ira_memory_move_cost): Update comment.
22234         * ira.c (ira_memory_move_cost): Update comment.
22235         (setup_class_subset_and_memory_move_costs): Replace MEMORY_MOVE_COST
22236         with memory_move_cost.
22237         * postreload.c (reload_cse_simplify_set): (Ditto.).
22238         * reload1.c (choose_reload_regs): (Ditto.).
22239         * doc/tm.texi (TARGET_MEMORY_MOVE_COST): New.
22240         (MEMORY_MOVE_COST):  Revise documentation.
22241
22242         * config/i386/i386.h (MEMORY_MOVE_COST): Remove macro.
22243         * config/i386/i386-protos.h (int ix86_memory_move_cost): Remove.
22244         * config/i386/i386.h (ix86_memory_move_cost): Make static. Change
22245         type of 'in' argument to bool.
22246         (TARGET_MEMORY_MOVE_COST): Define.
22247
22248 2010-06-05  Jan Hubicka  <jh@suse.cz>
22249
22250         * ipa-pure-const.c (propagate): Fix typo in handling of functions
22251         that cannot return.  Be more careful when merging the results with
22252         previously known ones.
22253
22254 2010-06-05  Matthias Klose  <doko@ubuntu.com>
22255
22256         * gcc.c (cc1_options, cpp_unique_options): Use find-plugindir spec
22257         function to add the -iplugindir option.
22258         (find_plugindir_spec_function): Add new declaration and function.
22259         (static_spec_func): Use it for "find-plugindir".
22260
22261 2010-06-05  Jakub Jelinek  <jakub@redhat.com>
22262
22263         PR c++/44361
22264         * c-typeck.c (mark_exp_read): Handle C_MAYBE_CONST_EXPR.
22265         * c-parser.c (c_parser_postfix_expression): Call mark_exp_read on
22266         statement expression.
22267
22268 2010-06-05  Jan Hubicka  <jh@suse.cz>
22269
22270         * df-problems.c (seen_in_block, seen_in_insn): Convert to bitmap_head.
22271         (df_rd_problem_data): Convert sparse_invalidated_by_call,
22272         dense_invalidated_by_call to bitmap head.
22273         (df_rd_alloc, df_rd_bb_local_compute_process_def,
22274         df_rd_bb_local_compute, df_rd_confluence_n, df_rd_transfer_function,
22275         df_rd_start_dump, df_lr_verify_transfer_functions,
22276         df_live_verify_transfer_functions, df_chain_create_bb,
22277         df_chain_add_problem, df_byte_lr_check_regs, df_byte_lr_alloc,
22278         df_byte_lr_confluence_0, df_byte_lr_confluence_n, df_note_compute,
22279         df_simulate_one_insn_forwards, df_md_alloc,
22280         df_md_bb_local_compute_process_def,
22281         df_md_bb_local_compute_process_def, df_md_local_compute,
22282         df_md_transfer_function df_md_free): Update.
22283
22284 2010-06-05  Joseph Myers  <joseph@codesourcery.com>
22285
22286         PR c/44322
22287         * c-typeck.c (build_unary_op): Merge qualifiers into pointer
22288         target type for ADDR_EXPR; require no changes to qualifiers except
22289         for function types.
22290         * c-tree.h (c_build_type_variant): Remove.
22291
22292 2010-06-05  Segher Boessenkool  <segher@kernel.crashing.org>
22293
22294         * genautomata.c (get_excl_set): Do work per element, not per char.
22295         (check_presence_pattern_sets): Similar.
22296         (check_absence_pattern_sets): Similar.
22297
22298 2010-06-05  Segher Boessenkool  <segher@kernel.crashing.org>
22299
22300         * genautomata.c (curr_state_pass_num): Delete.
22301         (min_issue_delay_pass_states): Delete.
22302         (min_issue_delay): Delete.
22303         (initiate_min_issue_delay_pass_states): Delete.
22304         (output_min_issue_delay_table): Compute min_issue_delay_vect
22305         using a breadth-first search variant.
22306         (output_tables): Don't call initiate_min_issue_delay_pass_states.
22307
22308 2010-06-04  H.J. Lu  <hongjiu.lu@intel.com>
22309
22310         PR boostrap/44421
22311         * df-problems.c (df_lr_bb_local_compute): Updated for embedded bitmaps.
22312         (df_byte_lr_bb_local_compute): Likewise.
22313
22314 2010-06-03  Jason Merrill  <jason@redhat.com>
22315
22316         Implement noexcept operator (5.3.7)
22317         * c-common.c (c_common_reswords): Add noexcept.
22318         * c-common.h (enum rid): Add RID_NOEXCEPT.
22319
22320 2010-06-04  Joseph Myers  <joseph@codesourcery.com>
22321
22322         * config/darwin-driver.c (darwin_default_min_version): Use
22323         GCC-specific formats in diagnostics.
22324         * cppspec.c (lang_specific_driver): Use GCC-specific formats in
22325         diagnostics.
22326         * gcc.c (translate_options, read_specs, add_sysrooted_prefix,
22327         execute, process_command, end_going_arg, do_self_spec, do_spec_1,
22328         eval_spec_function, handle_braces, process_brace_body, main,
22329         perror_with_name, used_arg, set_multilib_dir, print_multilib_info,
22330         getenv_spec_function, compare_version_strings,
22331         version_compare_spec_function): Use GCC-specific formats in
22332         diagnostics.
22333
22334 2010-06-04  Uros Bizjak  <ubizjak@gmail.com>
22335
22336         * config/i386/i386.md (*addhi_1_lea) <TYPE_INCDEC, default>: Assert
22337         that operand 0 and operand 1 are equal.
22338         (*addqi_1_lea) <TYPE_INCDEC, default>: Ditto.
22339         (*add<mode>_2) <TYPE_INCDEC>: Remove assert that operand 0
22340         and operand 1 are equal.
22341         <default>: Ditto.  Remove ??? comment.
22342         (*add<mode>_3) <TYPE_INCDEC>: Remove assert that operand 0
22343         and operand 1 are equal.
22344         <default>: Ditto.  Remove ??? comment.
22345         (*adddi_4) <default>: Remove assert that operand 0 and operand 1
22346         are equal.
22347         (*add<mode>_4) <default>: Ditto.
22348         (*add<mode>_5) <TYPE_INCDEC, default>: Ditto.
22349
22350 2010-06-04  Nathan Froyd  <froydnj@codesourcery.com>
22351
22352         * config/i386/i386-protos.h (ix86_print_operand): Declare.
22353         * config/i386/i386.c (ix86_print_operand): Make non-static.
22354         * config/i386/sol2.h (ASM_OUTPUT_CALL): Call ix86_print_operand.
22355         * output.h (output_operand): Declare.
22356         * final.c (output_operand): Make non-static.
22357
22358 2010-06-04  Alexandre Oliva  <aoliva@redhat.com>
22359
22360         PR rtl-optimization/44013
22361         * sched-deps.c (add_dependence_list_and_free): Don't free lists
22362         when processing debug insns.
22363
22364         PR debug/41371
22365         * var-tracking.c (find_loc_in_1pdv): Mark initial value before
22366         recursing.  Check that recursion is bounded.  Rename inner var
22367         to avoid hiding incoming argument.
22368
22369 2010-06-04  Uros Bizjak  <ubizjak@gmail.com>
22370
22371         * config/i386/i386.md (*addqi_2) <TYPE_INCDEC>: Do not assert that
22372         operands[2] == 255.
22373         (*addqi_3): Ditto.
22374         (*addqi_4): Ditto.
22375         (*addqi_5): Ditto.
22376         (*addqi_ext_1_rex64): Ditto.
22377         (*addqi_ext_1): Ditto.
22378
22379         (*addqi_4): Check for incdec_operand in QImode.
22380
22381         (*add<mode>_2): Macroize insn from *add<mode>_2 and *add{qi,hi}_2
22382         using SWI mode iterator.
22383         (*add<mode>_3): Ditto from *add<mode>_3 and *add{qi,hi}_3.
22384         (*add<mode>_4): Macroize insn from *add{qi,hi,si}_4 using SWI124
22385         mode iterator.
22386         (*add<mode>_5): Macroize insn from *add<mode>_5 and *add{qi,hi}_5
22387         using SWI mode iterator.
22388
22389 2010-06-04  Manuel López-Ibáñez  <manu@gcc.gnu.org>
22390
22391         PR c/25880
22392         * c-objc-common.c (c_tree_printer): Handle %V, %v and %#v.
22393         * c-format.c (gcc_diag_flag_specs): Add hash.
22394         (gcc_cxxdiag_flag_specs): Use gcc_diag_flag_specs directly.
22395         (gcc_tdiag_char_table,gcc_cdiag_char_table): Handle %V and %v.
22396         * c-pretty-print.c (pp_c_cv_qualifier): Rename as
22397         pp_c_cv_qualifiers. Handle qualifiers spelling here.
22398         (pp_c_type_qualifier_list): Call the function above.
22399         * c-pretty-print.h (pp_c_cv_qualifiers): Declare.
22400         * c-typeck.c (handle_warn_cast_qual): Print qualifiers.
22401         (WARN_FOR_QUALIFIERS): New macro.
22402         (convert_for_assignment): Use it.
22403
22404 2010-06-04  Kai Tietz  <kai.tietz@onevision.com>
22405
22406         * config/i386/cygming.h (ASM_GENERATE_INTERNAL_LABEL): Prefix by '*'.
22407
22408 2010-06-04  Jan Hubicka  <jh@suse.cz>
22409
22410         * df.h (df_rd_bb_info, df_md_bb_info, df_lr_bb_info, df_live_bb_info,
22411         df_byte_lr_bb_info): Embedd bitmap_head into the structure.
22412         (DF_LIVE_IN, DF_LIVE_OUT, DF_LR_IN, DF_LR_OUT, DF_BYTE_LR_IN,
22413         DF_BYTE_LR_OUT): Update for embedded bitmaps.
22414         * fwprop.c (single_def_use_enter_block): Likewise.
22415         * ddg.c (create_ddg_dep_from_intra_loop_link,
22416         add_cross_iteration_register_deps, build_inter_loop_deps): Likewise.
22417         * loop-iv.c (latch_dominating_def): Likewise.
22418         * df-problems.c (df_rd_free_bb_info, df_rd_alloc,
22419         df_rd_bb_local_compute_process_def, df_rd_bb_local_compute_process_def,
22420         df_rd_init_solution, df_rd_init_solution, df_rd_transfer_function,
22421         df_rd_transfer_function, df_rd_top_dump,
22422         df_rd_bottom_dump): Update.
22423         (df_lr_free_bb_info, df_lr_alloc, df_lr_reset, df_lr_bb_local_compute,
22424         df_lr_bb_local_compute, df_lr_bb_local_compute, df_lr_bb_local_compute,
22425         df_lr_bb_local_compute, df_lr_local_compute, df_lr_init, df_lr_init,
22426         df_lr_confluence_0, df_lr_free, df_lr_top_dump, df_lr_bottom_dump,
22427         df_lr_verify_solution_start, df_lr_verify_solution_end,
22428         df_lr_verify_transfer_functions, df_lr_verify_transfer_functions,
22429         df_live_free_bb_info, df_live_alloc, df_live_reset,
22430         df_live_bb_local_compute, df_live_init, df_live_transfer_function,
22431         df_live_finalize, df_live_free, df_live_top_dump, df_live_bottom_dump,
22432         df_live_verify_solution_start, df_live_verify_solution_end,
22433         df_live_verify_transfer_functions, df_chain_create_bb,
22434         df_byte_lr_free_bb_info, df_byte_lr_alloc, df_byte_lr_reset,
22435         df_byte_lr_bb_local_compute, df_byte_lr_bb_local_compute,
22436         df_byte_lr_bb_local_compute, df_byte_lr_bb_local_compute,
22437         df_byte_lr_bb_local_compute, df_byte_lr_local_compute, df_byte_lr_init,
22438         df_byte_lr_confluence_0, df_byte_lr_confluence_n,
22439         df_byte_lr_transfer_function, df_byte_lr_top_dump,
22440         df_byte_lr_bottom_dump, df_create_unused_note,
22441         df_note_bb_compute, df_md_free_bb_info, df_md_alloc,
22442         df_md_bb_local_compute_process_def, df_md_local_compute, df_md_reset,
22443         df_md_transfer_function, df_md_init, df_md_confluence_0,
22444         df_md_confluence_n,
22445         df_md_top_dump, df_md_bottom_dump): Update.
22446         (struct df_lr_problem_data): Embedd bitmap headers.
22447
22448 2010-06-04  Jan Hubicka  <jh@suse.cz>
22449
22450         * dce.c (dce_process_block): Do not re-scan already marked
22451         instructions.
22452
22453 2010-06-04  Bernd Schmidt  <bernds@codesourcery.com>
22454
22455         PR rtl-optimization/39871
22456         PR rtl-optimization/40615
22457         PR rtl-optimization/42500
22458         PR rtl-optimization/42502
22459         * ira.c (init_reg_equiv_memory_loc: New function.
22460         (ira): Call it twice.
22461         * reload.h (calculate_elim_costs_all_insns): Declare.
22462         * ira-costs.c: Include "reload.h".
22463         (regno_equiv_gains): New static variable.
22464         (init_costs): Allocate it.
22465         (finish_costs): Free it.
22466         (ira_costs): Call calculate_elim_costs_all_insns.
22467         (find_costs_and_classes): Take estimated elimination costs
22468         into account.
22469         (ira_adjust_equiv_reg_cost): New function.
22470         * ira.h (ira_adjust_equiv_reg_cost): Declare it.
22471         * reload1.c (init_eliminable_invariants, free_reg_equiv,
22472         elimination_costs_in_insn, note_reg_elim_costly): New static functions.
22473         (elim_bb): New static variable.
22474         (reload): Move code out of here into init_eliminable_invariants and
22475         free_reg_equiv.  Call them.
22476         (calculate_elim_costs_all_insns): New function.
22477         (eliminate_regs_1): Declare.  Add extra arg FOR_COSTS;
22478         all callers changed.  If FOR_COSTS is true, don't call alter_reg,
22479         but call note_reg_elim_costly if we turned a valid memory address
22480         into an invalid one.
22481         * Makefile.in (ira-costs.o): Depend on reload.h.
22482
22483 2010-06-04  Julian Brown  <julian@codesourcery.com>
22484
22485         * config/arm/thumb2.md (*thumb2_movdf_soft_insn): Fix alternatives
22486         for pool ranges.
22487
22488 2010-06-04  Richard Guenther  <rguenther@suse.de>
22489
22490         PR lto/41584
22491         * cgraph.h (struct varpool_node): Add lto_file_data field.
22492         * lto-cgraph.c (input_varpool_node): Initialize it.
22493
22494 2010-06-04  Uros Bizjak  <ubizjak@gmail.com>
22495
22496         * config/i386/predicates.md (pic_symbolic_operand): Remove predicate.
22497         * config/i386/i386.md (*add<mode>_1): Do not use pic_symbolic_operand
22498         predicate in "type" attribute calculation.
22499         (*addsi_1_zext): Ditto.
22500         (*add<mode>_2): Do not use pic_symbolic_operand in insn predicate.
22501         (*addsi_2_zext): Ditto.
22502         (*add<mode>_3): Ditto.
22503         (*addsi_3_zext): Ditto.
22504         (*add<mode>_5): Ditto.
22505
22506 2010-06-03  Jan Hubicka  <jh@suse.cz>
22507
22508         * tree-into-ssa.c (mark_block_for_update): Avoid redundant call
22509         of bitmap_bit_p.
22510         * cfganal.c (compute_dominance_frontiers_1): Likewise.
22511
22512 2010-06-03  Jan Hubicka  <jh@suse.cz>
22513
22514         * df-problems.c (df_create_unused_note, df_note_bb_compute):
22515         micro-optimize the checks when to add new note.
22516
22517 2010-06-03  Nathan Froyd  <froydnj@codesourcery.com>
22518
22519         * final.c (output_asm_insn): Call
22520         targetm.asm_out.print_operand_punct_valid_p.  Update comments.
22521         (output_operand): Call targetm.asm_out.print_operand.  Update comments.
22522         (output_address): Call targetm.asm_out.print_operand_address.
22523         Update comments.
22524         * target.h (struct gcc_target): Add print_operand,
22525         print_operand_address, and print_operand_punct_valid_p fields.
22526         * targhooks.h (default_print_operand): Declare.
22527         (default_print_operand_address): Declare.
22528         (default_print_operand_punct_valid_p): Declare.
22529         * targhooks.c (default_print_operand): Define.
22530         (default_print_operand_address): Define.
22531         (default_print_operand_punct_valid_p): Define.
22532         * target-def.h (TARGET_PRINT_OPERAND): Define if not defined.
22533         (TARGET_PRINT_OPERAND_ADDRESS): Likewise.
22534         (TARGET_PRINT_OPERAND_PUNCT_VALID_P): Likewise.
22535         (TARGET_ASM_OUT): Add TARGET_PRINT_OPERAND,
22536         TARGET_PRINT_OPERAND_ADDRESS, and TARGET_PRINT_OPERAND_PUNCT_VALID_P.
22537         * vmsdbgout.c (addr_const_to_string): Update comment.
22538         * config/i386/i386.c (print_operand): Rename to...
22539         (ix86_print_operand): ...this.  Make static.
22540         (print_operand_address): Rename to...
22541         (ix86_print_operand_address): ...this.  Make static.  Call
22542         ix86_print_operand instead of PRINT_OPERAND.
22543         (ix86_print_operand_punct_valid_p): New function.
22544         (TARGET_PRINT_OPERAND): Define.
22545         (TARGET_PRINT_OPERAND_ADDRESS): Define.
22546         (TARGET_PRINT_OPERAND_PUNCT_VALID_P): Define.
22547         * config/i386/i386.h (HI_REGISTER_NAMES): Update comment.
22548         (PRINT_OPERAND_PUNCT_VALID_P): Delete.
22549         (PRINT_OPERAND): Delete.
22550         (PRINT_OPERAND_ADDRESS): Delete.
22551         * config/i386/i386-protos.h (print_operand): Delete prototype.
22552         (print_operand_address): Delete prototype.
22553
22554 2010-06-03  Richard Guenther  <rguenther@suse.de>
22555
22556         PR tree-optimization/44403
22557         * tree-vect-data-refs.c (vect_create_addr_base_for_vector_ref):
22558         Preserve pointer qualifiers.
22559         (vect_create_data_ref_ptr): Likewise.
22560
22561 2010-06-03  H.J. Lu  <hongjiu.lu@intel.com>
22562
22563         PR c++/44294
22564         * defaults.h (MAX_FIXED_MODE_SIZE): New.
22565
22566         * stor-layout.c (MAX_FIXED_MODE_SIZE): Removed.
22567
22568 2010-06-03  Jakub Jelinek  <jakub@redhat.com>
22569
22570         PR debug/44375
22571         * tree-cfg.c (gimple_can_merge_blocks_p): For -O0
22572         return false if merging the bbs would lead to goto_locus
22573         location being lost from the IL.
22574
22575 2010-06-03  Jan Hubicka  <jh@suse.cz>
22576             Jakub Jelinek  <jakub@redhat.com>
22577
22578         * var-tracking.c (dataflow_set_equiv_regs): Shortcut the loop if
22579         set->regs[i] is NULL or has just one entry.
22580
22581 2010-06-03  Jan Hubicka  <jh@suse.cz>
22582
22583         * lto-cgraph.c (lto_varpool_encoder_size): Remove.
22584         * lto-streamer.h (lto_varpool_encoder_size): New inline function.
22585
22586 2010-06-03  Paul Brook  <paul@codesourcery.com>
22587
22588         * config/arm/arm.c (FL_TUNE): Define.
22589         (arm_default_cpu, arm_cpu_select): Remove.
22590         (all_cores): Populate core field.
22591         (arm_selected_arch, arm_selected_cpu, arm_selected_tune): New.
22592         (arm_find_cpu): New function.
22593         (arm_handle_option): Lookup cpu/architecture names.
22594         (arm_override_options): Cleanup mcpu/march/mtune handling.
22595         (arm_file_start): Ditto.
22596
22597 2010-06-03  Alan Modra  <amodra@gmail.com>
22598
22599         PR target/44169
22600         * config/rs6000/rs6000.md (load_toc_v4_PIC_1b): Add label operand.
22601         * config/rs6000/rs6000.c (rs6000_legitimize_tls_address): Pass label
22602         rtx to gen_load_toc_v4_PIC_1b.  Tidy.
22603         (rs6000_emit_load_toc_table): Likewise.
22604
22605 2010-06-02  Jan Hubicka  <jh@suse.cz>
22606
22607         * passes.c (init_optimization_passes): Put ipa reference
22608         after ipa pure-const.
22609
22610 2010-06-02  Jan Hubicka  <jh@suse.cz>
22611
22612         * ipa-reference.c (ipa_reference_local_vars_info_d): Remove
22613         calls_read_all and calls_write_all.
22614         (get_reference_optimization_summary): Fix formatting.
22615         (is_proper_for_analysis): Check that decl is not readonly.
22616         (propagate_bits): Check CONST/PURE/noreturn flags.
22617         (ipa_init): Move all_module_statics to optimization_summary_obstack.
22618         (analyze_function): Ignore indirect edges.
22619         (copy_global_bitmap): For all module statics, do nothing.
22620         (generate_summary): Do not print calls_read_all/calls_write_all.
22621         (read_write_all_from_decl): Take node as argument; check
22622         cgraph_node_cannot_return.
22623         (propagate): Reorganize read_all/write_all computation;
22624         check indirect edges; check ecf flags; use all_module_statics
22625         in the results; do not free all_module_statics.
22626         (stream_out_bitmap): Handle all_module_statics.
22627         (ipa_reference_write_optimization_summary): Likewise; use
22628         varpool/cgraph encoders to get boundaries.
22629         (ipa_reference_read_optimization_summary): Read in all_module_statics;
22630         use it when possible.
22631
22632 2010-06-02  Michael Meissner  <meissner@linux.vnet.ibm.com>
22633
22634         PR target/44218
22635         * doc/invoke.texi (RS/6000 and PowerPC Options): Delete obsolete
22636         -mswdiv option.  Add -mrecip, -mrecip=<xxx>, -mrecip-precision options.
22637
22638         * doc/extend.texi (powerpc builtins): Document vec_recip,
22639         vec_rsqrt, vec_rsqrte altivec/vsx builtins.
22640
22641         * config/rs6000/rs60000-protos.h (rs6000_emit_swdiv): New function.
22642         (rs6000_emit_swrsqrt): Ditto.
22643         (rs6000_emit_swdivsf): Delete.
22644         (rs6000_emit_swdivdf): Ditto.
22645         (rs6000_emit_swrsqrtsf): Ditto.
22646
22647         * config/rs6000/rs6000.c (rs6000_recip_bits): New global to
22648         describe the reciprocal estimate support for each type.
22649         (recip_options): Map -mrecip=<opt> into option bits.
22650         (gen_2arg_fn_t): New typedef for binary rtx gen function.
22651         (rs6000_debug_reg_global): If -mdebug=reg, print the state of the
22652         reciprocal estimate instructions.
22653         (rs6000_init_hard_regno_mode_ok): Key ws constraint off of the
22654         debug -mvsx-scalar-memory switch instead of -mvsx-scalar-double.
22655         Set up rs6000_recip_bits based on the -mrecip* options.  Print the
22656         cost information if -mdebug=cost or -mdebug=reg.
22657         (rs6000_override_options): Set -mrecip-precision for power6, and
22658         power7 machines.  If -mvsx or -mdfp, enable various options that
22659         came in previous instruction set ISAs, unless the option was
22660         explicitly disabled by the command line option.  Parse
22661         -mrecip=<opt> options.
22662         (rs6000_builtin_vectorized_function): Add support for vectorizing
22663         the reciprocal estimate builtins and expansions.
22664         (rs6000_handle_option): Add -mrecip, -mrecip=<opt> support.
22665         (bdesc_2arg): Add reciprocal estimate builtins.
22666         (bdesc_1arg): Add reciprocal square root estimate builtins.
22667         (rs6000_expand_builtin): Rewrite to use a switch statement,
22668         instead of multiple if/then/elses.  Add reciprocal estimate builtins.
22669         (rs6000_init_builtins): Create declarations for reciprocal
22670         estimate builtins.
22671         (rs6000_preferred_reload_class): Simplify VSX preferences, if scalar
22672         sized, prefer traditional floating point registers, if integer
22673         vector types, prefer altivec registers.  Don't actually look at
22674         the memory address any more.
22675         (rs6000_builtin_reciprocal): Add new builtin reciprocal estimate
22676         builtins.
22677         (rs6000_load_constant_and_splat): New helper function to load up
22678         the constant for reciprocal estimate instructions.
22679         (rs6000_emit_madd): New helper function for generating
22680         multiply/add type instructions, based on the current switches.
22681         (rs6000_emit_msub): Ditto.
22682         (rs6000_emit_mnsub): Ditto.
22683         (rs6000_emit_swdiv_high_precision): Replace rs6000_emit_swdivsf to
22684         replace a divide with a reciprocal estimate and fixup, adding
22685         support for machines with high precision and vectors.
22686         (rs6000_emit_swdiv_low_precision): Rewrite rs6000_emit_swdivdf for
22687         low precision machines.
22688         (rs6000_emit_swdiv): New common function to be called to replace a
22689         division with reciprocal estimate and fixup.
22690         (rs6000_emit_swrsqrt): Replace rs6000_emit_swrsqrtsf.  Add support
22691         for double and vector types.  Add support for high precision machines.
22692
22693         * config/rs6000/rs6000.h (TARGET_FRES): New macro to say whether
22694         the reciprocal estimate instructions can be generated.
22695         (TARGET_FRE): Ditto.
22696         (TARGET_FRSQRTES): Ditto.
22697         (TARGET_FRSQRTE): Ditto.
22698         (RS6000_RECIP_*): New macros for reciprocal estimate support.
22699
22700         * config/rs6000/vector.md (rsqrte<mode>2): New insn for reciprocal
22701         square root estimate on vectors.
22702         (re<mode>2): New insn for reciprocal division estimate on vectors.
22703
22704         * config/rs6000/rs6000-buitlins.def (ALTIVEC_BUILTIN_VRSQRTFP):
22705         New builtin.
22706         (ALTIVEC_BUILTIN_VRECIPFP): Ditto.
22707         (ALTIVEC_BUITLIN_VEC_RE): Ditto.
22708         (ALTIVEC_BUILTIN_VEC_RSQRT): Ditto.
22709         (VSX_BUILTIN_RSQRT_V4SF): Ditto.
22710         (VSX_BUITLIN_RSQRT_V2DF): Ditto.
22711         (RS6000_BUILTIN_RSQRT): Ditto.
22712         (ALTIVEC_BUILTIN_VEC_RSQRTE): Denote that the builtin is a
22713         floating point builtin.
22714
22715         * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Define
22716         macros __RECIP__, __RECIPF__, __RSQRTE__, __RSQRTEF__,
22717         __RECIP_PRECISION__ based on the command line switches.
22718         (altivec_overloaded_builtins): Add reciprocal estimate builtins.
22719
22720         * config/rs6000/rs6000.opt (-mrecip): Document add support for
22721         replacing division instructions with reciprocal estimate and fixup.
22722         (-mrecip=<opt>): New option.
22723         (-mrecip-precision): Ditto.
22724
22725         * config/rs6000/vsx.md (UNSPEC_VSX_RSQRTE): Delete.
22726         (vsx_rsqrte<mode>2): Use UNSPEC_RSQRT not UNSPEC_VSX_RSQRTE.
22727         (vsx_copysignsf3): If -mvsx, use double precision cpsign on single
22728         precision scalar.
22729
22730         * config/rs6000/altivec.md (UNSPEC_RSQRTEFP): Delete.
22731         (UNSPEC_VREFP): Ditto.
22732         (altivec_vnmsubfp*): Make altivec nmsub mirror the scalar and VSX
22733         conterparts with regard to support of -mno-fused-madd and -ffast-math.
22734         (altivec_vrsqrtefp): Use common UNSPEC to allow scalar/vector
22735         reciprocal estimate instructions to be generated.
22736         (altivec_vrefp): Ditto.
22737
22738         * config/rs6000/rs6000.md (RECIPF): New iterator for reciprocal
22739         estimate support.
22740         (rreg): New mode attribute for reciprocal estimate support.
22741         (recip<mode>3): New insn for division using reciprocal estimate
22742         and fixup builtins.
22743         (divide define_split): New define_split to convert floating point
22744         division to use reciprocal estimate if the user used the
22745         appropriate options and the split is run when we can add new
22746         pseudo registers for the fixup.
22747         (rsqrt<mode>2): New insn for reciprocal square root support.
22748         (recipsf3): Move into recip<mode>3.
22749         (recipdf3): Ditto.
22750         (fres): Use TARGET_FRES.
22751         (rsqrtsf2): Move into rsqrt<mode>2.
22752         (rsqrtsf_internal1): Use TARGET_FRSQRTSES.
22753         (copysignsf3): Add support for VSX.
22754         (fred): Use TARGET_FRE.
22755         (fred_fpr): Ditto.
22756         (rsqrtdf_internal1): New function for frsqrte instruciton.
22757
22758         * config/rs6000/altivec.h (vec_recipdiv): Define new vector builtin.
22759         (vec_rsqrt): Ditto.
22760
22761 2010-06-03  Richard Guenther  <rguenther@suse.de>
22762
22763         PR middle-end/44291
22764         * optabs.c (init_one_libfunc): Use IDENTIFIER_HASH_VALUE.
22765         (set_user_assembler_libfunc): Likewise.
22766
22767 2010-06-02  Steven Bosscher  <steven@gcc.gnu.org>
22768
22769         * mkconfig.sh: Include insn-flags.h and insn-constants.h before
22770         defaults.h.
22771         * except.h: Move MUST_USE_SJLJ_EXCEPTIONS and USING_SJLJ_EXCEPTIONS
22772         to defaults.h
22773         * expr.h (BRANCH_COST, MOVE_RATIO, CLEAR_RATIO, SET_RATIO,
22774         DEFAULT_FUNCTION_ARG_PADDING, FUNCTION_ARG_PADDING,
22775         FUNCTION_ARG_BOUNDARY, STACK_SAVEAREA_MODE, STACK_SIZE_MODE,
22776         STACK_CHECK_BUILTIN, STACK_CHECK_STATIC_BUILTIN,
22777         STACK_CHECK_PROBE_INTERVAL_EXP, STACK_CHECK_MOVING_SP,
22778         STACK_OLD_CHECK_PROTECT, STACK_CHECK_PROTECT,
22779         STACK_CHECK_MAX_FRAME_SIZE, STACK_CHECK_FIXED_FRAME_SIZE,
22780         STACK_CHECK_MAX_VAR_SIZE): Move target macro defaults to defaults.h.
22781         * defaults.h: Updated for above mentioned changes.
22782
22783 2010-06-02  Kai Tietz  <kai.tietz@onevision.com>
22784
22785         * c-common.c: Remove header include of tm_p.h.
22786         * Makefile.in (c-common.o): Remove TM_P_H dependency.
22787
22788 2010-06-02  Jakub Jelinek  <jakub@redhat.com>
22789
22790         * tree.h (struct tree_decl_map): New type.
22791         (tree_decl_map_eq, tree_decl_map_marked_p): Define.
22792         (tree_decl_map_hash): New prototype.
22793         (debug_expr_for_decl, value_expr_for_decl): Change into
22794         tree_decl_map hashtab from tree_map.
22795         (init_ttree): Adjust initialization.
22796         (tree_decl_map_hash): New function.
22797         (decl_debug_expr_lookup, decl_debug_expr_insert,
22798         decl_value_expr_lookup, decl_value_expr_insert): Adjust.
22799
22800 2010-06-02  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
22801
22802         * configure.ac (gcc_cv_ld_sol2_emulation): Test for GNU ld *_sol2
22803         linker emulations.
22804         * configure: Regenerate.
22805         * config.in: Regenerate.
22806
22807         * config/i386/sol2-10.h [TARGET_GNU_LD] (I386_EMULATION): Define.
22808         (X86_64_EMULATION): Define.
22809         (TARGET_LD_EMULATION): Use them.
22810
22811         * config/sparc/sol2-gld-bi.h (SPARC32_EMULATION): Define.
22812         (SPARC64_EMULATION): Define.
22813         (LINK_ARCH_SPEC): Use them.
22814
22815 2010-06-02  Sebastian Pop  <sebastian.pop@amd.com>
22816
22817         * graphite-clast-to-gimple.c (gcc_type_for_interval): Use
22818         smallest_mode_for_size for computing the precision types of new
22819         graphite IVs.  Do not call lang_hooks.types.type_for_size.
22820
22821 2010-06-02  Sebastian Pop  <sebastian.pop@amd.com>
22822
22823         * tree-if-conv.c (predicate_bbs): Do not reset the GIMPLE_DEBUG
22824         information.
22825         (remove_conditions_and_labels): Reset the GIMPLE_DEBUG information.
22826
22827 2010-06-02  Sebastian Pop  <sebastian.pop@amd.com>
22828
22829         PR middle-end/44363
22830         * tree-if-conv.c (predicate_bbs): Do not call gcc_unreachable,
22831         return false instead.
22832
22833 2010-06-02  Jan Hubicka  <jh@suse.cz>
22834
22835         PR middle-end/44295
22836         * cgraphunit.c (cgraph_redirect_edge_call_stmt_to_callee): Do not
22837         create new cgraph node to check callee.
22838
22839 2010-06-02  Richard Guenther  <rguenther@suse.de>
22840
22841         * lto-streamer-in.c (input_gimple_stmt): Fix typo.
22842
22843 2010-06-02  Richard Guenther  <rguenther@suse.de>
22844
22845         * lto-wrapper.c (lto_wrapper_exit): Rename to ...
22846         (lto_wrapper_cleanup): ... this.  Do not exit.
22847         (fatal): Adjust.  Exit here.
22848         (fatal_perror): Likewise.
22849         (fatal_signal): New function.
22850         (main): Set up signal handlers to cleanup temporary files.
22851         * Makefile.in (lto-wrapper.o): Adjust dependencies.
22852
22853 2010-06-02  Richard Guenther  <rguenther@suse.de>
22854
22855         PR tree-optimization/44377
22856         * tree-ssa-structalias.c (find_func_aliases): Fix typo.
22857
22858 2010-06-02  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
22859
22860         * config/s390/2097.md (z10_fhex): Remove insn reservation.
22861         * config/s390/s390.md (UNSPEC_COPYSIGN): Remove unused constant.
22862         (*mov<mode>_64 TD_TF, *mov<mode>_31 TD_TF, *mov<mode>_64dfp DD_DF,
22863         *mov<mode>_64 DD_DF, *mov<mode>_31, mov<mode>): Remove load zero
22864         instruction.
22865         * config/s390/s390.c: Don't accept fp zeros as valid constants anymore.
22866
22867 2010-06-02  Jan Hubicka  <jh@suse.cz>
22868
22869         * bitmap.c (bitmap_descriptor): Add search_iter.
22870         (bitmap_find_bit): Increment it.
22871         (print_statistics): Print it.
22872
22873 2010-06-02  Nathan Froyd  <froydnj@codesourcery.com>
22874
22875         * tree-vect-slp.c (vect_create_mask_and_perm): Use gimple_build_call
22876         instead of gimple_build_call_vec.  Delete unnecessary local variable.
22877
22878 2010-06-02  Steven Bosscher  <steven@gcc.gnu.org>
22879
22880         * gimplify.c (gimplify_body): Revert "Do not initialize RTL profiling"
22881         change from yesterday.
22882
22883 2010-06-02  Steven Bosscher  <steven@gcc.gnu.org>
22884
22885         * c-ada-spec.c: Clean up redundant includes.
22886
22887 2010-06-01  Steven Bosscher  <steven@gcc.gnu.org>
22888
22889         * gimplify.c: Do not include except.h and optabs.h.
22890         (gimplify_body): Do not initialize RTL profiling.
22891         * gimple-low.c: Do not include rtl.h, diagnostic.h, langhooks.h,
22892         langhooks-def.h, timevar.h, except.h, hashtab.h, and expr.h.
22893         * gimple-fold.c: Do not include rtl.h, tm_p.h, ggc.h, basic-block.h,
22894         output.h, expr.h, diagnostic.h, timevar.h, value-prof.h, and
22895         langhooks.h.
22896
22897         * tree-pretty-print.h: Include pretty-print.h.
22898         * gimple-pretty-print.h: Include pretty-print.h.
22899
22900         * tree-pretty-print.c: Do not include diagnostic.h.
22901         * tree-vrp.c: Likewise.
22902         * tree-tailcall.c: Likewise
22903         * tree-scalar-evolution.c: Likewise
22904         * tree-ssa-dse.c: Likewise
22905         * tree-chrec.c: Likewise
22906         * tree-ssa-sccvn.c: Likewise
22907         * tree-ssa-copyrename.c: Likewise
22908         * tree-nomudflap.c: Likewise
22909         * tree-call-cdce.c: Likewise
22910         * tree-stdarg.c: Likewise
22911         * tree-ssa-math-opts.c: Likewise
22912         * tree-nrv.c: Likewise
22913         * tree-ssa-sink.c: Likewise
22914         * tree-browser.c: Likewise
22915         * tree-ssa-loop-ivcanon.c: Likewise
22916         * tree-ssa-loop.c: Likewise
22917         * tree-parloops.c: Likewise
22918         * tree-ssa-address.c: Likewise
22919         * tree-ssa-ifcombine.c: Likewise
22920         * tree-if-conv.c: Likewise
22921         * tree-data-ref.c: Likewise
22922         * tree-affine.c: Likewise
22923         * tree-ssa-phiopt.c: Likewise
22924         * tree-ssa-coalesce.c: Likewise
22925         * tree-ssa-pre.c: Likewise
22926         * tree-ssa-live.c: Likewise
22927         * tree-predcom.c: Likewise
22928         * tree-ssa-forwprop.c: Likewise
22929         * tree-ssa-dce.c: Likewise
22930         * tree-ssa-ter.c: Likewise
22931         * tree-ssa-loop-prefetch.c: Likewise
22932         * tree-optimize.c: Likewise
22933         * tree-ssa-phiprop.c: Likewise
22934         * tree-object-size.c: Likewise
22935         * tree-outof-ssa.c: Likewise
22936         * tree-ssa-structalias.c: Likewise
22937         * tree-switch-conversion.c: Likewise
22938         * tree-ssa-reassoc.c: Likewise
22939         * tree-ssa-operands.c: Likewise
22940         * tree-vectorizer.c: Likewise
22941         * tree-vect-data-refs.c: Likewise
22942         * tree-vect-generic.c: Likewise
22943         * tree-vect-stmts.c: Likewise
22944         * tree-vect-patterns.c: Likewise
22945         * tree-vect-slp.c: Likewise
22946         * tree-vect-loop.c: Likewise
22947         * tree-ssa-loop-ivopts.c: Likewise
22948         * tree-ssa-loop-im.c: Likewise
22949         * tree-ssa-loop-niter.c: Likewise
22950         * tree-ssa-loop-unswitch.c: Likewise
22951         * tree-ssa-loop-manip.c: Likewise
22952         * tree-ssa-loop-ch.c: Likewise
22953         * tree-dump.c: Likewise
22954         * tree-complex.c: Likewise
22955
22956         * tree-into-ssa.c: Do not include diagnostic.h and expr.h.
22957         * tree-ssa-uninit.c: Likewise
22958         * tree-ssa-threadupdate.c: Likewise
22959         * tree-ssa-uncprop.c: Likewise
22960         * tree-ssa-ccp.c: Likewise
22961         * tree-ssa-dom.c: Likewise
22962         * tree-ssa-propagate.c: Likewise
22963         * tree-ssa-alias.c: Likewise
22964         * tree-dfa.c: Likewise
22965         * tree-cfgcleanup.c: Likewise
22966         * tree-sra.c: Likewise
22967         * tree-ssa-copy.c: Likewise
22968         * tree-ssa.c: Likewise
22969         * tree-profile.c: Likewise
22970         * tree-cfg.c: Likewise
22971         * tree-ssa-threadedge.c: Likewise
22972         * tree-vect-loop-manip.c: Likewise
22973
22974         * tree-inline.c: Do not include diagnostic.h and expr.h.
22975         Include rtl.h.
22976         (copy_decl_for_dup_finish): Do not use NULL_RTX.
22977
22978         * tree-loop-linear.c: Do not include diagnostic.h, expr.h and optabs.h.
22979         * tree-loop-distribution.c: Likewise.
22980
22981 2010-06-01  Jan Hubicka  <jh@suse.cz>
22982
22983         * ipa-pure-const.c (local_pure_const): Do NORETURN discovery.
22984
22985 2010-06-01  Jan Hubicka  <jh@suse.cz>
22986
22987         * tree-cfgcleanup.c (fixup_noreturn_call): Break out from ...;
22988         remove return value.
22989         (split_bbs_on_noreturn_calls) .... here.
22990         * tree-optimize.c (execute_fixup_cfg): Fixup noreturn calls too.
22991         * tree-flow.h (fixup_noreturn_call): New.
22992
22993 2010-06-01  Jan Hubicka  <jh@suse.cz>
22994
22995         * emit-rtl.c (remove_insn): Fix thinko in prevoius patch.
22996
22997 2010-06-01  Nathan Froyd  <froydnj@codesourcery.com>
22998
22999         * tree.h (build_nt_call_list): Delete.
23000         * tree.c (build_nt_call_list): Delete.
23001
23002 2010-06-01  Jan Hubicka  <jh@suse.cz>
23003
23004         * fwprop.c: Make emit-rtl.h include last.
23005         * rtlanal.c: Include emit-rtl.h.
23006         * genautomata.c: Output emit-rtl include into insn-automata.c
23007         * df-scan.c: Include emit-rtl.h.
23008         * haifa-sched.c: Indlude emit-rtl.h.
23009         * mode-switching.c: Indlude emit-rtl.h.
23010         * graph.c: Indlude emit-rtl.h.
23011         * sel-sched.c: Include emit-rtl.h.
23012         * sel-sched-ir.c: Include emit-rtl.h.
23013         * ira-build.c: Include emit-rtl.h.
23014         * emit-rtl.c (first_insn, last_insn): Remove defines.
23015         (get_insns, set_first_insn, get_last_insn, set_last_insn, get_max_uid):
23016         Move to emit-rtl.h.
23017         (set_new_first_and_last_insn, get_last_insn_anywhere,
23018         get_first_nonnote_insn, get_last_nonnote_insn, try_split,
23019         make_call_insn_raw, add_insn_after, add_insn_before, remove_insn,
23020         delete_insns_since, reorder_insns_nobb, emit_insn_after_1,
23021         emit_debug_insn_before, emit_insn, start_sequence, push_to_sequence,
23022         push_to_sequence2, push_topmost_sequence, end_sequence, copy_insn):
23023         Use accessor functions.
23024         * emit-rtl.h (gen_blockage, gen_rtvec, copy_insn_1, copy_insn,
23025          gen_int_mode, emit_copy_of_insn_after, set_reg_attrs_from_value,
23026         set_reg_attrs_for_parm, set_reg_attrs_for_decl_rtl, adjust_reg_mode,
23027         mem_expr_equal_p): Move here from rtl.h.
23028         (get_insns, set_first-insn, get_last_insn, set_last_insn, get_max_uid):
23029         Move here from emit-rtl.c; make inline.
23030         * cfglayout.h: Include emit-rtl.h.
23031         * rtl.h (gen_blockage, gen_rtvec, copy_insn_1, copy_insn,
23032          gen_int_mode, emit_copy_of_insn_after, set_reg_attrs_from_value,
23033         set_reg_attrs_for_parm, set_reg_attrs_for_decl_rtl, adjust_reg_mode,
23034         mem_expr_equal_p, get_insns, set_first-insn,
23035         get_last_insn, set_last_insn, get_max_uid): Move to emit-rtl.h.
23036         * reg-stack.c: Include emit-rtl.h.
23037         * dce.c: Likewise.
23038
23039 2010-06-01  Jan Hubicka  <jh@suse.cz>
23040
23041         * cgraph.h (tree_function_versioning): Update prototype.
23042         (cgraph_function_versioning): Update prototype.
23043         * cgraphunit.c (cgraph_copy_node_for_versioning): Accept bbs_to_copy
23044         bitmap.
23045         (cgraph_function_versioning): Accept new_entry_block and bbs_to_copy.
23046         (cgraph_materialize_clone, save_inline_function_body): Update use of
23047         tree_function_versioning.
23048         * tree-inline.c (copy_bb): Look for previous copied block to link
23049         after; fix debug output.
23050         (copy_cfg_body): Accept new_entry_block and bbs_to_copy.
23051         (copy_body): Likewise.
23052         (expand_call_inline): Update use of copy_body.
23053         (tree_function_versioning): Update use of copy body; accept
23054         blocks_to_copy and new_entry.
23055
23056 2010-06-01  Jan Hubicka  <jh@suse.cz>
23057
23058         * gegenrtl.c: Remove unnecesary prototypes.
23059         (gendecl): Remove.
23060         (gendef): Produce static inline.
23061         (gencode): Remove.
23062         (main): Do not decode parameters; generate header only.
23063         * Makefile.in (genrtl.c): Remove.
23064
23065 2010-06-01  Jan Hubicka  <jh@suse.cz>
23066
23067         * tree-switch-conversion.c (build_one_array): Make it readonly.
23068
23069 2010-06-01  Richard Guenther  <rguenther@suse.de>
23070
23071         * optabs.c (init_optabs): Guard all accesses to reinit.
23072         * ipa-pure-const.c (propagate): Fix another typo.
23073         * opts.c (common_handle_option): Split assignment to bool.
23074         * c-opts.c (c_common_handle_option): Likewise.
23075
23076 2010-06-01  Arnaud Charlet  <charlet@adacore.com>
23077             Matthew Gingell  <gingell@adacore.com>
23078
23079         * doc/invoke.texi: Mention -fdump-ada-spec.
23080         * tree-dump.c (dump_files): Add ada-spec.
23081         (FIRST_AUTO_NUMBERED_DUMP): Bump to 8.
23082         * tree-pass.h (tree_dump_index): Add TDI_ada.
23083         * gcc.c: Add support for -C without -E and for -fdump-ada-spec.
23084         (cpp_unique_options): Do not reject -C or -CC when -E isn't present.
23085         (default_compilers) <@c-header>: Allow -fdump-ada-spec on header files.
23086         * c-decl.c: Include c-ada-spec.h.
23087         (collect_source_ref_cb, collect_all_refs, for_each_global_decl): New
23088         functions.
23089         (c_write_global_declarations): Add handling of -fdump-ada-spec.
23090         * c-lex.c (c_lex_with_flags): Add handling of CPP_COMMENT.
23091         * Makefile.in (C_AND_OBJC_OBJS): Add c-ada-spec.o.
23092         * c-ada-spec.h, c-ada-spec.c: New files.
23093
23094 2010-06-01  Richard Guenther  <rguenther@suse.de>
23095
23096         PR lto/43853
23097         * ipa-pure-const.c (get_function_state): Hand back varying state
23098         if we do not have one.
23099         (has_function_state): New function.
23100         (duplicate_node_data): Adjust.
23101         (remove_node_data): Likewise.
23102         (pure_const_write_summary): Likewise.
23103         (propagate): Likewise.  Fix typo.
23104
23105 2010-06-01  Jan Hubicka  <jh@suse.cz>
23106
23107         * tree-cfg.c (verify_stmt): Do not skip could_throw test.
23108         * passes.c (execute_function_todo): Do not make implicit verify_ssa.
23109         (execute_all_ipa_transforms): Do not play with the states.
23110
23111 2010-06-01  Maxim Kuvyrkov  <maxim@codesourcery.com>
23112
23113         * config/arm/t-linux-androideabi: New.
23114         * config.gcc (arm*-*-linux-androideabi): Include multilib config.
23115
23116 2010-06-01  Jan Hubicka  <jh@suse.cz>
23117
23118         * tree-inline.c (estimate_num_insns): For stdarg functions look
23119         into call statement to count cost of argument passing.
23120
23121 2010-06-01  Kai Tietz  <kai.tietz@onevision.com>
23122
23123         * config/i386.c (ix86_output_addr_vec_elt): Make LPREFIX
23124         argument for fprintf.
23125         (ix86_output_addr_diff_elt): Likewise.
23126         (x86_function_profiler): Likewise.
23127         * config/cygming.h (LOCAL_LABEL_PREFIX): Fix for x64 no-underscore.
23128         (LPREFIX): Likewise.
23129         (ASM_GENERATE_INTERNAL_LABEL): Likewise.
23130
23131 2010-05-31  Jakub Jelinek  <jakub@redhat.com>
23132
23133         PR target/44338
23134         * config/i386/sse.md (fma4i_fmadd<mode>4256, fma4i_fmsub<mode>4256,
23135         fma4i_fnmadd<mode>4256, fma4i_fnmsub<mode>4256, fma4i_fmadd<mode>4,
23136         fma4i_fmsub<mode>4, fma4i_fnmadd<mode>4, fma4i_fnmsub<mode>4,
23137         fma4i_vmfmadd<mode>4, fma4i_vmfmsub<mode>4, fma4i_vmfnmadd<mode>4,
23138         fma4i_vmfnmsub<mode>4, fma4i_fmaddsubv8sf4, fma4i_fmaddsubv4df4,
23139         fma4i_fmaddsubv4sf4, fma4i_fmaddsubv2df4, fma4i_fmsubaddv8sf4,
23140         fma4i_fmsubaddv4df4, fma4i_fmsubaddv4sf4, fma4i_fmsubaddv2df4):
23141         Guard only with TARGET_FMA4 instead of TARGET_FMA4 &&
23142         TARGET_FUSED_MADD.
23143
23144 2010-05-31  Jan Hubicka  <jh@suse.cz>
23145
23146         * tree.h (tree_range_check_failed): Declare noreturn.
23147
23148 2010-05-31  Jan Hubicka  <jh@suse.cz>
23149
23150         * gimple.c (gimple_call_builtin_p): New function.
23151         * gimple.h (gimple_call_builtin_p): Declare.
23152         * tree-cfg.c (make_edges): Produce edge from BUILT_IN_RETURN
23153         to exit.
23154         (execute_warn_function_return): BUILT_IN_RETURN is return.
23155         (split_critical_edges): Return edges are not critical.
23156         (is_ctrl_altering_stmt): Builtin_in_return is altering.
23157         (gimple_verify_flow_info): Handle built_in_return.
23158         (execute_warn_function_return): Handle built_in_return.
23159         * ipa-pure-const.c (check_call): Ignore builtin_return.
23160
23161 2010-05-31  Jakub Jelinek  <jakub@redhat.com>
23162
23163         PR middle-end/44337
23164         * expr.c (expand_assignment): Don't store anything for out-of-bounds
23165         array accesses with non-MEM.
23166
23167         PR tree-optimization/44182
23168         * tree-inline.c (copy_edges_for_bb): Don't split bb if a stmt that
23169         newly needs to end a bb is followed by debug stmts, instead return
23170         true from the function at the end.
23171         (maybe_move_debug_stmts_to_successors): New function.
23172         (copy_cfg_body): Call it if copy_edges_for_bb returned true.
23173
23174 2010-05-31  Kai Tietz  <kai.tietz@onevision.com>
23175
23176         PR target/44161
23177         * config/i386/cygming.h (SUBTARGET_OVERRIDE_OPTIONS): Handle flag_pic.
23178
23179 2010-05-31  Eric Botcazou  <ebotcazou@adacore.com>
23180
23181         * cgraphunit.c (cgraph_decide_is_function_needed): Really return false
23182         for nested functions in non-optimized compilation.
23183
23184 2010-05-31  Richard Guenther  <rguenther@suse.de>
23185
23186         * tree-ssa-structalias.c (find_func_aliases): Handle BUILT_IN_RETURN.
23187
23188 2010-05-30  Jan Hubicka  <jh@suse.cz>
23189
23190         * predict.c (maybe_hot_edge_p): Calls to functions called once is cold.
23191
23192 2010-05-30  Richard Guenther  <rguenther@suse.de>
23193
23194         PR lto/42975
23195         * tree-eh.c (execute_cleanup_eh_1): Copy from execute_cleanup_eh.
23196         (execute_cleanup_eh): Clear DECL_FUNCTION_PERSONALITY if it is
23197         no longer needed.
23198
23199 2010-05-30  Iain Sandoe  <iains@gcc.gnu.org>
23200
23201         * config/darwin.c (output_objc_section_asm_op): Add comment.
23202         (name_needs_quotes): Add '_' to list of valid comment chars.
23203         (machopic_output_function_base_name): Remove unneeded quotes.
23204         (darwin_encode_section_info): Adjust asm whitespace.
23205         * config/i386/darwin.h (ASM_OUTPUT_COMMON): Adjust asm tabs.
23206         (ASM_OUTPUT_LOCAL): Ditto.
23207         * config/rs6000/darwin.h (ASM_OUTPUT_COMMON): Ditto.
23208         * config/darwin.h (GLOBAL_ASM_OP): Ditto.
23209         * config/darwin9.h (ASM_OUTPUT_ALIGNED_COMMON): Ditto.
23210
23211 2010-05-30  Eric Botcazou  <ebotcazou@adacore.com>
23212
23213         * config/rs6000/rs6000.c (rs6000_output_function_entry): Use
23214         RS6000_OUTPUT_BASENAME unconditionally.
23215         (rs6000_output_function_epilogue): Likewise.
23216
23217 2010-05-30  Jan Hubicka  <jh@suse.cz>
23218
23219         * toplev.c (wrapup_global_declaration_2): Avoid creation of new varpool
23220         nodes.
23221
23222 2010-05-30  Richard Guenther  <rguenther@suse.de>
23223
23224         * tree-cfg.c (verify_gimple_assign_single): Implement
23225         verification for COND_EXPR rhs.
23226
23227 2010-05-30  Jan Hubicka  <jh@suse.cz>
23228
23229         * cgraph.h (cgraph_dump_file): Declare.
23230         * cgraphunit.c (cgraph_dump_file): Export.
23231         * ipa.c (dump_cgraph_node_set, dump_varpool_node_set): Be less verbose.
23232
23233 2010-05-30  Jan Hubicka  <jh@suse.cz>
23234
23235         * dwarf2out.c (reference_to_unused,
23236         premark_types_used_by_global_vars_helper): Avoid creation of new
23237         varpool nodes.
23238
23239 2010-05-30  Jan Hubicka  <jh@suse.cz>
23240
23241         * cgraph.h (cgraph_node_cannot_return,
23242         cgraph_edge_cannot_lead_to_return): New functions.
23243         * cgraph.c (cgraph_node_cannot_return,
23244         cgraph_edge_cannot_lead_to_return): Use them.
23245         * ipa-pure-const.c (pure_const_names): New static var.
23246         (check_call): Handle calls not leading to return.
23247         (pure_const_read_summary): Dump info read.
23248         (propagate): Dump info about propagation process; ignore side effects
23249         of functions not leading to exit; fix handling of pure functions.
23250
23251 2010-05-30  Jan Hubicka  <jh@suse.cz>
23252
23253         * config/i386/i386.c (pro_epilogue_adjust_stack): Use EBP
23254         for tail call epilogues.
23255
23256 2010-05-30  Jan Hubicka  <jh@suse.cz>
23257
23258         * passes.c (ipa_write_optimization_summaries_1, ipa_write_summaries_2,
23259         ipa_read_summaries_1, ipa_read_optimization_summaries_1): Initialize
23260         dump files.
23261
23262 2010-05-29  Jan Hubicka  <jh@suse.cz>
23263
23264         * ipa.c (cgraph_remove_unreachable_node): Walk references of correct
23265         node; remove references in node we no longer keep in cgrpah but need
23266         body of.
23267
23268 2010-05-29  Jan Hubicka  <jh@suse.cz>
23269
23270         * cgraph.c (cgraph_mark_reachable): Relax check for analyzed nodes.
23271
23272 2010-05-29  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
23273
23274         PR target/44165
23275         * config/pa/pa32-linux.h (CTOR_LIST_BEGIN): Mark __CTOR_LIST__ as used.
23276
23277 2010-05-29  Jan Hubicka  <jh@suse.cz>
23278
23279         * tree-vrp.c (debug_value_range, debug_all_value_ranges,
23280         debug_asserts_for, debug_all_asserts): Annotate with DEBUG_FUNCTION.
23281         * tree-into-ssa.c (debug_decl_set, debug_defs_stack, debug_currdefs,
23282         debug_tree_ssa, debug_tree_ssa_stats, debug_def_blocks,
23283         debug_names_replaced_by, debug_update_ssa): Likewise.
23284         * sbitmap.c (debug_sbitmap): Likewise.
23285         * genrecog.c (debug_decision, debug_decision_list): Likewise.
23286         * tree-pretty-print.c (debug_generic_expr, debug_generic_stmt,
23287         debug_tree_chain): Likewise.
23288         * tree-loop-distribution.c (debug_rdg_partitions): Likewise.
23289         * cgraph.c (debug_cgraph_node, debug_cgraph): Likewise.
23290         * optabs.c (debug_optab_libfuncs): Likewise.
23291         (verify_loop_closed_ssa): Likewise.
23292         * value-prof.c (verify_histograms): Likewise.
23293         * reload.c (debug_reload_to_stream, debug_reload): Likewise.
23294         * bitmap.c (debug_bitmap_file, debug_bitmap, bitmap_print): Likewise.
23295         * cfghooks.c (verify_flow_info): Likewise.
23296         * fold-const.c (debug_fold_checksum): Likewise.
23297         * omp-low.c (debug_omp_region, debug_all_omp_regions): Likewise.
23298         * cfg.c (debug_regset, debug_flow_info, debug_bb, debug_bb_n):
23299         Likewise.
23300         * omega.c (debug_omega_problem): Likewise.
23301         * cgraphunit.c (verify_cgraph_node, verify_cgraph): Likewise.
23302         * tree-ssa-ccp.c (debug_lattice_value): Likewise.
23303         * dominance.c (verify_dominators, debug_dominance_info,
23304         debug_dominance_tree): Likewise.
23305         * df-core.c (df_insn_uid_debug, df_insn_debug, df_insn_debug_regno,
23306         * df_regno_debug, df_ref_debug,
23307         debug_df_insn, debug_df_reg, debug_df_regno, debug_df_ref,
23308         debug_df_defno, debug_df_useno, debug_df_chain): Likewise.
23309         * tree-ssa-dom.c (debug_dominator_optimization_stats): Likewise.
23310         * sel-sched.c (debug_state): Likewise.
23311         * tree-ssa-alias.c (debug_alias_info, debug_points_to_info_for):
23312         Likewise.
23313         * cfganal.c (print_edge_list, verify_edge_list): Likewise.
23314         * dwarf2out.c (debug_dwarf_die, debug_dwarf): Likewise.
23315         * tree-eh.c (verify_eh_edges, verify_eh_dispatch_edge): Likewise.
23316         * gimple-pretty-print.c (debug_gimple_stmt, debug_gimple_seq):
23317         Likewise.
23318         * c-pretty-print.c (debug_c_tree): Likewise.
23319         * sel-sched-dump.c (debug_insn_rtx, debug_vinsn, debug_expr, debug_insn
23320         debug_av_set, debug_lv_set, debug_ilist, debug_blist,
23321         debug_insn_vector, debug_hard_reg_set, debug_mem_addr_value): Likewise.
23322         * ebitmap.c (debug_ebitmap): Likewise.
23323         * function.c (debug_find_var_in_block_tree): Likewise.
23324         * print-rtl.c (debug_rtx): Likewise.
23325         (debug_rtx_count): Likewise.
23326         (debug_rtx_list, debug_rtx_range, debug_rtx_find): Likewise.
23327         * stor-layout.c (debug_rli): Likewise.
23328         * ipa.c (debug_cgraph_node_set, debug_varpool_node_set): Likewise.
23329         * tree-data-ref.c (debug_data_references,
23330         debug_data_dependence_relations, debug_data_reference,
23331         debug_data_dependence_relation, debug_rdg_vertex,
23332         debug_rdg_component, debug_rdg): Likewise.
23333         * tree-affine.c (debug_aff): Likewise.
23334         * tree-dfa.c (debug_referenced_vars, debug_variable, debug_dfa_stats):
23335         Likewise.
23336         * except.c (debug_eh_tree, verify_eh_tree): Likewise.
23337         * emit-rtl.c (verify_rtl_sharing): Likewise.
23338         * tree-ssa-pre.c (debug_pre_expr, debug_bitmap_set,
23339         debug_value_expressions): Likewise.
23340         * tree-ssa-live.c (debug_scope_block, debug_scope_blocks): Likewise.
23341         * sese.c (debug_rename_map, debug_ivtype_map): Likewise.
23342         * print-tree.c (debug_tree, debug_vec_tree): Likewise.
23343         * cfglayout.c (verify_insn_chain): Likewise.
23344         * graphite-clast-to-gimple.c (debug_clast_name_indexes,
23345         debug_clast_stmt, debug_generated_program): Likewise.
23346         * ggc-page.c (debug_print_page_list): Likewise.
23347         * tree-ssa-ter.c (debug_ter): Likewise.
23348         * graphite-dependences.c (debug_pddr): Likewise.
23349         * sched-deps.c (debug_ds): Likewise.
23350         * tree-ssa.c (verify_ssa): Likewise.
23351         * graphite-poly.c (debug_scattering_function, debug_iteration_domain,
23352         debug_scattering_functions, debug_iteration_domains, debug_pdr,
23353         debug_pdrs, debug_pbb_domain, debug_pbb, debug_scop_context,
23354         debug_scop, debug_cloog, debug_scop_params, debug_lst): Likewise.
23355         * tree-inline.c (debug_find_tree): Likewise.
23356         * graphite-ppl.c (debug_ppl_linear_expr, debug_ppl_polyhedron_matrix,
23357         debug_ppl_powerset_matrix): Likewise.
23358         * var-tracking.c (debug_dv): Likewise.
23359         * system.h (DEBUG_FUNCTION, DEBUG_VARIABLE): Define.
23360         * cfgloop.c (verify_loop_structure): Likewise.
23361         * plugin.c (dump_active_plugins, debug_active_plugins): Likewise.
23362         * c-common.c (verify_sequence_points): Likewise.
23363         * sched-rgn.c (debug_regions, debug_region, debug_candidate,
23364         debug_candidates, debug_rgn_dependencies): Likewise.
23365         * tree-ssa-structalias.c (debug_constraint, debug_constraints,
23366         * debug_constraint_graph, debug_solution_for_var,
23367         debug_sa_points_to_info): Likewise.
23368         * sched-vis.c (debug_insn_slim, debug_bb_slim, debug_bb_n_slim):
23369         Likewie.
23370         * tree-cfg.c (debug_cfg_stats, verify_stmts, debug_function,
23371         debug_loops, debug_loop, debug_loop_num): Likewise.
23372         * passes.c (debug_pass): Likewise.
23373         (dump_properties): Likewise; add cfglayout property.
23374         (debug_properties): Likewise.
23375         * tree-ssa-reassoc.c (debug_ops_vector): Likewise.
23376         * varpool.c (debug_varpool): Likewise.
23377         * regcprop.c (debug_value_data): Likewise.
23378         * tree-ssa-operands.c (verify_imm_links, debug_immediate_uses,
23379         debug_immediate_uses_for): Likewise.
23380
23381 2010-05-29  H.J. Lu  <hongjiu.lu@intel.com>
23382
23383         PR bootstrap/44315
23384         * Makefile.in (build/gencondmd.o): Remove TM_H := $(GTM_H).
23385         Filter out insn-flags.h.
23386
23387 2010-05-29  Jan Hubicka  <jh@suse.cz>
23388
23389         * cgraph.h (struct varpool_node_set_def,
23390         struct cgraph_node_set_def): Remove unused AUX pointer.
23391         (cgraph_node_set_nonempty_p, varpool_node_set_nonempty_p): Use
23392         VEC_empty macro.
23393
23394 2010-05-29  Jan Hubicka  <jh@suse.cz>
23395
23396         PR middle-end/44324
23397         * ipa-cp.c (ipcp_insert_stage): Replace "clone" by "constprop".
23398
23399 2010-05-29  Richard Guenther  <rguenther@suse.de>
23400
23401         * lto-streamer.c (cached_bp): New global variable.
23402         (bitpack_create): Return the cached bitpack, if available.
23403         (bitpack_delete): Clear and cache the bitpack, if appropriate.
23404         (bp_pack_value): Remove redundant asserts.
23405
23406 2010-05-29  Sebastian Pop  <sebastian.pop@amd.com>
23407
23408         PR middle-end/44306
23409         * tree-if-conv.c (is_true_predicate): New.
23410         (is_predicated): Use is_true_predicate.
23411         (add_to_predicate_list): Same.  Do not use unshare_expr.
23412         (add_to_dst_predicate_list): Same.
23413
23414 2010-05-29  Sebastian Pop  <sebastian.pop@amd.com>
23415
23416         * tree-if-conv.c (add_to_dst_predicate_list): Do not use the ->aux
23417         field on edges.
23418         (predicate_bbs): Same.
23419         (clean_predicate_lists): Same.
23420         (find_phi_replacement_condition): Do not AND the predicate from
23421         edge->aux.
23422
23423 2010-05-29  H.J. Lu  <hongjiu.lu@intel.com>
23424
23425         PR bootstrap/44315
23426         * Makefile.in (build/gencondmd.o): Add a missing `\'.
23427
23428 2010-05-29  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
23429
23430         PR target/44261
23431         config/pa/pa.md (negdf2_slow, negsf2_slow): New patterns.
23432         (negdf2): Adjust expander pattern and use negdf2_slow.
23433         (negsf2): Likewise.
23434
23435 2010-05-29  Nathan Froyd  <froydnj@codesourcery.com>
23436
23437         * basic-block.h (struct control_flow_graph): Move last_label_uid field
23438         up.
23439         * df.h (struct df_base_ref): Move regno field up.
23440         * dwarf2out.c (struct dw_fde_struct): Move funcdef_number field down.
23441         * expr.h (struct separate_ops): Move location field up.
23442         * optabs.h (struct optab_d): Move libcall_basename field down.
23443         * config/i386/i386.c (struct ix86_frame): Move red_zone_size up.
23444         * config/i386/i386.h (struct machine_function): Convert call_abi field
23445         into a bitfield.  Move cfa field to the end of the structure.
23446
23447 2010-05-29  Jan Hubicka  <jh@suse.cz>
23448
23449         * varpool.c (varpool_get_node): Fix lookup.
23450
23451 2010-05-29  Steven Bosscher  <steven@gcc.gnu.org>
23452
23453         * config/spu/spu-protos.h: Do not include rtl.h.  Protect
23454         RTL specific prototypes with #ifdef RTX_CODE.
23455         * config/spu/spu-c.c: Include c-common.h instead of c-tree.h.
23456         * config/spu/t-spu-elf: Fix dependencies.
23457
23458         * config/t-darwin (darwin-c.o): Remove C_TREE_H dependency.
23459
23460 2010-05-29  Mike Stump  <mikestump@comcast.net>
23461
23462         PR bootstrap/44315
23463         * Makefile.in (build/gencondmd.o): Be sure to use GTM_H instead of
23464         TM_H when building to avoid dependency loops.
23465
23466 2010-05-29  Jan Hubicka  <jh@suse.cz>
23467
23468         * cgraphunit.c (cgraph_materialize_clone): Only remove calles,
23469         refs and body; not the whole node for masters of materialized clones.
23470
23471 2010-05-29  Mike Stump  <mikestump@comcast.net>
23472
23473         * config/rs6000/rs6000-c.c: Remove c-tree.h include.
23474
23475 2010-05-29  Jan Hubicka  <jh@suse.cz>
23476
23477         * cgraph.c (clone_function_name): Take SUFFIX argument; export.
23478         (cgraph_create_virtual_clone): Take SUFFIX argument; udpate
23479         use of clone_function_name.
23480         * cgraph.h (cgraph_create_virtual_clone,
23481         cgraph_function_versioning): update prototypes.
23482         (clone_function_name): Declare.
23483         * ipa-cp.c (ipcp_insert_stage): Update call of
23484         cgraph_create_virtual_clone.
23485         * omp-low.c (create_omp_child_function_name): Use
23486         cgraph_create_virtual_clone.
23487         * cgraphunit.c (cgraph_copy_node_for_versioning): Fix edges updating.
23488         (cgraph_function_versioning): Take SUFFIX argument; produce new name
23489         and make decl local.
23490
23491 2010-05-29  Steven Bosscher  <steven@gcc.gnu.org>
23492
23493         * vec.h: Include statistics.h
23494         * Makefile.in: Introduce VEC_H.  Replace all vec.h dependencies
23495         with VEC_H.
23496
23497 2010-05-29  Steven Bosscher  <steven@gcc.gnu.org>
23498
23499         * c-lex.c: Do not include c-tree.h.
23500         * c-pretty-print.c: Likewise.
23501         * c-opts.c: Likewise.
23502         * c-gimplify.c: Likewise.
23503         * c-common.c: Likewise.
23504         * c-dump.c: Likewise.  Include c-common.h.
23505
23506 2010-05-29  Steven Bosscher  <steven@gcc.gnu.org>
23507
23508         * c-common.h (GCC_DIAG_STYLE): Define earlier in the file,
23509         before including diagnostic-core.h.
23510         (c_cpp_error): New prototype moved from c-tree.h.
23511         Use ATTRIBUTE_GCC_DIAG instead of ATTRIBUTE_GCC_CDIAG.
23512         * c-tree.h (ATTRIBUTE_GCC_CDIAG): Remove define.
23513         (pedwarn_c90, perwarn_c99): Use ATTRIBUTE_GCC_DIAG instead.
23514         (c_cpp_error): Prototype moved to c-common.h.
23515         * Makefile.in: Update dependency for C_COMMON_H.
23516
23517 2010-05-29  Steven Bosscher  <steven@gcc.gnu.org>
23518
23519         * c-common.h: Add FIXME for awkward split of c_register_addr_space.
23520         * c-common.c (c_register_addr_space): Remove here.
23521         * c-decl.c (c_register_addr_space): Re-add here.
23522
23523 2010-05-28  Mike Stump  <mikestump@comcast.net>
23524
23525         * config/darwin-c.c: Remove c-tree.h include.
23526
23527 2010-05-28  Joseph Myers  <joseph@codesourcery.com>
23528
23529         * gcc.c: Include diagnostic.h.
23530         (error_count): Remove.  All users changed to use errorcount.
23531         (programname): Remove.  All users changed to use progname.
23532         (fancy_abort, internal_error, fatal_error, error, warning, inform,
23533         fnotice): Remove.
23534         (execute): Don't include "Internal error" and bug reporting
23535         information in argument of internal_error call.
23536         (process_command): Don't increment error_count after calling
23537         perror_with_name.
23538         (input_filename): Rename to gcc_input_filename.  All users
23539         changed.
23540         (main): Call diagnostic_initialize.  Register delete_temp_files
23541         with atexit.  Use seen_error to test for errors.
23542         * gcc.h: Include diagnostic-core.h.
23543         (fatal_error, error, warning): Remove.
23544         * Makefile.in (GCC_H): Add $(DIAGNOSTIC_CORE_H).
23545         (GCC_OBJS): Add diagnostic.o, pretty-print.o and input.o.
23546         (gcc.o): Update dependencies.
23547
23548 2010-05-28  Jeff Law  <law@redhat.com>
23549
23550         * ira.c (ira_bad_reload_regno, ira_build_reload_regno_1): New
23551         functions.
23552         * ira.h (ira_bad_reload_regno): Declare
23553         * reload1.c (allocate_reload_reg): Use ira_bad_reload_regno.
23554
23555         * ira-color.c (update_curr_costs): Free updated hard reg costs.
23556         (ira_reassign_conflict_allocnos): Remove bogus asserts.
23557         (allocno_reload_assign): Likewise.
23558
23559 2010-05-28  Nathan Froyd  <froydnj@codesourcery.com>
23560
23561         * tree-vect-stmts.c (vectorizable_assignment): Call build1 instead of
23562         build1_stat.
23563
23564 2010-05-28  Richard Guenther  <rguenther@suse.de>
23565
23566         PR lto/44312
23567         * lto-streamer-in.c (unpack_ts_fixed_cst_value_fields):
23568         Stream fixed-point constants mode.
23569         (unpack_ts_type_value_fields): Fix width of TYPE_MODE
23570         and TYPE_PRECISION.
23571         * lto-streamer-out.c (pack_ts_fixed_cst_value_fields):
23572         Stream fixed-point constants mode.
23573         (pack_ts_function_decl_value_fields): Fix width of TYPE_MODE
23574         and TYPE_PRECISION.
23575
23576 2010-05-28  Sebastian Pop  <sebastian.pop@amd.com>
23577
23578         * tree-scalar-evolution.c (set_nb_iterations_in_loop): Inlined in the
23579         only place it was called from.
23580         (number_of_latch_executions): Do not return chrec_dont_know when the
23581         may_be_zero is a runtime condition: instead, return a COND_EXPR
23582         including the may_be_zero condition.
23583         * cfgloop.h (struct loop): Add a note on COND_EXPRs to the comment
23584         of nb_iterations.
23585         * tree-ssa-loop-ivopts.c (contains_abnormal_ssa_name_p): Handle
23586         COND_EXPRs.
23587
23588 2010-05-28  Sebastian Pop  <sebastian.pop@amd.com>
23589
23590         * tree-if-conv.c (replace_phi_with_cond_gimple_assign_stmt): Don't
23591         generate COND_EXPRs for degenerate_phi_result.
23592
23593 2010-05-28  Sebastian Pop  <sebastian.pop@amd.com>
23594
23595         PR middle-end/44293
23596         * tree-if-conv.c (if_convertible_loop_p): Check the
23597         if-convertibility of phi nodes in non predicated BBs.
23598
23599 2010-05-28  Joseph Myers  <joseph@codesourcery.com>
23600
23601         * gcc.c (error, warning, inform): Remove duplicate ": " in output.
23602
23603 2010-05-28  Joseph Myers  <joseph@codesourcery.com>
23604
23605         PR driver/15303
23606         * gcc.c (inform, warning, inform): New functions.
23607         (fatal_ice): Rename to internal_error; change cmsgid parameter to
23608         gmsgid.  All callers changed.
23609         (notice): Rename to fnotice; add parameter fp.  All callers changed.
23610         (fatal_error): Rename to fatal_signal.  All users changed.
23611         (fatal): Rename to fatal_error; change cmsgid parameter to
23612         gmsgid.  All callers changed.
23613         (process_command): Use warning instead of error for warnings.
23614         (end_going_arg): Don't use _() around argument of error.
23615         (do_spec_1): Use inform for message from %n specs.  Use warning
23616         instead of error for warnings.
23617         (main): Use inform for comparison messages.  Use warning for
23618         message about unused linker input.
23619         (error): Increment error_count.  Print "error: ".
23620         * gcc.h (fatal): Change to fatal_error.
23621         (warning): Declare.
23622         * config/darwin-driver.c (darwin_default_min_version): Use warning
23623         instead of fprintf for warnings.
23624         * cppspec.c (lang_specific_driver): Use fatal_error instead of fatal.
23625
23626 2010-05-28  Julian Brown  <julian@codesourcery.com>
23627
23628         * config/arm/thumb2.md (*thumb2_addsi3_compare0): New.
23629         (*thumb2_addsi3_compare0_scratch): New.
23630         * config/arm/constraints.md (Pv): New.
23631         * config/arm/arm.md (*addsi3_compare0): Remove FIXME comment. Use
23632         for ARM mode only.
23633         (*addsi3_compare0_scratch): Likewise.
23634
23635 2010-05-28  Jan Hubicka  <jh@suse.cz>
23636
23637         * ipa-reference.c (add_static_var): Remove redundant all_module_statics
23638         check.
23639         (ipa_reference_write_optimization_summary): Call is_proper_for_analysis
23640         only on local statics.
23641
23642 2010-05-28  Iain Sandoe  <iains@gcc.gnu.org>
23643
23644         * config.gcc (*-*-darwin*): Adjust t-make fragments for Darwin.
23645
23646 2010-05-28  Maxim Kuvyrkov  <maxim@codesourcery.com>
23647
23648         PR bootstrap/44314
23649         * config/alpha/linux.h, config/rs6000/linux.h, config/rs6000/linux64.h
23650         (OPTION_GLIBC): Define.
23651
23652 2010-05-28  Jakub Jelinek  <jakub@redhat.com>
23653
23654         PR debug/41048
23655         * dwarf2out.c (double_int_type_size_in_bits): New function.
23656         (round_up_to_align): Change first argument and return value to
23657         double_int.
23658         (field_byte_offset): Work internally on double_ints.
23659
23660         PR target/43636
23661         * builtins.c (expand_movstr): Use a temporary pseudo instead
23662         of target even when target is not NULL and not const0_rtx, but
23663         fails movstr predicate.
23664         * config/m32c/blkmov.md (movstr): Add predicate to first operand.
23665
23666 2010-05-28  Joseph Myers  <joseph@codesourcery.com>
23667
23668         * final.c (rest_of_clean_state): Use %m in errors instead of
23669         strerror (errno).
23670         * gengtype.c (read_input_list, close_output_files): Use xstrerror
23671         instead of strerror.
23672         * toplev.c (process_options): Use %m in errors instead of strerror
23673         (errno).
23674         * tree-dump.c (dump_begin): Use %m in errors instead of strerror
23675         (errno).
23676
23677 2010-05-28  Uros Bizjak  <ubizjak@gmail.com>
23678
23679         * config/i386/i386.c (ix86_fn_abi_va_list): Make static.
23680         (ix86_canonical_va_list_type): Make static.  Add declaration.
23681         (ix86_enum_va_list): Make static.  Reindent.
23682         * config/i386/i386-protos.h (ix86_fn_abi_va_list): Remove declaration.
23683         (ix86_canonical_va_list_type): Ditto.
23684         (ix86_enum_va_list): Ditto.
23685
23686 2010-05-28  Richard Guenther  <rguenther@suse.de>
23687
23688         * lto-wrapper.c (run_gcc): With -save-temps generate a
23689         user-visible ltrans filename.  Fixup ltrans unit numbering.
23690
23691 2010-05-28  Kai Tietz  <kai.tietz@onevision.com>
23692
23693         * c-common.c (c_common_nodes_and_builtins): Replace use
23694         of TARGET_ENUM_VA_LIST by target hook enum_va_list.
23695         * config/i386/i386.c (TARGET_ENUM_VA_LIST_P): Hook
23696         to ix86_enum_va_list.
23697         * config/i386/i386.h (TARGET_ENUM_VA_LIST): Removed.
23698         * doc/tm.texi (TARGET_ENUM_VA_LIST): Removed.
23699         (TARGET_ENUM_VA_LIST_P): Add hook description.
23700         * target-def.h (TARGET_ENUM_VA_LIST_P): Added.
23701         * target.h (gcc_target): Add enum_va_list hook.
23702
23703         PR bootstrap/44299
23704         * config/i386/t-cygming: Adjust header dependencies for winnt-cxx.c.
23705         * config/i386/winnt-cxx.c (IN_GCC_FRONTEND): Remove undefine.
23706         * config/i386/winnt.c (IN_GCC_FRONTEND): Likewise.
23707
23708 2010-05-28  Alan Modra  <amodra@gmail.com>
23709
23710         PR target/44266
23711         * config/rs6000/rs6000.c (rs6000_legitimize_tls_address): Use
23712         emit_library_call machinery to set up __tls_get_addr calls.
23713
23714 2010-05-28  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
23715
23716         * config/s390/s390.md (movqi): Fix typo ('*' -> '#').
23717
23718 2010-05-28  Dodji Seketeli  <dodji@redhat.com>
23719
23720         Revert fix for PR c++/44188
23721         * c-common.c (is_typedef_decl): Revert the moving of  this
23722         definition ...
23723         * tree.c (is_typedef_decl): ... here.
23724         (typdef_variant_p): Revert the moving of this  definition
23725         here from cp/tree.c.
23726         * c-common.h (is_typedef_decl): Revert the moving of this
23727         declaration ...
23728         * tree.h (is_typedef_decl): ... here.
23729         (typedef_variant_p): Revert the moving of this  declaration here
23730         from cp/cp-tree.h
23731         * dwarf2out.c (is_naming_typedef_decl): Revert this new function.
23732         (gen_tagged_type_die): Revert the splitting out of ...
23733         (gen_type_die_with_usage): ... this function. Revert the anonymous
23734         tagged type handling.
23735         (gen_typedef_die): Revert emitting DW_TAG_typedef  for
23736         typedefs naming anonymous tagged types.
23737
23738 2010-05-28  Segher Boessenkool  <segher@kernel.crashing.org>
23739
23740         * config/rs6000/rs6000-modes.def (PSImode): Delete.
23741
23742 2010-05-28  Segher Boessenkool  <segher@kernel.crashing.org>
23743
23744         * config/rs6000/constraints.md ("z" constraint): Change to CA_REGS.
23745         * config/rs6000/predicates.md: Change XER_REGNO_P to CA_REGNO_P
23746         throughout.
23747         * config/rs6000/rs6000.c (rs6000_reg_names, alt_reg_names): Change
23748         "xer" to "ca".
23749         Change XER_REGNO_P to CA_REGNO_P, XER_REGNO to CA_REGNO, and
23750         XER_REGS to CA_REGS throughout.
23751         * config/rs6000/rs6000.h: Same.
23752         (ADDITIONAL_REGISTER_NAMES): Add "xer".
23753         * config/rs6000/rs6000.md: Change XER_REGNO to CA_REGNO.  Document
23754         that mode_iterator "P" is the size for arithmetic carries as well.
23755         * doc/md.texi (rs6000 section, "z" constraint): Fix documentation.
23756
23757 2010-05-28  Jakub Jelinek  <jakub@redhat.com>
23758
23759         PR bootstrap/44255
23760         * combine.c (struct rtx_subst_pair): Define unconditionally.
23761         (propagate_for_debug_subst): Likewise.  If not AUTO_INC_DEC,
23762         copy_rtx pair->to instead of cleanup_auto_inc_dec it.
23763         Call make_compound_operation on pair->to.
23764         (propagate_for_debug): Don't call make_compound_operation here.
23765         Always use simplify_replace_fn_rtx.
23766
23767 2010-05-27  Sterling Augustine  <sterling@tensilica.com>
23768
23769         * doc/invoke.texi (xtensa options): Add -mforce-no-pic.
23770         * config/xtensa/xtensa.c (override_options): Check
23771           TARGET_FORCE_NO_PIC and set flag_pic.
23772         * config/xtensa/xtensa.opt: Document -mforce-no-pic
23773
23774 2010-05-27  Kai Tietz  <kai.tietz@onevision.com>
23775
23776         PR bootstrap/44299
23777         * config/i386/winnt.c (IN_GCC_FRONTEND): Undefine.
23778         * config/i386/winnt-cxx.c (IN_GCC_FRONTEND): Likewise.
23779
23780 2010-05-27  Joseph Myers  <joseph@codesourcery.com>
23781
23782         * diagnostic-core.h: New.  Contents moved from diagnostic.h and
23783         toplev.h.
23784         * diagnostic.c: Don't include toplev.h.
23785         (progname): Define.  Moved from toplev.c.
23786         (seen_error): New function.
23787         * diagnostic.h: Include diagnostic-core.h.
23788         (diagnostic_t, emit_diagnostic): Don't declare here.
23789         * toplev.c (progname): Move to toplev.c.
23790         (emit_debug_global_declarations, compile_file, finalize,
23791         do_compile, toplev_main): Use seen_error.
23792         * toplev.h: Include diagnostic-core.h.
23793         (trim_filename, GCC_DIAG_STYLE, ATTRIBUTE_GCC_DIAG,
23794         internal_error, warning, warning_at, error, error_n, error_at,
23795         fatal_error, pedwarn, permerror, sorry, inform, inform_n,
23796         verbatim, fnotice, progname): Move to diagnostic-core.h.
23797         * builtins.c: Include diagnostic-core.h instead of diagnostic.h.
23798         (expand_builtin_expect): Use seen_error.
23799         * c-decl.c: Include diagnostic-core.h instead of diagnostic.h.
23800         (c_make_fname_decl, c_write_global_declarations): Use seen_error.
23801         * c-format.c: Include diagnostic-core.h instead of diagnostic.h.
23802         * c-gimplify.c: Include diagnostic-core.h instead of diagnostic.h.
23803         * c-lang.c: Include diagnostic-core.h instead of diagnostic.h.
23804         * c-lex.c (c_lex_with_flags, interpret_float): Don't increment
23805         errorcount for errors.
23806         * c-opts.c (c_common_finish): Use seen_error.
23807         * cgraph.c: Include diagnostic-core.h instead of diagnostic.h.
23808         * cgraphunit.c (verify_cgraph_node, verify_cgraph,
23809         cgraph_output_pending_asms, cgraph_optimize): Use seen_error.
23810         * coverage.c: Include diagnostic-core.h instead of diagnostic.h.
23811         (get_coverage_counts): Use seen_error.
23812         * dwarf2out.c (dwarf2out_finish): Use seen_error.
23813         * gimplify.c (gimplify_var_or_parm_decl, gimple_push_cleanup,
23814         gimplify_body): Use seen_error.
23815         * ipa-inline.c (cgraph_early_inlining): Use seen_error.
23816         * ipa-pure-const.c (gate_pure_const): Use seen_error.
23817         * ipa-reference.c (gate_reference): Use seen_error.
23818         * jump.c: Include diagnostic-core.h instead of diagnostic.h.
23819         * lambda-code.c: Include diagnostic-core.h instead of
23820         diagnostic.h.
23821         * lto-cgraph.c: Include diagnostic-core.h instead of diagnostic.h.
23822         * lto-compress.c: Include diagnostic-core.h instead of
23823         diagnostic.h.
23824         * lto-section-in.c: Include diagnostic-core.h instead of
23825         diagnostic.h.
23826         * lto-streamer-out.c: Include diagnostic-core.h instead of
23827         diagnostic.h.
23828         * lto-streamer.c: Include diagnostic-core.h instead of
23829         diagnostic.h.
23830         (gate_lto_out): Use seen_error.
23831         * matrix-reorg.c: Include diagnostic-core.h instead of
23832         diagnostic.h.
23833         * omega.c: Include diagnostic-core.h instead of diagnostic.h.
23834         * omp-low.c: Include diagnostic-core.h instead of diagnostic.h.
23835         (gate_expand_omp, lower_omp_1): Use seen_error.
23836         * passes.c: Include diagnostic-core.h instead of diagnostic.h.
23837         (rest_of_decl_compilation, rest_of_type_compilation,
23838         gate_rest_of_compilation, ipa_write_summaries): Use seen_error.
23839         * tree-cfg.c (label_to_block_fn): Use seen_error.
23840         * tree-inline.c (optimize_inline_calls): Use seen_error.
23841         * tree-mudflap.c (mudflap_finish_file): Use
23842         seen_error.
23843         * tree-optimize.c (gate_all_optimizations,
23844         gate_all_early_local_passes, gate_all_early_optimizations): Use
23845         seen_error.
23846         * tree-ssa-structalias.c (gate_ipa_pta): Use seen_error.
23847         * varpool.c: Include diagnostic-core.h instead of diagnostic.h.
23848         (varpool_remove_unreferenced_decls,
23849         varpool_assemble_pending_decls): Use seen_error.
23850         * Makefile.in (DIAGNOSTIC_CORE_H): Define.
23851         (TOPLEV_H, DIAGNOSTIC_H): Update.
23852         (c-decl.o, c-lang.o, c-format.o, lto-compress.o, lto-cgraph.o,
23853         lto-streamer-out.o, lto-section-in.o, lto-streamer.o,
23854         c-gimplify.o, omp-low.o, omega.o, diagnostic.o, passes.o,
23855         builtins.o, jump.o, cgraph.o, varpool.o, matrix-reorg.o,
23856         coverage.o, lambda-code.o): Update dependencies.
23857
23858 2010-05-25  Dodji Seketeli  <dodji@redhat.com>
23859
23860         PR c++/44188
23861         * c-common.c (is_typedef_decl): Move this definition ...
23862         * tree.c (is_typedef_decl): ... here.
23863         (typdef_variant_p): Move definition here from cp/tree.c.
23864         * c-common.h (is_typedef_decl): Move this declaration ...
23865         * tree.h (is_typedef_decl): ... here.
23866         (typedef_variant_p): Move declaration here from cp/cp-tree.h
23867         * dwarf2out.c (is_naming_typedef_decl): New function.
23868         (gen_tagged_type_die): Split out of ...
23869         (gen_type_die_with_usage): ... this function. When an anonymous
23870         tagged type is named by a typedef, make sure a DW_TAG_typedef DIE
23871         is emitted for the typedef.
23872         (gen_typedef_die): Emit DW_TAG_typedef also for typedefs naming
23873         anonymous tagged types.
23874
23875 2010-05-27  Jason Merrill  <jason@redhat.com>
23876
23877         * print-tree.c (debug_vec_tree): New fn.
23878         (print_vec_tree): New fn.
23879         * tree.h: Declare them.
23880         * gdbinit.in (pvt): New command.
23881
23882         * print-tree.c (print_node) [TREE_VEC]: Print elements normally.
23883
23884         * gdbinit.in (pdd): New command.
23885
23886 2010-05-27  Jan Hubicka  <jh@suse.cz>
23887
23888         * ipa-inline.c (cgraph_estimate_size_after_inlining): Make inline.
23889         (update_caller_keys): Return early if there are no callers;
23890         only update fibheap when decresing the key.
23891         (update_callee_keys): Avoid recursion.
23892         (decide_inlining_of_small_functions): When badness does not match;
23893         re-insert into fibheap.
23894
23895 2010-05-27  Steven Bosscher  <steven@gcc.gnu.org>
23896
23897         * Makefile.in (ALL_CFLAGS): Add file-specific CFLAGS.
23898         (ALL_HOST_FRONTEND_OBJS): New, for all front-end specific objects.
23899         (ALL_HOST_BACKEND_OBJS): New, for all backend and target objects.
23900         (ALL_HOST_OBJS): Now a union of the above two.
23901         <section "Language makefile fragments">: Add -DIN_GCC_FRONTEND for
23902         all files in ALL_HOST_FRONTEND_OBJS.
23903         * system.h: Poison GCC_RTL_H if IN_GCC_FRONTEND is defined.
23904
23905         * c-common.c: Pretend to be a backend file by undefining
23906         IN_GCC_FRONTEND (still need rtl.h here).
23907
23908 2010-05-27  Jan Hubicka  <jh@suse.cz>
23909
23910         * cgraph.h (struct cgraph_node): Mark former_clone_of by GTY ((skip)).
23911         * cgraphunit.c (clone_of_p): Compile only when checking is enabled.
23912
23913 2010-05-27  Jan Hubicka  <jh@suse.cz>
23914
23915         * sched-ebb.c: Rename struct deps to struct deps_desc.
23916         * ddg.c: Likewise.
23917         * sel-sched-ir.c: Likewise.
23918         * sched-deps.c: Likewise.
23919         * sched-int.h: Likewise.
23920         * sched-rgn.c: Likewise.
23921
23922 2010-05-27  Jon Beniston  <jon@beniston.com>
23923
23924         PR 43726
23925         * config/lm32/lm32.h: Remove definition of
23926         GO_IF_MODE_DEPENDENT_ADDRESS. Update copyright year.
23927
23928 2010-05-27  Eric Botcazou  <ebotcazou@adacore.com>
23929
23930         PR lto/44230
23931         * dwarf2out.c (dwarf2out_begin_prologue): Fix nits in sorry message.
23932
23933 2010-05-27  Richard Guenther  <rguenther@suse.de>
23934
23935         PR tree-optimization/44284
23936         * tree-vect-stmts.c (vectorizable_assignment): Handle
23937         sign-changing conversions as simple copy.
23938
23939 2010-05-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
23940
23941         * gthr-posix.h (pthread_cancel): Don't declare if compiling against
23942         Bionic C library.
23943         (__gthread_active_p): Check for pthread_create if compiling against
23944         Bionic C library.
23945
23946 2010-05-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
23947
23948         Support compilation for Android platform.  Reimplement -mandroid.
23949
23950         * config.gcc (*linux*): Include linux-android.h and linux-android.opt.
23951         (*android*): Set ANDROID_DEFAULT.
23952         (arm*-*-linux*): Include linux-android.h.
23953         (arm*-*-eabi*): Don't include previous -mandroid implementation.
23954         * config/arm/eabi.h: Remove, move Android-specific parts ...
23955         * config/linux-android.h: ... here.  New file.
23956         * config/arm/eabi.opt: Rename to ...
23957         * config/linux-android.opt: ... this.
23958         (mandroid): Allow -mno-android option.  Initialize based on
23959         ANDROID_DEFAULT.
23960         * config/linux.h (STARTFILE_SPEC, ENDFILE_SPEC, CC1_SPEC, LIB_SPEC):
23961         Move logic to corresponding LINUX_TARGET_* macros.
23962         (TARGET_OS_CPP_BUILTINS): Define __ANDROID__, when appropriate.
23963         * config/linux-eabi.h (LINK_SPEC, CC1_SPEC, CC1PLUS_SPEC, LIB_SPEC,)
23964         (STARTFILE_SPEC, ENDFILE_SPEC): Define to choose between Linux and
23965         Android definitions.
23966         (LINUX_TARGET_OS_CPP_BUILTINS): Define __ANDROID__ if TARGET_ANDROID.
23967         * doc/invoke.texi (-mandroid, -tno-android-cc, -tno-android-ld):
23968         Document.
23969
23970 2010-05-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
23971
23972         Add support for Bionic C library
23973
23974         * config.gcc (LIBC_GLIBC, LIBC_BIONIC, LIBC_UCLIBC): New tm_define
23975         macro.
23976         (DEFAULT_LIBC): New tm_define macro set to one of LIBC_*.
23977         (bfin*-uclinux, moxie-*-uclinux*, m68k-*-uclinux*): Update.
23978
23979         * config/linux.h (OPTION_GLIBC, OPTION_UCLIBC, OPTION_BIONIC): Define.
23980         (LINUX_TARGET_OS_CPP_BUILTINS): Define __gnu_linux__ only for GLIBC.
23981         (CHOOSE_DYNAMIC_LINKER1, CHOOSE_DYNAMIC_LINKER): Make it easier
23982         to support multiple C libraries.  Handle Bionic.
23983         (BIONIC_DYNAMIC_LINKER, BIONIC_DYNAMIC_LINKER32,)
23984         (BIONIC_DYNAMIC_LINKER64): Define.
23985         (LINUX_DYNAMIC_LINKER, LINUX_DYNAMIC_LINKER32, LINUX_DYNAMIC_LINKER64):
23986         Update.
23987         (TARGET_HAS_SINCOS): Enable for Bionic.
23988
23989         * config/linux.opt: Rewrite to handle more than 2 C libraries.  Make
23990         the last option specified on command line take effect.
23991         (linux_uclibc): Rename to linux_libc, initialize using DEFAULT_LIBC.
23992         (mbionic): New.
23993         (mglibc, muclibc): Update.
23994
23995         * config/alpha/linux-elf.h, config/rs6000/linux64.h,
23996         * config/rs6000/sysv4.h (CHOOSE_DYNAMIC_LINKER): Update to use
23997         DEFAULT_LIBC.
23998
23999         * doc/invoke.texi (-mglibc, -muclibc): Update.
24000         (-mbionic): Document.
24001
24002 2010-05-27  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
24003
24004         * c-common.h (c_register_addr_space): Add prototype.
24005         (ADDR_SPACE_KEYWORD): Remove.
24006         * c-common.c (c_register_addr_space): New function.
24007         (c_addr_space_name): Reimplement.
24008         (c_common_reswords): Do not include TARGET_ADDR_SPACE_KEYWORDS.
24009
24010         * config/spu/spu.h (TARGET_ADDR_SPACE_KEYWORDS): Remove.
24011         (REGISTER_TARGET_PRAGMAS): Call c_register_addr_space.
24012
24013         * doc/tm.texi (Named Address Spaces): Mention c_register_addr_space.
24014         Remove TARGET_ADDR_SPACE_KEYWORDS.
24015
24016 2010-05-27  Joseph Myers  <joseph@codesourcery.com>
24017
24018         * input.c: New file.
24019         * input.h (main_input_filename): Move declaration to toplev.h.
24020         * toplev.c (input_location, line_table): Move to input.c
24021         * toplev.h (main_input_filename): Move declaration from input.h.
24022         * tree.c (expand_location): Move to input.c.
24023         * Makefile.in (OBJS-common): Add input.o.
24024         (input.o): Add dependencies.
24025
24026 2010-05-27  Richard Guenther  <rguenther@suse.de>
24027
24028         * lto-wrapper.c (maybe_unlink_file): Ignore unlink failure
24029         for non-existant files.
24030         (fork_execute): Mark args_name file as deleted.
24031
24032 2010-05-27  Kai Tietz  <kai.tietz@onevision.com>
24033
24034         PR bootstrp/44287
24035         * c-lex.c (narrowest_unsigned_type): Check for NULL_TREE.
24036         (narrow_signed_type): Likewise.
24037
24038 2010-05-26  Jan Hubicka  <jh@suse.cz>
24039
24040         * cgraphunit.c (verify_cgraph_node): Do checking that DECL match
24041         edge only when checking is enabled; check using former_clone_of;
24042         check inline clones too.
24043         (cgraph_materialize_clone): Record former_clone_of pointer.
24044         (cgraph_redirect_edge_call_stmt_to_callee): Assert that we are not
24045         combining redirections; dump args_to_skip bitmap
24046         (cgraph_materialize_all_clones): Do no redirection here.
24047         * ipa-inline.c (inline_transform): Do redirection here.
24048         * cgraph.h (struct cgraph_node): Add former_clone_of filed (enabled
24049         cheking only).
24050
24051 2010-05-26  Steven Bosscher  <steven@gcc.gnu.org>
24052
24053         * config/avr/avr-c.c: Do not include regs.h.
24054         Include cpplib.h for cpp_define and tree.h for c-common.h.
24055         * config/avr/avr-devices.c (avr_mcu_types): Fix initializer.
24056         * config/avr/t-avr: Fix dependencies for avr-c.o.
24057
24058 2010-05-26  Steven Bosscher  <steven@gcc.gnu.org>
24059
24060         * explow.c (set_stack_check_libfunc): Adjust to accept name as a
24061         string instead of SYMBOL_REF rtx.
24062         * rtl.h (set_stack_check_libfunc): Move prototype from here...
24063         * libfuncs.h: ...to here.  Adjust for explow.c change.
24064
24065 2010-05-26  Joseph Myers  <joseph@codesourcery.com>
24066
24067         * pretty-print.c: Don't include ggc.h.
24068         (identifier_to_locale_alloc, identifier_to_locale_free): Define.
24069         (identifier_to_locale): Use them for allocation.
24070         * pretty-print.h (identifier_to_locale_alloc,
24071         identifier_to_locale_free): Declare.
24072         * toplev.c (alloc_for_identifier_to_locale): New.
24073         (general_init): Set identifier_to_locale_alloc and
24074         identifier_to_locale_free.
24075         * Makefile.in (pretty-print.o): Update dependencies.
24076
24077 2010-05-26  Eric Botcazou  <ebotcazou@adacore.com>
24078
24079         * gimple.c (gimple_types_compatible_p): Return 0 for aggregate and
24080         pointer types if they have different alignment or mode.
24081
24082 2010-05-26  Anatoly Sokolov  <aesok@post.ru>
24083
24084         * config/sparc/sparc.h (FUNCTION_VALUE, FUNCTION_OUTGOING_VALUE,
24085         LIBCALL_VALUE, FUNCTION_VALUE_REGNO_P): Remove macros.
24086         * config/sparc/sparc-protos.h (function_value): Remove declaration.
24087         * config/sparc/sparc.c (sparc_function_value, sparc_libcall_value,
24088         sparc_function_value_regno_p): New functions.
24089         (TARGET_FUNCTION_VALUE, TARGET_LIBCALL_VALUE,
24090         TARGET_FUNCTION_VALUE_REGNO_P): Define.
24091         (function_value): Rename to...
24092         (sparc_function_value_1): ... this. Make static. Change 'incoming_p'
24093         argument to 'outgoing'.
24094         (function_arg_record_value, function_arg_union_value,
24095         function_arg_vector_value): Update comment.
24096
24097 2010-05-26  Eric Botcazou  <ebotcazou@adacore.com>
24098
24099         * dwarf2out.c (struct dw_fde_struct): Reorder flags.
24100         (fde_needed_for_eh_p): New predicate.
24101         (output_call_frame_info): Use it throughout to decide whether FDEs
24102         are needed for EH purpose.
24103         (dwarf2out_begin_prologue): Reorder assignments.
24104
24105 2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>
24106
24107         * tree-if-conv.c (if_convertible_gimple_assign_stmt_p): Do not
24108         special case loop->header.
24109         (is_predicated): New.
24110         (if_convertible_loop_p): Call it.
24111
24112 2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>
24113
24114         * tree-if-conv.c (add_to_dst_predicate_list): Do not pass a statemet
24115         iterator in parameter.  Do not generate code during the analysis.
24116         (tree_if_convert_cond_stmt): Removed.
24117         (tree_if_convert_stmt): Removed.
24118         (predicate_bbs): New.
24119         (if_convertible_loop_p): Call predicate_bbs.
24120         (tree_if_conversion): Simplify the top-level logic as predicate_bbs
24121         now contains all the analysis part.
24122
24123 2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>
24124
24125         * tree-if-conv.c (tree_if_convert_cond_stmt): Do not remove
24126         statements in the analysis part.
24127         (tree_if_convert_stmt): Update comment.
24128         (remove_conditions_and_labels): New.
24129         (combine_blocks): Call remove_conditions_and_labels.
24130         (tree_if_conversion): Update comment.
24131
24132 2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>
24133
24134         * tree-if-conv.c (if_convertible_bb_p): Don't handle BBs with more
24135         than 2 predecessors or more than 2 successors.
24136
24137 2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>
24138
24139         * tree-if-conv.c (if_convertible_loop_p): Avoid if-conversion
24140         of loops in which the data dependence analysis fails.
24141
24142 2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>
24143
24144         * tree-if-conv.c (if_convertible_loop_p): Do not compute/free
24145         CDI_POST_DOMINATORS.
24146         (tree_if_conversion): Same.
24147
24148 2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>
24149
24150         * tree-if-conv.c (tree_if_conversion): Do not return a bool.
24151
24152 2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>
24153
24154         * tree-if-conv.c: Update copyright years.  Fix comments.
24155         Fix indentation.
24156
24157 2010-05-26  Kai Tietz  <kai.tietz@onevision.com>
24158
24159         * builtin-types.def (BT_INT128): New primitive type.
24160         (BT_UINT128): Likewise.
24161         * c-common.c (c_common_r): Add __int128 keyword.
24162         (c_common_type_for_size): Handle __int128.
24163         (c_common_type_for_mode): Likewise.
24164         (c_common_signed_or_unsigned_type): Likewise.
24165         (c_common_nodes_and_builtins): Add builtin type
24166         if target supports 128-bit integer scalar.
24167         * c-common.h (enum rid): Add RID_INT128.
24168         * c-cppbuiltin.c (c_cpp_builtins): Define __SIZEOF_INT128__
24169         if target supports 128-bit integer scalar.
24170         * c-decl.c (declspecs_add_type): Handle new keyword __int128.
24171         (finish_declspecs): Likewise.
24172         * c-parser.c (c_token_starts_typename): Handle RID_INT128.
24173         (c_token_starts_declspecs): Likewise.
24174         (c_parser_declspecs): Likewise.
24175         (c_parser_attributes): Likewise.
24176         (c_parser_objc_selector): Likewise.
24177         * c-pretty-print.c (pp_c_integer_constant): Handle __int128.
24178         * c-tree.h (enum c_typespec_keyword): Add cts_int128.
24179         * gimple.c (gimple_signed_or_unsigned_type): Handle int128 types.
24180         * tree.c (make_or_reuse_type): Likewise.
24181         (make_unsigned_type): Likewise.
24182         (build_common_tree_nodes_2): Likewise.
24183         * tree.h (enum integer_type_kind): Add itk_int128 and
24184         itk_unsigned_int128.
24185         (int128_integer_type_node): New define.
24186         (int128_unsigned_type_node): New define.
24187         * doc/extend.texi: Add documentation about __int128 type.
24188
24189 2010-05-26  Richard Guenther  <rguenther@suse.de>
24190
24191         * tree-ssa-sccvn.c (copy_nary): Adjust.
24192         (copy_phis): Rename to ...
24193         (copy_phi): ... this.  Adjust.
24194         (copy_references): Rename to ...
24195         (copy_reference): ... this.  Adjust.
24196         (process_scc): Use HTAB_FOR_EACH_ELEMENT to insert the
24197         result into the valid table.
24198
24199 2010-05-26  Steven Bosscher  <steven@gcc.gnu.org>
24200
24201         * config/spu/spu-c.c: Do not include function.h, rtl.h, expr.h,
24202         insn-config.h, insn-codes.h, recog.h, and optabs.h.
24203
24204 2010-05-26  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
24205
24206         * ggc.h (ggc_min_expand_heuristic, ggc_min_heapsize_heuristic): Remove.
24207
24208 2010-05-26  Richard Guenther  <rguenther@suse.de>
24209
24210         * opts.c (common_handle_option): Handle OPT_Ofast.
24211
24212 2010-05-26  Joseph Myers  <joseph@codesourcery.com>
24213
24214         * diagnostic.c: Don't include opts.h.
24215         (permissive_error_option): Define.
24216         (diagnostic_initialize): Take n_opts parameter.  Allocate memory
24217         for classify_diagnostic.  Don't use memset for
24218         classify_diagnostic.  Initialize new and recently added fields.
24219         (diagnostic_classify_diagnostic): Use context->n_opts instead of
24220         N_OPTS.
24221         (diagnostic_report_diagnostic): Pass context parameter to
24222         diagnostic_report_warnings_p.  Use option_enabled and option_name
24223         hooks from context.
24224         (emit_diagnostic): Use permissive_error_option.
24225         (permerror): Likewise.
24226         * diagnostic.h: Don't include options.h.
24227         (struct diagnostic_context): Add n_opts, opt_permissive,
24228         inhibit_warnings, warn_system_headers, option_enabled and
24229         option_name fields.  Change classify_diagnostic to a pointer.
24230         * opts-diagnostic.h: New file.
24231         * opts.c: Include opts-diagnostic.h.
24232         (common_handle_option): Set global_dc fields for -Wfatal-errors,
24233         -Wsystem-headers, -fshow-column, -pedantic-errors and -w.
24234         (option_name): New function.
24235         * c-opts.c (c_common_init_options): Set global_dc->opt_permissive.
24236         (c_common_handle_option): Set global_dc->permissive for
24237         -fpermissive.
24238         * c-common.c (c_cpp_error): Save and restore
24239         global_dc->warn_system_headers, not variable warn_system_headers.
24240         * toplev.c: Include opts-diagnostic.h.
24241         (general_init): Update call to diagnostic_initialize.  Set
24242         global_dc->show_column, global_dc->option_enabled and
24243         global_dc->option_name.
24244         (process_options): Don't set global_dc fields here.
24245         * Makefile.in (DIAGNOSTIC_H): Remove options.h.
24246         (diagnostic.o, opts.o, toplev.o): Update dependencies.
24247
24248 2010-04-30  Hariharan Sandanagobalane  <hariharan@picochip.com>
24249
24250         * config/picochip/picochip.md (movsi): Split a movsi from a
24251         const after reload.
24252
24253 2010-05-26  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
24254
24255         * ggc-zone.c: Update copyright year.
24256         (poison_region): Mark memory for Valgrind as undefined before
24257         memset () call and inaccessible afterwards.
24258         (ggc_pch_total_size): Change type of i to int.
24259
24260 2010-05-26  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
24261
24262         * ggc-common.c (ggc_free_overhead): Allow empty slot.
24263
24264 2010-05-26  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
24265
24266         * ggc-common.c: Update copyright year.
24267         (ggc_rlimit_bound): Remove prototype.  Compile only if
24268         !ENABLE_GC_CHECKING && !ENABLE_GC_ALWAYS_COLLECT.
24269         (ggc_min_heapsize_heuristic): Compile only if !ENABLE_GC_CHECKING
24270         && !ENABLE_GC_ALWAYS_COLLECT.  Make static.
24271         (ggc_min_heapsize_heuristic): Likewise.
24272
24273 2010-05-26  Richard Guenther  <rguenther@suse.de>
24274
24275         PR rtl-optimization/44164
24276         * tree-ssa-alias.c (aliasing_component_refs_p): Fix the
24277         no-common access-path disambiguation.
24278         (indirect_ref_may_alias_decl_p): Adjust.
24279         (indirect_refs_may_alias_p): Likewise.
24280         (refs_may_alias_p_1): Likewise.
24281
24282 2010-05-26  Steven Bosscher  <steven@gcc.gnu.org>
24283
24284         * c-typeck.c: Do not include expr.h.
24285
24286 2010-05-26  Steven Bosscher  <steven@gcc.gnu.org>
24287
24288         * rtl.h (decl_default_tls_model): Move prototype from here...
24289         * output.h: ...to here.
24290         * c-decl.c: Do not include rtl.h.
24291         * c-pragma.c: Likewise.
24292         * c-parser.c: Likewise.
24293         * c-gimplify.c: Likewise.  And also not hard-reg-set.
24294         * c-common.c: Do not include rtl.h.  Include tm_p.h and add a
24295         FIXME note for it.  Add a FIXME note for expr.h.
24296         * config/i386/i386-protos.h (ix86_enum_va_list, ix86_fn_abi_va_list,
24297         ix86_canonical_va_list_type): Make visible even if RTX_CODE is not
24298         defined.
24299
24300 2010-05-26  Jakub Jelinek  <jakub@redhat.com>
24301
24302         PR target/44199
24303         * config/rs6000/rs6000.c (rs6000_emit_epilogue): If cfun->calls_alloca
24304         or total_size is larger than red zone size for non-V4 ABI, emit a
24305         stack_tie resp. frame_tie insn before stack pointer restore.
24306         * config/rs6000/rs6000.md (frame_tie): New insn.
24307
24308 2010-05-25  Eric Botcazou  <ebotcazou@adacore.com>
24309
24310         * function.h (struct function): Add can_throw_non_call_exceptions bit.
24311         * lto-streamer-in.c (input_function): Stream it in.
24312         * lto-streamer-out.c (output_function): Stream it out.
24313         * function.c (allocate_struct_function): Set it.
24314         (expand_function_end): Substitute cfun->can_throw_non_call_exceptions
24315         for flag_non_call_exceptions.
24316         * cfgbuild.c (control_flow_insn_p): Likewise.
24317         (make_edges): Likewise.
24318         * cfgexpand.c (expand_stack_alignment): Likewise.
24319         * combine.c (distribute_notes): Likewise.
24320         * cse.c (cse_extended_basic_block): Likewise.
24321         * except.c (insn_could_throw_p): Likewise.
24322         * gcse.c (simple_mem): Likewise.
24323         * ipa-pure-const.c (check_call): Likewise.
24324         (check_stmt ): Likewise.
24325         * lower-subreg.c (lower-subreg.c): Likewise.
24326         * optabs.c (emit_libcall_block): Likewise.
24327         (prepare_cmp_insn): Likewise.
24328         * postreload-gcse.c (eliminate_partially_redundant_loads): Likewise.
24329         * postreload.c (rest_of_handle_postreload): Likewise.
24330         * reload1.c (reload_as_needed): Likewise.
24331         (emit_input_reload_insns): Likewise.
24332         (emit_output_reload_insns): Likewise.
24333         (fixup_abnormal_edges): Likewise.
24334         * sel-sched-ir.c (init_global_and_expr_for_insn): Likewise.
24335         * store-motion.c (find_moveable_store): Likewise.
24336         * tree-eh.c (stmt_could_throw_p): Likewise.
24337         (tree_could_throw_p): Likewise.
24338         * tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Likewise.
24339         * config/arm/arm.c (arm_expand_prologue): Likewise.
24340         (thumb1_expand_prologue): Likewise.
24341         * config/rx/rx.md (cbranchsf4): Likewise.
24342         (cmpsf): Likewise.
24343         * config/s390/s390.c (s390_emit_prologue): Likewise.
24344         * tree-inline.c (initialize_cfun): Copy can_throw_non_call_exceptions.
24345         (inline_forbidden_into_p): New predicate.
24346         (expand_call_inline): Use it to forbid inlining.
24347         (tree_can_inline_p): Likewise.
24348
24349 2010-05-25  Steven Bosscher  <steven@gcc.gnu.org>
24350
24351         * config/i386/i386-c.c: Do not include rtl.h.
24352         * config/i386/t-i386: Update dependencies.
24353
24354 2010-05-25  Steven Bosscher  <steven@gcc.gnu.org>
24355
24356         * attribs.c: Do not include rtl.h.
24357         * Makefile.in: Update dependencies.
24358
24359 2010-05-25  Anatoly Sokolov  <aesok@post.ru>
24360
24361         * double-int.h (double_int_and): New.
24362         * combine.c (try_combine): Clean up, use double_int_* and
24363         immed_double_int_const functions.
24364
24365 2010-05-25  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
24366
24367         * configure.ac (gcc_cv_as_ld_jalr_reloc): Redirect grep stdout,
24368         stderr to /dev/null instead of grep -q.
24369         * configure: Regenerate.
24370
24371 2010-05-25  Steven Bosscher  <steven@gcc.gnu.org>
24372
24373         * Makefile.in (EXCEPT_H): Fix typo.
24374
24375 2010-05-25  Vladimir Makarov  <vmakarov@redhat.com>
24376
24377         * ira-build.c (update_conflict_hard_reg_costs): New.
24378         (ira_build): Call update_conflict_hard_reg_costs.
24379
24380 2010-05-25  Jakub Jelinek  <jakub@redhat.com>
24381
24382         PR debug/41371
24383         * var-tracking.c (find_loc_in_1pdv): Guard asserts with
24384         ENABLE_CHECKING.
24385         (intersect_loc_chains): Walk the s2var's loc_chain together
24386         with s1node chain as long as the locations are equal, don't
24387         call find_loc_in_1pdv in that case.
24388
24389         PR debug/42801
24390         * tree-inline.c (remap_decls): Remap DECL_VALUE_EXPR here...
24391         (copy_bind_expr): ... instead of here.
24392         (copy_tree_body_r): If id->remapping_type_depth clear TREE_BLOCK
24393         if the block hasn't been remapped.
24394         * dwarf2out.c (gen_formal_parameter_die, gen_variable_die): When
24395         emitting concrete instance of abstract VLA, add DW_AT_type attribute.
24396
24397 2010-05-25  Richard Guenther  <rguenther@suse.de>
24398
24399         PR middle-end/44069
24400         * gimple-fold.c (maybe_fold_stmt_addition): Avoid generating
24401         out-of-bounds array accesses.
24402
24403 2010-05-25  Richard Guenther  <rguenther@suse.de>
24404
24405         * lto-wrapper.c (nr, input_names, output_names, makefile): Globalize.
24406         (lto_wrapper_exit): Unlink all LTRANS temporary files on error.
24407         (run_gcc): Re-organize to make cleanup easier.
24408
24409 2010-05-25  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
24410
24411         * config/s390/s390.c (optimization_options): Fix and move the
24412         flag_prefetch_loop_arrays override ...
24413         (override_options): ... here.
24414
24415 2010-05-25  Joseph Myers  <joseph@codesourcery.com>
24416
24417         * diagnostic.c: Don't include plugin.h.
24418         (diagnostic_report_diagnostic): Don't handle plugins specially
24419         here.  Pass context to internal_error callback.
24420         * diagnostic.h (struct diagnostic_context): Add context parameter
24421         to internal_error callback.
24422         * plugin.c (warn_if_plugins, plugins_internal_error_function): New.
24423         * plugin.h (struct diagnostic_context): Declare.
24424         (warn_if_plugins, plugins_internal_error_function): Declare.
24425         * toplev.c (general_init): Set global_dc->internal_error.
24426         * Makefile.in (diagnostic.o): Update dependencies.
24427
24428 2010-05-25  Iain Sandoe  <iains@gcc.gnu.org>
24429
24430         * config/rs6000/darwin64.h: Update DARWIN_ARCH_SPEC.
24431         * config/rs6000/t-darwin64: New.
24432         * config.gcc (powerpc64-*-darwin*): Use darwin.opts, t-darwin64,
24433         build crt2.
24434
24435 2010-05-25  Christian Borntraeger  <borntraeger@de.ibm.com>
24436
24437         PR 44203
24438         * tree-ssa-loop-prefetch.c: Fix logic for step calculation to
24439         match the original (and intended) behaviour before r159557.  This
24440         changeset changed a=a+b*c to a=(a+b)*b which was obviously wrong
24441         in two ways.
24442
24443 2010-05-25  Richard Guenther  <rguenther@suse.de>
24444
24445         * doc/invoke.texi: Document -Ofast.
24446         * target.h (struct gcc_target): Add handle_ofast.
24447         * target-def.h (TARGET_HANDLE_OFAST): Add.
24448         (TARGET_INITIALIZER): Adjust.
24449         * opts.c (decode_options): Handle -Ofast.  Enable -ffast-math with it.
24450         * common.opt (Ofast): Add.
24451
24452 2010-05-25  Paolo Bonzini  <bonzini@gnu.org>
24453
24454         * doc/tm.texi (STORE_FLAG_VALUE): Do not refer to sCC patterns.
24455         * doc/md.texi (cstoreXX4): Update for cond-optab changes.
24456
24457 2010-05-25  Paolo Bonzini  <bonzini@gnu.org>
24458
24459         PR target/43610
24460         * optabs.c (prepare_float_lib_cmp): Allow reversing the comparison
24461         even if !FLOAT_LIB_COMPARE_RETURNS_BOOL.  Always compute true_rtx and
24462         false_rtx.  Use false_rtx to compute the correct *ptest for reversed
24463         comparisons for which !FLOAT_LIB_COMPARE_RETURNS_BOOL.
24464
24465 2010-05-25  Jakub Jelinek  <jakub@redhat.com>
24466
24467         * dwarf2out.c (loc_descr_plus_const): When offset is negative, use
24468         DW_OP_minus with negated offset instead of DW_OP_plus.
24469         (loc_list_from_tree): Don't test whether second operand is INTEGER_CST.
24470
24471 2010-05-25  Wei Guozhi  <carrot@google.com>
24472
24473         * config/arm/thumb2.md (thumb2_tlobits_cbranch): Add constraint to
24474         tst instruction and a new alternative.
24475         * config/arm/constraints.md (Pu): New constraint.
24476
24477 2010-05-24  Sebastian Pop  <sebastian.pop@amd.com>
24478
24479         * function.c (assign_stack_local_1): Initialize variable
24480         to avoid warning when bootstrapping at -O3.
24481
24482 2010-05-24  Steven Bosscher  <steven@gcc.gnu.org>
24483
24484         * configure.ac (all_lang_makefiles): Remove everything related to it.
24485         * configure: Regenerate.
24486         * Makefile.in: Fix reference to ada Make-lang.in.
24487         Remove support for LANG_MAKEFILES.
24488
24489 2010-05-24  Daniel Jacobowitz  <dan@codesourcery.com>
24490             Sandra Loosemore  <sandra@codesourcery.com>
24491
24492         * config/arm/neon-testgen.ml: Use dg-add-options arm_neon.
24493         * doc/sourcebuild.texi (Effective-Target Keywords): Update arm_neon_ok
24494         description.  Add arm_neon_fp16_ok.
24495         (Add Options): Add arm_neon and arm_neon_fp16.
24496
24497 2010-05-24  Joseph Myers  <joseph@codesourcery.com>
24498
24499         * diagnostic.c: Don't include flags.h.
24500         (pedantic_warning_kind, permissive_error_kind): Take diagnostic
24501         context parameters.  Check flags in the context passed as a parameter.
24502         (diagnostic_build_prefix): Add context parameter.  Check
24503         show_column flag in context.
24504         (diagnostic_action_after_output): Check fatal_errors flag in context.
24505         (diagnostic_report_current_module): Check show_column flag in context.
24506         (default_diagnostic_starter): Update call to
24507         diagnostic_build_prefix.
24508         (diagnostic_report_diagnostic): Pass context to pedantic_warning_kind.
24509         (emit_diagnostic): Pass context to permissive_error_kind.
24510         (permerror): Pass context to permissive_error_kind.
24511         * diagnostic.h (struct diagnostic_context): Add show_column,
24512         pedantic_errors, permissive and fatal_errors fields.
24513         (diagnostic_build_prefix): Update prototype.
24514         * langhooks.c
24515         * toplev.c (process_options): Set flags in global_dc from
24516         flag_show_column, flag_pedantic_errors, flag_permissive,
24517         flag_fatal_errors.
24518         * tree-diagnostic.c (default_tree_diagnostic_starter): Update call
24519         to diagnostic_build_prefix.
24520         * Makefile.in (diagnostic.o): Update dependencies.
24521
24522 2010-05-24  H.J. Lu  <hongjiu.lu@intel.com>
24523
24524         * config/i386/ia32intrin.h (__crc32q): Define only if
24525         __SSE4_2__ is defined.
24526
24527 2010-05-24  Iain Sandoe  <iains@gcc.gnu.org>
24528
24529         PR target/44132
24530         PR middle-end/43602
24531         * varasm.c (get_emutls_init_templ_addr): Copy DECL_PRESERVE_P,
24532         DECL_VISIBILITY_SPECIFIED.
24533         (emutls_decl): Set DECL_PRESERVE_P and copy
24534         DECL_VISIBILITY_SPECIFIED, DECL_RESTRICTED_P.
24535         (emutls_finalize_control_var): New callback.
24536         (emutls_finish): Finalize emutls control variables.
24537         * toplev.c (compile_file): Move the call to emutls_finish ()
24538         before varpool_assemble_pending_decls ().
24539
24540 2010-05-24  Daniel Gutson  <dgutson@codesourcery.com>
24541
24542         * config/arm/lib1funcs.asm (__ARM_ARCH__): __ARM_ARCH_7EM__
24543         added to the preprocessor condition.
24544
24545 2010-05-24  Paul Brook  <paul@codesourcery.com>
24546
24547         * gengtype-lex.l: Add HARD_REG_SET.
24548         * expr.c (expand_expr_real_1): Record writes to hard registers.
24549         * function.c (rtl_data): Add asm_clobbers.
24550         * ira.c (compute_regs_asm_clobbered): Use crtl->asm_clobbers.
24551         (ira_setup_eliminable_regset): Remove regs_asm_clobbered.
24552         Use crtl->asm_clobbers.
24553
24554 2010-05-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24555
24556         * doc/makefile.texi (Makefile): Mention stages 'profile'
24557         and 'feedback' for profiledbootstrap.
24558
24559 2010-05-23  H.J. Lu  <hongjiu.lu@intel.com>
24560
24561         PR target/44245
24562         * config/i386/i386.c (def_builtin): Properly check
24563         OPTION_MASK_ISA_64BIT.
24564
24565 2010-05-23  Joseph Myers  <joseph@codesourcery.com>
24566
24567         * c-decl.c (diagnose_mismatched_decls): Give error for duplicate
24568         typedefs with different but compatible types.  Allow duplicate
24569         typedefs with the same type except for pedantic non-C1X, but give
24570         warning for variably modified types.
24571         * c-typeck.c (tagged_types_tu_compatible_p,
24572         function_types_compatible_p, type_lists_compatible_p,
24573         comptypes_internal): Add parameter different_types_p; set
24574         *different_types_p for different but compatible types.  All
24575         callers changed.
24576         (comptypes_check_different_types): New.
24577         * c-tree.h (comptypes_check_different_types): Declare.
24578
24579 2010-05-23  Steven Bosscher  <steven@gcc.gnu.org>
24580
24581         * regs.h: Do not include obstack.h, basic-block.h.  Include machmode.h.
24582         * jump.c: Include basic-block.h.
24583         * profile.c: Likewise.
24584         * tree-profile.c: Likewise.
24585         * coverage.c: Likewise.
24586         * basic-block.h (optimize_function_for_size_p): Move to function.h.
24587         (optimize_function_for_speed_p): Likewise.
24588         * function.h (optimize_function_for_size_p,
24589         optimize_function_for_speed_p): Moved here from basic-block.h.
24590         * Makefile.in: Update dependencies.
24591
24592 2010-05-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24593
24594         * lto-wrapper.c (run_gcc): Unset MAKEFLAGS and MFLAGS
24595         before calling make; allow override through $MAKE.
24596         * doc/invoke.texi (Optimize Options): Document override.
24597
24598 2010-05-23  Anatoly Sokolov  <aesok@post.ru>
24599
24600         * config/rs6000/rs6000.c (rs6000_mode_dependent_address_p): New.
24601         (TARGET_MODE_DEPENDENT_ADDRESS_P): Define.
24602         (rs6000_mode_dependent_address_ptr): Make static.
24603         * config/rs6000/rs6000.h (GO_IF_MODE_DEPENDENT_ADDRESS): Remove.
24604         * config/rs6000/rs6000-protos.h (rs6000_mode_dependent_address_ptr):
24605         Remove.
24606
24607 2010-05-23  Maarten Lankhorst  <mlankhorst@codeweavers.com>
24608
24609         PR target/43869
24610         * config/i386/i386.c: Make sure that the correct regparm is passed.
24611
24612 2010-05-23  Steven Bosscher  <steven@gcc.gnu.org>
24613
24614         * sbitmap.h (sbitmap_ptr, const_sbitmap_ptr): Move from here...
24615         * sbitmap.c: ...to here to internalize sbitmap element access.
24616         Do not include tm.h, rtl.h, flags.h, hard-reg-set.h, and obstack.h.
24617         Explain why basic-block.h is included.
24618         * function.h: Include tm.h for CUMULATIVE_ARGS.
24619         * Makefile.in: Update dependencies.
24620
24621 2010-05-22  Steven Bosscher  <steven@gcc.gnu.org>
24622
24623         * coretypes.h (struct simple_bitmap_def, sbitmap, const_sbitmap):
24624         New core types.
24625         * sbitmap.h (struct sbitmap_def): Do not typedef here.
24626         * sbitmap.c: Include sbitmap.h.
24627         * basic-block.h: Do not include bitmap.h, sbitmap.h, partition.h,
24628         hard-reg-set.h.  Split everything related to regsets out from here...
24629         * regset.h: ...to here.  New file.
24630         * df.h: Include regset.h and sbitmap.h.
24631         * tree-flow.h: Likewise.
24632         * cfgloop.h: Likewise.
24633         * except.h: Do not include sbitmap.h.  Include hashtab.h.
24634         * cgraph.h: Include vec.h and function.h.
24635         * reload.h (struct insn_chain): Change types of live_throughout
24636         and dead_or_set from regset_head to bitmap_head.
24637         (compute_use_by_pseudos): Be defined also if regset.h is not included.
24638         * ira-int.h (struct ira_spilled_reg_stack_slot): Change type of
24639         spilled_regs from regset_head to bitmap_head to avoid dependency
24640         in regset.h.
24641         * sel-sched-ir.h: Include regset.h.
24642         * reload.c: Include df.h before reload.h.
24643         * caller-save.c: Likewise.
24644         * reload1.c: Likewise.
24645         * ira.c: Likewise.
24646         (mark_elimination): Update type of r to bitmap, consistent with
24647         DF_LR_IN.
24648         * dominance.c: Include bitmap.h.
24649         * modulo-sched.c: Include df.h.
24650         * cfganal.c: Include bitmap.h and sbitmap.h.
24651         * cfgbuild.c: Include sbitmap.h.
24652         * lcm.c: Include sbitmap.h.
24653         * gcse.c (alloc_gcse_mem): Allocate regset with ALLOC_REG_SET.
24654         * domwalk.c: Include sbitmap.h, exclude ggc.h.
24655         * cfgexpand.c: Inlcude bitmap.h and sbitmap.h.
24656         * cselib.c: Include bitmap.h.
24657         * tree-optimize.c: Include regset.h.
24658         * stmt.c: Include bitmap.h.
24659         * Makefile.in: Update dependencies.
24660
24661 2010-05-22  Jan Hubicka  <jh@suse.cz>
24662
24663         * cgraph.h (struct varpool_node): Add same_comdat_group.
24664         * lto-cgrpah.c (lto_output_varpool_node): Output same_comdat_group
24665         pointer.
24666         (output_varpool): Update call of lto_output_varpool_node.
24667         (input_varpool): Read same_comdat_group pointer.
24668         (input_varpool_1): Fixup same_comdat_group pointer.
24669         * ipa.c (cgraph_remove_unreachable_nodes): WHen one of same comdat
24670         group is needed, all are.
24671         * varpool.c (varpool_remove_node): Remove node from same comdat group
24672         linklist too.
24673         (varpool_analyze_pending_decls): Walk same comdat groups.
24674
24675 2010-05-22  Steven Bosscher  <steven@gcc.gnu.org>
24676
24677         * rtl.h (union rtunion_def): Remove rt_bit member.
24678         (XBITMAP, X0BITMAP, XCBITMAP): Remove.
24679         * print-rtl (print_rtx): Do not print the member.
24680         * gengtype.c (adjust_field_rtx_def): Do not handle it.
24681         * gengenrtl.c (type_from_format): Likewise.
24682         (accessor_from_format): Likewise.
24683
24684 2010-05-22  Joseph Myers  <joseph@codesourcery.com>
24685
24686         * dbgcnt.c: Include toplev.h instead of errors.h.
24687         * ira-emit.c: Don't include errors.h.
24688         * ira.c: Include toplev.h instead of errors.h.
24689         * lto-compress.c: Include toplev.h instead of errors.h.
24690         * Makefile.in (lto-compress.o, lto-streamer-out.o, ira-emit.o,
24691         ira.o, dbgcnt.o): Update dependencies.
24692
24693 2010-05-22  Richard Guenther  <rguenther@suse.de>
24694
24695         * gimple.c (gimple_types_compatible_p): Check type qualifications
24696         before merging pointer to complete and pointer to incomplete type.
24697         * lto-symtab.c (lto_symtab_resolve_symbols): For commons make sure
24698         we use our own resolution algorithm.  The gold linker plugin
24699         doesn't do the job we want it to do here.
24700
24701 2010-05-22  Anatoly Sokolov  <aesok@post.ru>
24702
24703         * config/sparc/sparc.h (GO_IF_MODE_DEPENDENT_ADDRESS): Remove.
24704         * config/sparc/sparc.c (TARGET_MODE_DEPENDENT_ADDRESS_P): Define.
24705         (sparc_mode_dependent_address_p): New function.
24706
24707 2010-05-21  Steven Bosscher  <steven@gcc.gnu.org>
24708
24709         * Makefile.in: Fix c-pch.o and ggc-common.o dependencies on timevars.
24710
24711         * timevar.c: Do not include any core headers.
24712         (timevar_print): De-i18n-ize.
24713         (print_time): Likewise.
24714         * timevar.h (timevar_push, timevar_pop): Make inline functions.
24715
24716 2010-05-21  Joseph Myers  <joseph@codesourcery.com>
24717
24718         * diagnostic.c: Don't include tm.h, tree.h, tm_p.h, langhooks.h or
24719         langhooks-def.h.
24720         (diagnostic_initialize): Initialize x_data not last_function.
24721         (diagnostic_report_current_function): Move to tree-diagnostic.c.
24722         (default_diagnostic_starter): Call
24723         diagnostic_report_current_module not
24724         diagnostic_report_current_function.
24725         (diagnostic_report_diagnostic): Initialize x_data not
24726         abstract_origin.
24727         (verbatim): Likewise.
24728         * diagnostic.h (struct diagnostic_info): Change abstract_origin to
24729         x_data.
24730         (struct diagnostic_context): Change last_function to x_data.
24731         (diagnostic_auxiliary_data): Replace with
24732         diagnostic_context_auxiliary_data and
24733         diagnostic_info_auxiliary_data.
24734         (diagnostic_last_function_changed, diagnostic_set_last_function,
24735         diagnostic_report_current_function): Move to tree-diagnostic.h.
24736         (print_declaration, dump_generic_node, print_generic_stmt,
24737         print_generic_stmt_indented, print_generic_expr,
24738         print_generic_decl, debug_c_tree, dump_omp_clauses,
24739         print_call_name, debug_generic_expr, debug_generic_stmt,
24740         debug_tree_chain, default_tree_printer): Move to
24741         tree-pretty-print.h.
24742         (debug_gimple_stmt, debug_gimple_seq, print_gimple_seq,
24743         print_gimple_stmt, print_gimple_expr, dump_gimple_stmt): Move to
24744         gimple-pretty-print.h.
24745         * pretty-print.c: Don't include tree.h
24746         (pp_base_format): Don't handle %K here.
24747         (pp_base_tree_identifier): Move to tree-pretty-print.c.
24748         * pretty-print.h (text_info): Change abstract_origin to x_data.
24749         (pp_tree_identifier, pp_unsupported_tree,
24750         pp_base_tree_identifier): Move to tree-pretty-print.h.
24751         * gimple-pretty-print.h, tree-diagnostic.c, tree-diagnostic.h,
24752         tree-pretty-print.h: New files.
24753         * tree-pretty-print.c: Include tree-pretty-print.h.
24754         (percent_K_format): New.  Moved from pretty-print.c.
24755         (pp_base_tree_identifier): Move from pretty-print.c.
24756         * c-objc-common.c: Include tree-pretty-print.h.
24757         (c_tree_printer): Handle %K here.
24758         * langhooks.c: Include tree-diagnostic.h.
24759         (lhd_print_error_function): Use diagnostic_abstract_origin macro.
24760         * toplev.c: Include tree-diagnostic.h and tree-pretty-print.h.
24761         (default_tree_printer): Handle %K using percent_K_format.
24762         (general_init): Use default_tree_diagnostic_starter.
24763         * tree.c: Include tree-diagnostic.h and tree-pretty-print.h.
24764         (free_lang_data): Use default_tree_diagnostic_starter.
24765         * c-pretty-print.c: Include tree-pretty-print.h.
24766         * cfgexpand.c: Include tree-pretty-print.h and gimple-pretty-print.h.
24767         * cgraphunit.c: Include tree-pretty-print.h and gimple-pretty-print.h.
24768         * dwarf2out.c: Include tree-pretty-print.h.
24769         * except.c: Include tree-pretty-print.h.
24770         * gimple-pretty-print.c: Include tree-pretty-print.h and
24771         gimple-pretty-print.h.
24772         * gimplify.c: Include tree-pretty-print.h.
24773         * graphite-poly.c: Include tree-pretty-print.h and
24774         gimple-pretty-print.h.
24775         * ipa-cp.c: Include tree-pretty-print.h.
24776         * ipa-inline.c: Include gimple-pretty-print.h.
24777         * ipa-prop.c: Include tree-pretty-print.h and gimple-pretty-print.h.
24778         * ipa-pure-const.c: Include gimple-pretty-print.h.
24779         * ipa-struct-reorg.c: Include tree-pretty-print.h and
24780         gimple-pretty-print.h.
24781         * ipa-type-escape.c: Include tree-pretty-print.h.
24782         * print-rtl.c: Include tree-pretty-print.h.
24783         * print-tree.c: Include gimple-pretty-print.h.
24784         * sese.c: Include tree-pretty-print.h.
24785         * tree-affine.c: Include tree-pretty-print.h.
24786         * tree-browser.c: Include tree-pretty-print.h.
24787         * tree-call-cdce.c: Include gimple-pretty-print.h.
24788         * tree-cfg.c: Include tree-pretty-print.h and gimple-pretty-print.h.
24789         * tree-chrec.c: Include tree-pretty-print.h.
24790         * tree-data-ref.c: Include tree-pretty-print.h and
24791         gimple-pretty-print.h.
24792         * tree-dfa.c: Include tree-pretty-print.h.
24793         * tree-if-conv.c: Include tree-pretty-print.h and
24794         gimple-pretty-print.h.
24795         * tree-inline.c: Include tree-pretty-print.h.
24796         * tree-into-ssa.c: Include tree-pretty-print.h and
24797         gimple-pretty-print.h.
24798         * tree-nrv.c: Include tree-pretty-print.h.
24799         * tree-object-size.c: Include tree-pretty-print.h and
24800         gimple-pretty-print.h.
24801         * tree-outof-ssa.c: Include tree-pretty-print.h and
24802         gimple-pretty-print.h.
24803         * tree-parloops.c: Include tree-pretty-print.h and
24804         gimple-pretty-print.h.
24805         * tree-predcom.c: Include tree-pretty-print.h and
24806         gimple-pretty-print.h.
24807         * tree-scalar-evolution.c: Include tree-pretty-print.h and
24808         gimple-pretty-print.h.
24809         * tree-sra.c: Include tree-pretty-print.h.
24810         * tree-ssa-address.c: Include tree-pretty-print.h.
24811         * tree-ssa-alias.c: Include tree-pretty-print.h.
24812         * tree-ssa-ccp.c: Include tree-pretty-print.h and
24813         gimple-pretty-print.h.
24814         * tree-ssa-coalesce.c: Include tree-pretty-print.h.
24815         * tree-ssa-copy.c: Include tree-pretty-print.h and
24816         gimple-pretty-print.h.
24817         * tree-ssa-copyrename.c: Include tree-pretty-print.h.
24818         * tree-ssa-dce.c: Include tree-pretty-print.h and
24819         gimple-pretty-print.h.
24820         * tree-ssa-dom.c: Include tree-pretty-print.h and
24821         gimple-pretty-print.h.
24822         * tree-ssa-dse.c: Include gimple-pretty-print.h.
24823         * tree-ssa-forwprop.c: Include tree-pretty-print.h.
24824         * tree-ssa-ifcombine.c: Include tree-pretty-print.h.
24825         * tree-ssa-live.c: Include tree-pretty-print.h and
24826         gimple-pretty-print.h.
24827         * tree-ssa-loop-im.c: Include tree-pretty-print.h and
24828         gimple-pretty-print.h.
24829         * tree-ssa-loop-ivcanon.c: Include tree-pretty-print.h and
24830         gimple-pretty-print.h.
24831         * tree-ssa-loop-ivopts.c: Include tree-pretty-print.h and
24832         gimple-pretty-print.h.
24833         * tree-ssa-loop-niter.c: Include tree-pretty-print.h and
24834         gimple-pretty-print.h.
24835         * tree-ssa-loop-prefetch.c: Include tree-pretty-print.h.
24836         * tree-ssa-math-opts.c: Include gimple-pretty-print.h.
24837         * tree-ssa-operands.c: Include tree-pretty-print.h and
24838         gimple-pretty-print.h.
24839         * tree-ssa-phiprop.c: Include tree-pretty-print.h and
24840         gimple-pretty-print.h.
24841         * tree-ssa-pre.c: Include tree-pretty-print.h and
24842         gimple-pretty-print.h.
24843         * tree-ssa-propagate.c: Include gimple-pretty-print.h.
24844         * tree-ssa-reassoc.c: Include tree-pretty-print.h and
24845         gimple-pretty-print.h.
24846         * tree-ssa-sccvn.c: Include tree-pretty-print.h and
24847         gimple-pretty-print.h.
24848         * tree-ssa-sink.c: Include gimple-pretty-print.h.
24849         * tree-ssa-ter.c: Include tree-pretty-print.h and
24850         gimple-pretty-print.h.
24851         * tree-ssa-uninit.c: Include gimple-pretty-print.h.
24852         * tree-ssa.c: Include tree-pretty-print.h and
24853         gimple-pretty-print.h.
24854         * tree-stdarg.c: Include gimple-pretty-print.h.
24855         * tree-switch-conversion.c: Include gimple-pretty-print.h.
24856         * tree-tailcall.c: Include tree-pretty-print.h and
24857         gimple-pretty-print.h.
24858         * tree-vect-data-refs.c: Include tree-pretty-print.h and
24859         gimple-pretty-print.h.
24860         * tree-vect-loop-manip.c: Include tree-pretty-print.h and
24861         gimple-pretty-print.h.
24862         * tree-vect-loop.c: Include tree-pretty-print.h and
24863         gimple-pretty-print.h.
24864         * tree-vect-patterns.c: Include gimple-pretty-print.h.
24865         * tree-vect-slp.c: Include tree-pretty-print.h and
24866         gimple-pretty-print.h.
24867         * tree-vect-stmts.c: Include tree-pretty-print.h and
24868         gimple-pretty-print.h.
24869         * tree-vectorizer.c: Include tree-pretty-print.h.
24870         * tree-vrp.c: Include tree-pretty-print.h and
24871         gimple-pretty-print.h.
24872         * value-prof.c: Include tree-pretty-print.h and
24873         gimple-pretty-print.h.
24874         * var-tracking.c: Include tree-pretty-print.h.
24875         * Makefile.in (OBJS-common): Add tree-diagnostic.o.
24876         (tree-diagnostic.o): New dependencies.
24877         (c-objc-common.o, c-pretty-print.o, langhooks.o, tree.o,
24878         tree-inline.o, print-tree.o, stor-layout.o, tree-ssa-uninit.o,
24879         tree-ssa.o, tree-into-ssa.o, tree-ssa-ter.o, tree-ssa-coalesce.o,
24880         tree-outof-ssa.o, tree-ssa-forwprop.o, tree-ssa-phiprop.o,
24881         tree-ssa-ifcombine.o, tree-nrv.o, tree-ssa-copy.o,
24882         tree-ssa-propagate.o, tree-ssa-dom.o, tree-ssa-uncprop.o,
24883         tree-ssa-live.o, tree-ssa-copyrename.o, tree-ssa-pre.o,
24884         tree-ssa-sccvn.o, tree-vrp.o, tree-cfg.o, tree-tailcall.o,
24885         tree-ssa-sink.o, tree-if-conv.o, tree-dfa.o, tree-ssa-operands.o,
24886         tree-ssa-address.o, tree-ssa-loop-niter.o,
24887         tree-ssa-loop-ivcanon.o, tree-ssa-loop-prefetch.o, tree-predcom.o,
24888         tree-ssa-loop-ivopts.o, tree-affine.o, tree-ssa-loop-im.o,
24889         tree-ssa-math-opts.o, tree-ssa-alias.o, tree-ssa-reassoc.o,
24890         gimplify.o, tree-browser.o, tree-chrec.o, tree-scalar-evolution.o,
24891         tree-data-ref.o, sese.o, graphite-poly.o, tree-vect-loop.o,
24892         tree-vect-loop-manip.o, tree-vect-patterns.o, tree-vect-slp.o,
24893         tree-vect-stmts.o, tree-vect-data-refs.o, tree-vectorizer.o,
24894         tree-parloops.o, tree-stdarg.o, tree-object-size.o,
24895         gimple-pretty-print.o, tree-pretty-print.o, diagnostic.o,
24896         toplev.o, print-rtl.o, except.o, dwarf2out.o, cgraphunit.o,
24897         ipa-prop.o, ipa-cp.o, ipa-inline.o, ipa-pure-const.o,
24898         ipa-type-escape.o, ipa-struct-reorg.o, tree-ssa-dce.o,
24899         tree-call-cdce.o, tree-ssa-ccp.o, tree-sra.o,
24900         tree-switch-conversion.o, var-tracking.o, value-prof.o,
24901         cfgexpand.o, pretty-print.o): Update dependencies.
24902
24903 2010-05-22  Andreas Tobler  <andreast@fgznet.ch>
24904
24905         * tree-ssa-structalias.c: Remove tm_p.h from include.
24906
24907 2010-05-21  Jeff Law  <law@redhat.com>
24908
24909         * ira-costs.c (ira_tune_allocno_costs_and_cover_classes): Fix typo.
24910
24911 2010-05-21  Jason Merrill  <jason@redhat.com>
24912
24913         * tree-eh.c (cleanup_is_dead_in): New.
24914         (lower_try_finally): Don't generate a dead cleanup region.
24915         (lower_cleanup): Likewise.
24916
24917 2010-05-21  Jakub Jelinek  <jakub@redhat.com>
24918
24919         PR debug/44223
24920         * haifa-sched.c (schedule_insn): When freeing INSN_REG_USE_LIST,
24921         unchain each use from the cyclic next_regno_use chain first.
24922
24923 2010-05-21  Steven Bosscher  <steven@gcc.gnu.org>
24924
24925         * real: Do not include gmp.h, mpfr.h, and mpc.h.
24926         (REAL_VALUE_NEGATE, REAL_VALUE_ABS, real_arithmetic2): Remove.
24927         (real_value_negate, real_value_abs): New prototypes.
24928         (do_mpc_arg2, real_from_mpfr, mpfr_from_real): Move from here...
24929         * realmpfr.h (do_mpc_arg2, real_from_mpfr, mpfr_from_real): ...to here,
24930         new include file for interface between MPFR and REAL_VALUE_TYPE.
24931         * real.c: Include realmpfr.h.
24932         (real_arithmetic2): Remove legacy function.
24933         (real_value_negate): New.
24934         (real_value_abs): New.
24935         (mfpr_from_real, real_from_mpfr): Move from here...
24936         * realmpfr.c (mpfr_from_real, real_from_mpfr): ...to here, new file.
24937         * builtins.c: Include realmpfr.h.
24938         * fold-const.c: Include realmpfr.h.
24939         (fold_comparison): Use real_value_negate instead of REAL_VALUE_NEGATE.
24940         (fold_negate_const): Likewise.
24941         (fold_abs_const): Use real_value_abs instead of REAL_VALUE_ABS.
24942         * toplev.c: Include realmpfr.h.
24943         * simplify-rtx.c (simplify_const_unary_operation): Use real_value_abs
24944         and real_value_negate.
24945         * fixed-value.c (check_real_for_fixed_mode): Likewise.
24946         * config/arm/arm.c (neg_const_double_rtx_ok_for_fpa): Likewise.
24947         (vfp3_const_double_index): Likewise.
24948         (arm_print_operand): Likewise.
24949         * Makefile.in: Update dependencies.
24950
24951 2010-05-21  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
24952
24953         * config/s390/s390.c (override_options): Increase the default
24954         of max-completely-peel-times.
24955
24956 2010-05-21  Julian Brown  <julian@codesourcery.com>
24957             Mark Mitchell  <mark@codesourcery.com>
24958
24959         * config/arm/arm.c (arm_function_ok_for_sibcall): Only forbid
24960         sibling calls for Thumb-1.
24961         * config/arm/arm.h (USE_RETURN_INSN): Enable for Thumb-2.
24962         * config/arm/arm.md (*call_symbol, *call_value_symbol): Use for
24963         Thumb-2.
24964         (*call_insn, *call_value_insn): Don't use for Thumb-2.
24965         (sibcall, sibcall_value, *sibcall_insn, *sibcall_value_insn): Use
24966         for Thumb-2.
24967         (return): New expander.
24968         (*arm_return): New name for ARM return insn.
24969         * config/arm/thumb2.md (*thumb2_return): New insn pattern.
24970
24971 2010-05-19  Joel Sherrill  <joel.sherrill@oarcorp.com>
24972
24973         * config.gcc (sparc64-*-rtems*): New target.
24974
24975 2010-05-21  Nathan Froyd  <froydnj@codesourcery.com>
24976
24977         * tree.c (build_function_decl_skip_args): Fix grammar.
24978         (build_function_type_list_1): Fix typos, adjust formatting.
24979
24980 2010-05-21  Steven Bosscher  <steven@gcc.gnu.org>
24981
24982         * tree.h: Include real.h and fixed-value.h as basic datatypes.
24983         * dfp.c, convert.c, reload1.c, reginfo.c, tree-flow.h,
24984         tree-ssa-threadedge.c, tree-ssanames.c, tree-loop-linear.c,
24985         tree-into-ssa.c, tree-vect-generic.c, tree-ssa-structalias.c,
24986         tree-ssa-loop-im.c, tree-dump.c, tree-complex.c, tree-ssa-uninit.c,
24987         genrecog.c, tree-ssa-threadupdate.c, tree-ssa-loop-niter.c,
24988         tree-pretty-print.c, tree-loop-distribution.c,
24989         tree-ssa-loop-unswitch.c, c-lex.c, optabs.c, postreload-gcse.c,
24990         tree-ssa-loop-manip.c, postreload.c, tree-ssa-loop-ch.c,
24991         tree-tailcall.c, tree.c, reload.c, tree-scalar-evolution.c, rtlanal.c,
24992         tree-phinodes.c, builtins.c, final.c, genoutput.c, fold-const.c,
24993         tree-ssa-dse.c, genautomata.c, tree-ssa-uncprop.c, toplev.c,
24994         tree-chrec.c, genemit.c, c-cppbuiltin.c, tree-ssa-sccvn.c,
24995         tree-ssa-ccp.c, tree-ssa-loop-ivopts.c, mode-switching.c,
24996         tree-call-cdce.c, cse.c, genpeep.c, tree-ssa-math-opts.c,
24997         tree-ssa-dom.c, tree-nrv.c, tree-ssa-propagate.c, tree-ssa-alias.c,
24998         tree-ssa-sink.c, jump.c, ifcvt.c, dwarf2out.c, expr.c, genattrtab.c,
24999         genconditions.c, tree-ssa-loop-ivcanon.c, tree-ssa-loop.c,
25000         tree-parloops.c, recog.c, tree-ssa-address.c, lcm.c, tree-eh.c,
25001         gimple-pretty-print.c, c-pretty-print.c, print-rtl.c, gcse.c,
25002         tree-if-conv.c, tree-data-ref.c, tree-affine.c, gimplify.c,
25003         tree-ssa-phiopt.c, implicit-zee.c, expmed.c, tree-dfa.c, emit-rtl.c,
25004         store-motion.c, cselib.c, tree-cfgcleanup.c, simplify-rtx.c,
25005         tree-ssa-pre.c, genpreds.c, tree-mudflap.c, print-tree.c,
25006         tree-ssa-copy.c, tree-ssa-forwprop.c, tree-ssa-dce.c, varasm.c,
25007         tree-nested.c, tree-ssa.c, tree-ssa-loop-prefetch.c, rtl.c,
25008         tree-inline.c, integrate.c, tree-optimize.c, tree-ssa-phiprop.c,
25009         fixed-value.c, combine.c, tree-profile.c, c-common.c, sched-vis.c,
25010         tree-cfg.c, passes.c, tree-ssa-reassoc.c, config/alpha/alpha.c,
25011         config/frv/frv.c, config/s390/s390.c, config/m32c/m32c.c,
25012         config/spu/spu.c, config/sparc/sparc.c, config/mep/mep.c,
25013         config/m32r/m32r.c, config/rx/rx.c, config/i386/i386.c,
25014         config/sh/sh.c, config/pdp11/pdp11.c, config/avr/avr.c,
25015         config/crx/crx.c, config/xtensa/xtensa.c, config/stormy16/stormy16.c,
25016         config/fr30/fr30.c, config/lm32/lm32.c, config/moxie/moxie.c,
25017         config/m68hc11/m68hc11.c, config/cris/cris.c, config/iq2000/iq2000.c,
25018         config/mn10300/mn10300.c, config/ia64/ia64.c, config/m68k/m68k.c,
25019         config/rs6000/rs6000.c, config/picochip/picochip.c, config/darwin.c,
25020         config/arc/arc.c, config/mcore/mcore.c, config/score/score3.c,
25021         config/score/score7.c, config/score/score.c, config/arm/arm.c,
25022         config/pa/pa.c, config/mips/mips.c, config/vax/vax.c,
25023         config/h8300/h8300.c, config/v850/v850.c, config/mmix/mmix.c,
25024         config/bfin/bfin.c: Clean up redundant includes.
25025         * Makefile.in: Update accordingly.
25026
25027 2010-05-21  Nathan Froyd  <froydnj@codesourcery.com>
25028
25029         PR middle-end/44204
25030         * builtins.c (fold_call_stmt): Pass &error_mark_node if the call
25031         statement has no arguments.
25032
25033 2010-05-21  Kai Tietz  <kai.tietz@onevision.com>
25034
25035         PR/44139
25036         * varasm.c (emutls_decl): Merge attributes to new decl.
25037
25038 2010-05-21  Eric Botcazou  <ebotcazou@adacore.com>
25039
25040         PR middle-end/44101
25041         * gimplify.c (gimplify_init_constructor): Build a VIEW_CONVERT_EXPR
25042         around the uniquized constructor if its type requires a conversion.
25043
25044 2010-05-21  Jakub Jelinek  <jakub@redhat.com>
25045
25046         PR debug/44205
25047         * tree-cfgcleanup.c (tree_forwarder_block_p): Return false if
25048         at -O0 goto_locus of any of the incoming edges differs from
25049         goto_locus of outgoing edge, or gimple_location of any of the
25050         labels differs.
25051
25052 2009-09-14  Vladimir Makarov  <vmakarov@redhat.com>
25053
25054         * ira.c (ira_non_ordered_class_hard_regs): Define.
25055         (setup_class_hard_regs): Initialize ira_non_ordered_class_hard_regs.
25056         * ira-int.h (ira_non_ordered_class_hard_regs): Declare.
25057         * ira-costs.c (ira_tune_allocno_costs_and_cover_classes): Increase
25058         cost of unaligned hard regs when allocating multi-reg pseudos.
25059
25060 2010-05-20  Richard Sandiford  <rdsandiford@googlemail.com>
25061
25062         * config.gcc (mips*-sde-elf*): Don't use sdemtk.opt.
25063         * config/mips/mips.h (TARGET_CPU_CPP_BUILTINS): Define __mips_no_float
25064         for TARGET_NO_FLOAT.
25065         * config/mips/mips.c (mips_file_start): Expand conditional expression
25066         into "if" statements.  Use .gnu_attribute 4,0 for TARGET_NO_FLOAT.
25067         (mips_override_options): Move -mno-float override -msoft-float and
25068         -mhard-float.
25069         * config/mips/mips.opt (mno-float): Move from sdemtk.opt, but add
25070         Condition(TARGET_SUPPORTS_NO_FLOAT).
25071         * config/mips/sdemtk.h (TARGET_OS_CPP_BUILTINS): Don't set
25072         __mips_no_float here.
25073         (SUBTARGET_OVERRIDE_OPTIONS): Delete.
25074         (TARGET_SUPPORTS_NO_FLOAT): Define.
25075         * config/mips/sdemtk.opt: Delete.
25076
25077 2010-05-20  Segher Boessenkool  <segher@kernel.crashing.org>
25078
25079         * ipa-prop.c (compute_complex_ancestor_jump_func): Bail out if !cond.
25080
25081 2010-05-20  Uros Bizjak  <ubizjak@gmail.com>
25082
25083         PR target/43733
25084         * configure.ac (gcc_cv_as_ix86_sahf): Switch to 64bit mode.
25085         * configure: Regenerate.
25086         * config.in: Regenerate.
25087         * config/i386/i386.md (x86_sahf_1): Conditionally output 0x9e
25088         instead of sahf only for 64bit targets.
25089
25090 2010-05-20  Jakub Jelinek  <jakub@redhat.com>
25091
25092         PR debug/44178
25093         * haifa-sched.c (initiate_bb_reg_pressure_info): Do not call
25094         setup_ref_regs for DEBUG_INSNs.
25095
25096 2010-05-20  Jan Hubicka  <jh@suse.cz>
25097
25098         PR middle-end/44197
25099         * varpool.c (varpool_remove_node): Handle in-varpool aliases.
25100
25101 2010-05-20  Kenneth Zadeck  <zadeck@naturalbridge.com>
25102
25103         PR bootstrap/43870
25104         * df-scan.c (df_ref_compare): Stabilize sort.
25105
25106 2010-05-20  Jakub Jelinek  <jakub@redhat.com>
25107
25108         * dwarf2out.c (new_loc_descr_op_bit_piece): Add offset
25109         argument.  Don't use DW_OP_piece if offset is non-zero,
25110         put offset into second DW_OP_bit_piece argument.
25111         (dw_sra_loc_expr): Adjust callers.  For memory expressions
25112         compute offset.
25113
25114 2010-05-20  Hans-Peter Nilsson  <hp@axis.com>
25115
25116         PR target/44202
25117         * config/cris/cris.md ("*addsi3_v32"): Correct "cc"
25118         settings for 16-bit-constant "addo" alternative.
25119
25120 2010-05-19  James E. Wilson  <wilson@codesourcery.com>
25121
25122         * config/mips/mips-dsp.md (add<DSPV:mode>3,
25123         mips_add<DSP:dspfmt1>_s_<DSP:dspfmt2>): Add ISA_HAS_DSP condition.
25124
25125         PR target/43764
25126         * mips.c (mips_call_expr_from_insn): New arg second_call.  Set it.
25127         (mips_annotate_pic_calls): Pass new arg to mips_call_expr_from_insn.
25128         Use it.
25129
25130 2010-05-19  Joseph Myers  <joseph@codesourcery.com>
25131
25132         * diagnostic.c (FLOAT, FFS): Don't undefine.
25133         * passes.c, pretty-print.c, rtl-error.c, toplev.c: Likewise.
25134         * cse.c, regmove.c: Remove comments about stdio.h and rtl.h
25135         include ordering.
25136
25137 2010-05-19  Richard Sandiford  <rdsandiford@googlemail.com>
25138
25139         * combine.c (propagate_for_debug): Call make_compound_operation
25140         on the source value.
25141         (try_combine): When implementing a split chosen by find_split_point,
25142         either copy i2src or set it to null.  Assert that i2src is not null
25143         before substituting into CALL_INSN_FUNCTION_USAGE.
25144
25145 2010-05-19  Anatoly Sokolov  <aesok@post.ru>
25146
25147         * double-int.h (double_int_ior): New function.
25148         * tree.h (build_int_cst_wide_type): Remove.
25149         * tree.c (build_int_cst_wide_type): Remove.
25150         * fold-const.c (native_interpret_int): Use double_int_to_tree instead
25151         of build_int_cst_wide_type.
25152         * stor-layout.c (set_sizetype): (Ditto.).
25153         * dojump.c (do_jump): Use build_int_cstu instead of
25154         build_int_cst_wide_type.
25155
25156 2010-05-19  Eric Botcazou  <ebotcazou@adacore.com>
25157
25158         * langhooks.h (struct lang_hooks): Add new field deep_unsharing.
25159         * langhooks-def.h (LANG_HOOKS_DEEP_UNSHARING): New macro.
25160         (LANG_HOOKS_INITIALIZER): Add LANG_HOOKS_DEEP_UNSHARING.
25161         * gimplify.c (mostly_copy_tree_r): Copy trees under SAVE_EXPR and
25162         TARGET_EXPR nodes, but only once, if instructed to do so.  Do not
25163         propagate the 'data' argument to copy_tree_r.
25164         (copy_if_shared_r): Remove bogus ATTRIBUTE_UNUSED marker.
25165         Propagate 'data' argument to walk_tree.
25166         (copy_if_shared): New function.
25167         (unmark_visited_r): Remove bogus ATTRIBUTE_UNUSED marker.
25168         (unmark_visited): New function.
25169         (unshare_body): Call copy_if_shared instead of doing it manually.
25170         (unvisit_body): Call unmark_visited instead of doing it manually.
25171
25172 2010-05-19  Nathan Froyd  <froydnj@codesourcery.com>
25173
25174         * hooks.h (hook_tree_tree_tree_bool_null): Rename to...
25175         (hook_tree_tree_int_treep_bool_null): ...this.  Update signature.
25176         * hooks.c: Likewise.
25177         * target-def.h (TARGET_FOLD_BUILTIN): Define to
25178         hook_tree_tree_int_treep_bool_null.
25179         * target.h (struct gcc_target): Update signature of fold_builtin
25180         field.
25181         * doc/tm.texi (TARGET_FOLD_BUILTIN): Update description and signature.
25182         * builtins.c (fold_call_expr): Pass call_expr_nargs and CALL_EXPR_ARGP
25183         instead of the call expression.
25184         (fold_builtin_call_array): Pass n and argarray directly.
25185         (fold_call_stmt): Pass nargs and gimple_call_arg_ptr instead of
25186         consing a list.
25187         * config/alpha/alpha.c (alpha_fold_builtin): Update signature.  Lift
25188         MAX_ARGS check out of the loop.  Delete declaration of `arity', declare
25189         `i' and use it in place of `arity'.
25190         * config/sparc/sparc.c (sparc_fold_builtin): Update signature.
25191         Dereference `args' directly.
25192         * config/xtensa/xtensa (xtensa_fold_builtin): Likewise.
25193
25194 2010-05-19  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
25195
25196         * doc/sourcebuild.texi (Effective-Target Keywords): Document
25197         3dnow, sse3, sse2.
25198         (Directives): Document optional dg-require-effective-target
25199         selector.
25200
25201 2010-05-19  Richard Guenther  <rguenther@suse.de>
25202
25203         PR lto/44196
25204         * tree.c (find_decls_types_r): Walk BLOCKs and its vars.
25205
25206 2010-05-19  Richard Guenther  <rguenther@suse.de>
25207
25208         * doc/invoke.texi (-fwhopr): Document new optional jobs argument.
25209         * common.opt (fwhopr=): New.
25210         * opts.c (common_handle_option): Handle OPT_fwhopr.
25211         * gcc.c (LINK_COMMAND_SPEC): Pass fwhopr*.
25212         * collect2.c (main): Match -fwhopr*.
25213         * lto-wrapper.c (run_gcc): Handle jobs argument of -fwhopr.
25214         Execute ltrans stage in parallel when jobs is bigger than 1.
25215
25216 2010-05-19  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
25217
25218         * config.gcc (i[34567]86-*-solaris2*): Default with_arch_32 to
25219         pentiumpro on Solaris 8/x86 with Sun as.
25220         * configure.ac (gcc_cv_as_hidden): Check for Solaris 9/x86 as
25221         hidden alias bug.
25222         (gcc_cv_as_ix86_quad): Check for .quad directive.
25223         * configure: Regenerate.
25224         * config.in: Regenerate.
25225         * config/i386/sol2.h (ASM_QUAD): Change guard to !HAVE_AS_IX86_QUAD.
25226
25227 2010-05-19  Martin Jambor  <mjambor@suse.cz>
25228
25229         * ipa-prop.c (ipa_print_node_jump_functions): Print jump functions
25230         also for indirect edges.  Actual printing moved...
25231         (ipa_print_node_jump_functions_for_edge): ...here.
25232         (ipa_compute_jump_functions): Renamed to
25233         ipa_compute_jump_functions_for_edge and made static.
25234         (ipa_compute_jump_functions): New function.
25235         (make_edge_direct_to_target): Check if the number of arguments on
25236         the newly direct edge is the same as the number of parametrs of
25237         the callee.
25238         * ipa-cp.c (ipcp_init_stage): Most functionality moved to new
25239         ipa_compute_jump_functions.  Call ipa_analyze_params_uses.
25240         * ipa-inline.c (inline_indirect_intraprocedural_analysis): Call
25241         analysis functions unconditionally, call the new
25242         ipa_analyze_params_uses on the node instead of every edge.
25243
25244 2010-05-19  Christian Borntraeger  <borntraeger@de.ibm.com>
25245
25246         * tree-ssa-loop-prefetch.c (mem_ref_group, ar_data): Change step
25247         to tree.
25248         (dump_mem_ref): Adopt debug code to handle a tree as step.  This
25249         also checks for a constant int vs.  non-constant but
25250         loop-invariant steps.
25251         (find_or_create_group): Change the sort algorithm to only consider
25252         steps that are constant ints.
25253         (idx_analyze_ref): Adopt code to handle a tree instead of a
25254         HOST_WIDE_INT for step.
25255         (gather_memory_references_ref): Handle tree instead of int and be
25256         prepared to see a NULL_TREE.
25257         (prune_ref_by_self_reuse, prune_ref_by_group_reuse): Do not prune
25258         prefetches if the step cannot be calculated at compile time.
25259         (issue_prefetch_ref): Issue prefetches for non-constant but
25260         loop-invariant steps.
25261
25262 2010-05-18  Nathan Froyd  <froydnj@codesourcery.com>
25263
25264         Revert:
25265         2010-05-18  Nathan Froyd  <froydnj@codesourcery.com>
25266
25267         * tree.h (build_call_list): Remove.
25268         * tree.c (build_call_list): Remove.
25269
25270 2010-05-18  Nathan Froyd  <froydnj@codesourcery.com>
25271
25272         * tree.h (build_call_list): Remove.
25273         * tree.c (build_call_list): Remove.
25274
25275 2010-05-18  Jan Hubicka  <jh@suse.cz>
25276
25277         * ipa-reference.c (propagate): Walk all nodes in the cleanup stage.
25278
25279 2010-05-18  Vladimir Makarov  <vmakarov@redhat.com>
25280
25281         PR rtl-optimization/43332
25282         * haifa-sched.c (setup_insn_max_reg_pressure): Check barrier.
25283
25284 2010-05-18  Anatoly Sokolov  <aesok@post.ru>
25285
25286         * tree.h (build_int_cstu): Implement as static inline.
25287         * tree.c (build_int_cstu): Remove function.
25288         (double_int_to_tree, double_int_fits_to_tree_p): Handle size types as
25289         sign extended.
25290
25291 2010-05-18  Richard Guenther  <rguenther@suse.de>
25292
25293         PR lto/44143
25294         * lto-wrapper.c (verbose): New variable.  Initialize from -v.
25295         (debug): Initialize from -save-temps.
25296         (collect_execute): Print command-line when verbose.
25297         (run_gcc): Always use COLLECT_GCC_OPTIONS.  Use fork_execute
25298         for ltrans invocation.  Produce -dumpbase flag again.
25299         (process_args): Remove.
25300         (main): Simplify.
25301         * collect2.c (maybe_run_lto_and_relink): Only pass object
25302         files to lto-wrapper.
25303         * gcc.c (LINK_COMMAND_SPEC): Likewise.
25304
25305 2010-05-18  Jan Hubicka  <jh@suse.cz>
25306
25307         * opts.c (decode_options): Do not disable whopr at ipa_cp.
25308         * ipa-prop.c (ipa_detect_param_modifications): Walk PHI nodes too.
25309
25310 2010-05-18  Steven Bosscher  <steven@gcc.gnu.org>
25311
25312         PR lto/44184
25313         * lto-streamer-out.c (output_gimple_stmt): Output number of labels
25314         in a GIMPLE_ASM.
25315         * lto-streamer-in.c (input_gimple_stmt): Read number of labels
25316         in a GIMPLE_ASM.
25317
25318 2010-05-18  Jakub Jelinek  <jakub@redhat.com>
25319
25320         PR debug/41371
25321         * var-tracking.c (find_loc_in_1pdv): Add a few checks from
25322         rtx_equal_p inline.
25323
25324 2010-05-18  Steven Bosscher  <steven@gcc.gnu.org>
25325
25326         * config.gcc (powerpc-*-darwin*, powerpc64-*-darwin*): Add
25327         lto-macho as lto_binary_reader.
25328
25329         * darwin.c (darwin_asm_named_section): Do not add assembler comment
25330         after .section directive; just print it before the directive instead.
25331
25332 2010-05-17  Jan Hubicka  <jh@suse.cz>
25333
25334         * cgraph.c (cgraph_create_virtual_clone): Only check
25335         versionable_function_p when not in wpa and checking is enabled.
25336         * cgraphunit.c (cgraph_materialize_all_clones): Stabilize after
25337         there are no more functions to materialize.
25338
25339 2010-05-17  Jan Hubicka  <jh@suse.cz>
25340
25341         * cgraph.h (struct ipa_replace_map): Add parm_num parameter.
25342         * lto-cgraph.c (output_cgraph_opt_summary, input_cgraph_opt_summary):
25343         New functions.
25344         (output_cgraph): Call output_cgraph_opt_summary.
25345         (input_cgrpah): Call input_cgraph_opt_summary.
25346         (output_cgraph_opt_summary_p, output_node_opt_summary,
25347         input_node_opt_summary, input_cgraph_opt_section): New functions.
25348         * lto-section-in.c (lto_section_name): Add cgraphopt.
25349         * tree-inline.c (tree_function_versioning): Handle parm_num.
25350         * lto-streamer.c (lto_get_section_name): Handle cgraphopt.
25351         * lto-streamer.h (lto_section_type): Add LTO_section_cgraph_opt_sum.
25352
25353 2010-05-17  Changpeng Fang  <changpeng.fang@amd.com>
25354
25355         * doc/invoke.texi: Update documentation for min-insn-to-prefetch-ratio.
25356         * tree-ssa-loop-prefetch.c (is_loop_prefetching_profitable): Also apply
25357         the insn to prefetch ratio heuristic to loops with known trip count.
25358
25359 2010-05-17  Changpeng Fang  <changpeng.fang@amd.com>
25360
25361         * tree-ssa-loop-prefetch.c (PREFETCH_MOD_TO_UNROLL_FACTOR_RATIO): New.
25362         (schedule_prefetches): Do not generate a prefetch if the unroll factor
25363         is far from what is required by the prefetch.
25364
25365 2010-05-17  Jan Hubicka  <jh@suse.cz>
25366
25367         * ipa-cp.c (ipcp_update_callgraph): Use ipa_is_param_used.
25368         (ipcp_estimate_growth): Likewise.
25369         (ipcp_const_param_count): Likewise.
25370         (ipcp_insert_stage): Likewise.
25371         * ipa-prop.c (visit_load_for_mod_analysis): New function.
25372         (visit_store_addr_for_mod_analysis): Set used flag.
25373         (ipa_detect_param_modifications): Set used flag for SSE params;
25374         update use of walk_stmt_load_store_addr_ops.
25375         (ipa_print_node_params): Print used flag.
25376         (ipa_write_node_info): Stream used flag.
25377         (ipa_read_node_info): Likewise.
25378         * ipa-prop.h (struct ipa_param_descriptor): Add used field.
25379         (ipa_is_param_used): New function.
25380         (lto_ipa_fixup_call_notes): Remove unused declaration.
25381
25382 2010-05-17  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
25383
25384         PR target/44074
25385         * configure.ac (HAVE_AS_IX86_REP_LOCK_PREFIX): New test.
25386         * configure: Regenerate.
25387         * config.in: Regenerate.
25388         * config/i386/i386.c (print_operand) <case ;>: Also print ";" if
25389         !HAVE_AS_IX86_REP_LOCK_PREFIX.
25390         Don't emit whitespace.
25391         * config/i386/i386.md (*rep_movdi_rex64): Use {%;} after rep.
25392         (*rep_movsi): Likewise.
25393         (*rep_movsi_rex64): Likewise.
25394         (*rep_movqi): Likewise.
25395         (*rep_movqi_rex64): Likewise.
25396         (*rep_stosdi_rex64): Likewise.
25397         (*rep_stossi): Likewise.
25398         (*rep_stossi_rex64): Likewise.
25399         (*rep_stosqi): Likewise.
25400         (*rep_stosqi_rex64): Likewise.
25401         (*cmpstrnqi_nz_1): Use {%;} after repz.
25402         (*cmpstrnqi_nz_rex_1): Likewise.
25403         (*cmpstrnqi_1): Likewise.
25404         (*cmpstrnqi_rex_1): Likewise.
25405         (*strlenqi_1): Use {%;} after repnz.
25406         (*strlenqi_rex_1): Likewise.
25407         * config/i386/sync.md (memory_barrier_nosse): Replace {%;| } by {%;} .
25408         (*sync_compare_and_swap<mode>): Likewise.
25409         (sync_double_compare_and_swap<mode>): Likewise.
25410         (*sync_double_compare_and_swapdi_pic): Likewise.
25411         (sync_old_add<mode>): Likewise.
25412         (sync_add<mode>): Likewise.
25413         (sync_sub<mode>): Likewise.
25414         (sync_<code><mode>): Likewise.
25415
25416 2010-05-17  Martin Jambor  <mjambor@suse.cz>
25417
25418         * cgraph.h (cgraph_indirect_call_info): New fields anc_offset,
25419         otr_token and polymorphic.
25420         * cgraph.c (cgraph_create_indirect_edge): Inilialize the above fields.
25421         (cgraph_clone_edge): Copy the above fields.
25422         * tree.c (get_binfo_at_offset): New function.
25423         * tree.h (get_binfo_at_offset): Declare.
25424         * ipa-prop.h (enum jump_func_type): Added known_type jump function
25425         type, reordered items, updated comments.
25426         (union jump_func_value): Added base_type field, reordered fields.
25427         (enum ipa_lattice_type): Moved down in the file.
25428         (struct ipa_param_descriptor): New field polymorphic.
25429         (ipa_is_param_polymorphic): New function.
25430         * ipa-prop.c: Include gimple.h and gimple-fold.h.
25431         (ipa_print_node_jump_functions): Print known type jump functions.
25432         (compute_complex_pass_through): Renamed to...
25433         (compute_complex_assign_jump_func): this.
25434         (compute_complex_ancestor_jump_func): New function.
25435         (compute_known_type_jump_func): Likewise.
25436         (compute_scalar_jump_functions): Create known type and complex ancestor
25437         jump functions.
25438         (ipa_note_param_call): New parameter polymorphic, set the corresponding
25439         flag in the call note accordingly.
25440         (ipa_analyze_call_uses): Renamed to...
25441         (ipa_analyze_indirect_call_uses): this.  New parameter target, define
25442         variable var only in the block where it is used.
25443         (ipa_analyze_virtual_call_uses): New function.
25444         (ipa_analyze_call_uses): Likewise.
25445         (combine_known_type_and_ancestor_jfs): Likewise.
25446         (update_jump_functions_after_inlining): Implemented handling of a
25447         number of new jump function types combination.
25448         (print_edge_addition_message): Removed.
25449         (make_edge_direct_to_target): New function.
25450         (try_make_edge_direct_simple_call): Likewise.
25451         (try_make_edge_direct_virtual_call): Likewise.
25452         (update_call_notes_after_inlining): Renamed to...
25453         (update_indirect_edges_after_inlining): this.  Moved edge creation for
25454         indirect calls to try_make_edge_direct_simple_call, also calls
25455         try_make_edge_direct_virtual_call for virtual calls.
25456         (ipa_print_node_params): Changed the header message.
25457         (ipa_write_jump_function): Stream also known type jump functions.
25458         (ipa_read_jump_function): Likewise.
25459         (ipa_write_indirect_edge_info): Stream new fields in
25460         cgraph_indirect_call_info.
25461         (ipa_read_indirect_edge_info): Likewise.
25462         * Makefile.in (ipa-prop.o): Add dependency to GIMPLE_H and
25463         GIMPLE_FOLD_H.
25464
25465 2010-05-17  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
25466
25467         * config/i386/sol2.h (TARGET_SUN_TLS): Remove duplicate definition.
25468
25469 2010-05-17  Nathan Froyd  <froydnj@codesourcery.com>
25470
25471         * tree.h (CALL_EXPR_ARGS): Delete.
25472         (call_expr_arglist): Delete.
25473         * tree.c (call_expr_arglist): Delete.
25474         * builtins.c (fold_call_expr): Pass the whole CALL_EXPR to
25475         targetm.fold_builtin.
25476         * config/alpha/alpha.c (alpha_fold_builtin): Rename arglist parameter.
25477         Rewrite iteration to work on call_expr_nargs rather than TREE_CHAIN.
25478         * config/picochip/picochip.c (picochip_expand_builtin_2op): Rename
25479         arglist parameter.  Use CALL_EXPR_ARG.
25480         (picochip_expand_builtin_3op): Likewise.
25481         (picochip_expand_builtin_2opvoid): Likewise.
25482         (picochip_expand_array_get): Likewise.
25483         (picochip_expand_array_put): Likewise.
25484         (picochip_expand_array_testport): Likewise.
25485         (picochip_expand_builtin): Don't call CALL_EXPR_ARGS.  Pass exp
25486         rather than arglist.
25487         * config/rx/rx.c (rx_expand_builtin): Call call_expr_nargs instead of
25488         CALL_EXPR_ARGS.
25489         * config/sparc/sparc.c (sparc_fold_builtin): Use CALL_EXPR_ARG rather
25490         than TREE_VALUE and TREE_CHAIN.
25491         * config/xtensa/xtensa.c (xtensa_fold_builtin): Likewise.
25492         * doc/tm.texi (TARGET_FOLD_BUILTIN): Pass CALL_EXPR tree instead of
25493         the arglist.
25494
25495 2010-05-17  Jakub Jelinek  <jakub@redhat.com>
25496
25497         PR bootstrap/42347
25498         * cfglayout.c (fixup_reorder_chain): Allow returnjump_p
25499         to have no fallthru edge.
25500
25501         PR middle-end/44102
25502         * cfgcleanup.c (try_optimize_cfg): When removing trivially empty
25503         bb with no successors, move footer whenever in IR_RTL_CFGLAYOUT
25504         mode, not just when CLEANUP_CFGLAYOUT, and when in IR_RTL_CFGRTL
25505         add BARRIER after previous bb if needed.
25506
25507 2010-05-17  Nathan Froyd  <froydnj@codesourcery.com>
25508
25509         * tree.c (build_function_type_list_1): Remove bogus assert condition.
25510
25511 2010-05-17  Alan Modra  <amodra@gmail.com>
25512
25513         * config/rs6000/rs6000.c (rs6000_emit_allocate_stack): Delete
25514         unnecessary prototype.  Replace copy_r12 and copy_r11 flag params
25515         with copy_reg rtx param.
25516         (rs6000_emit_prologue): Update rs6000_emit_allocate_stack calls.
25517         Correct cases where code for ABI_V4 did not initialise the reg
25518         used to access frame.  Also leave frame_reg_rtx as sp for large
25519         frames that save no regs.
25520
25521 2010-05-17  Martin Jambor  <mjambor@suse.cz>
25522
25523         PR middle-end/44133
25524         * tree-sra.c (create_access_replacement): New parameter rename, mark
25525         the replaement for renaming only when it is true.
25526         (get_access_replacement): Pass true in the rename parameter of
25527         create_access_replacement.
25528         (get_unrenamed_access_replacement): New function.
25529         (replace_uses_with_default_def_ssa_name): New parameter racc, get the
25530         replacement declaration from it.
25531
25532 2010-05-17  Bernd Schmidt  <bernds@codesourcery.com>
25533
25534         * function.c (try_fit_stack_local, add_frame_space): New static
25535         functions.
25536         (assign_stack_local_1): Use them.  Look for opportunities to use
25537         space previously wasted on alignment.
25538         * function.h (struct frame_space): New.
25539         (struct rtl_data): Add FRAME_SPACE_LIST member.
25540         * reload1.c (something_was_spilled): New static variable.
25541         (alter_reg): Set it.
25542         (reload): Test it in addition to testing if the frame size changed.
25543
25544 2010-05-17  Christian Borntraeger  <borntraeger@de.ibm.com>
25545
25546         * config/s390/s390.c: Define sane prefetch settings and activate
25547         flag_prefetch_loop_arrays on -O3.
25548         * config/s390/s390.h: Declare that read can use write prefetch.
25549
25550 2010-05-17  Jakub Jelinek  <jakub@redhat.com>
25551
25552         * lto-streamer-out.c (lto_output): Fix --enable-checking=release
25553         build.
25554
25555 2010-05-16  Jan Hubicka  <jh@suse.cz>
25556
25557         * ipa-cp.c (ipcp_versionable_function_p): Walk cgraph edges instead of
25558         function body; do not check stdarg field of struct function.
25559
25560 2010-05-16  Jan Hubicka  <jh@suse.cz>
25561
25562         * cgraph.c (dump_cgraph_node): Dump versionable flag.
25563         * cgraph.h (cgraph_local_info): Add versionable flag.
25564         * ipa-cp.c (ipcp_analyze_node): Set versionable flag.
25565         (ipcp_versionable_function_p): Use it.
25566         * lto-cgraph.c (lto_output_node, input_overwrite_node): Stream
25567         versionable flag.
25568
25569 2010-05-16  Jan Hubicka  <jh@suse.cz>
25570
25571         * cgraph.c (cgraph_clone_node): Take decl argument and insert
25572         clone into hash when it is different from orig.
25573         (cgraph_create_virtual_clone): Update use of cgraph_clone_node.
25574         * cgraph.h (cgraph_clone_node): Update prototype.
25575         * lto-cgrpah.c (lto_cgraph_encoder_new): Create body map.
25576         (lto_cgraph_encoder_delete): Delete body map.
25577         (lto_cgraph_encoder_size): Move to header.
25578         (lto_cgraph_encoder_encode_body_p,
25579         lto_set_cgraph_encoder_encode_body): New.
25580         (lto_output_node): Do not take written_decls argument; output clone_of
25581         pointer.
25582         (add_node_to): Add include_body_argument; call
25583         lto_set_cgraph_encoder_encode_body on master of the clone.
25584         (add_references): Update use of add_node_to.
25585         (compute_ltrans_boundary): Likewise.
25586         (output_cgraph): Do not create written_decls bitmap.
25587         (input_node): Take nodes argument; stream in clone_of correctly.
25588         (input_cgraph_1): Update use of input_node.
25589         * lto-streamer-out.c (lto_output): Use encoder info to decide
25590         what bodies to output.
25591         * ipa-inline.c (cgraph_clone_inlined_nodes,
25592         cgraph_decide_recursive_inlining): Update call of cgraph_clone_node.
25593         * lto-streamer.h (lto_cgraph_encoder_d): Add body.
25594         (lto_cgraph_encoder_size): Define here.
25595         (lto_cgraph_encoder_encode_body_p, lto_varpool_encoder_encode_body_p):
25596         Declare.
25597
25598 2010-05-16  Richard Guenther  <rguenther@suse.de>
25599
25600         * doc/invoke.texi (-fipa-struct-reorg): Do not mention
25601         -fipa-type-escape.
25602         * ipa-type-escape.c (gate_type_escape_vars): Run when
25603         -fipa-struct-reorg runs.
25604         * opts.c (decode_options): Do not unset flag_ipa_type_escape.
25605         * common.opt (fipa-type-escape): Remove.
25606
25607 2010-05-16  Eric Botcazou  <ebotcazou@adacore.com>
25608
25609         * opts.c (handle_option): Call into LTO streamer only if ENABLE_LTO.
25610         (decode_options): Likewise.
25611         * Makefile.in (opts.o): Add dependency on LTO_STREAMER_H.
25612
25613 2010-05-16  Jan Hubicka  <jh@suse.cz>
25614
25615         * ipa.c (function_and_variable_visibility): Also bring local all
25616         aliases.
25617
25618 2010-05-16  Richard Guenther  <rguenther@suse.de>
25619
25620         * alias.c (nonoverlapping_memrefs_p): Remove use of
25621         IPA type-escape information.
25622
25623 2010-05-16  Joseph Myers  <joseph@codesourcery.com>
25624
25625         * c-common.c (c_common_reswords): Add _Static_assert for C.
25626         * c-parser.c (c_token_starts_declaration,
25627         c_parser_next_token_starts_declaration,
25628         c_parser_static_assert_declaration_no_semi,
25629         c_parser_static_assert_declaration): New.
25630         (c_parser_declaration_or_fndef): Add parameter static_assert_ok.
25631         Handle static assertions if static_assert_ok.
25632         (c_parser_external_declaration, c_parser_declaration_or_fndef,
25633         c_parser_compound_statement_nostart, c_parser_label,
25634         c_parser_for_statement, c_parser_objc_methodprotolist,
25635         c_parser_omp_for_loop): All callers of
25636         c_parser_declaration_or_fndef changed.
25637         (c_parser_struct_declaration): Handle static assertions.
25638         (c_parser_compound_statement_nostart): Use
25639         c_parser_next_token_starts_declaration and
25640         c_token_starts_declaration to detect start of declarations.
25641         (c_parser_label, c_parser_for_statement, c_parser_omp_for_loop):
25642         Likewise.
25643
25644 2010-05-16  Anatoly Sokolov  <aesok@post.ru>
25645
25646         * config/mmix/mmix.h (FUNCTION_VALUE, FUNCTION_OUTGOING_VALUE,
25647         LIBCALL_VALUE, FUNCTION_VALUE_REGNO_P): Remove macros.
25648         * config/mmix/mmix.c (TARGET_FUNCTION_VALUE, TARGET_LIBCALL_VALUE,
25649         TARGET_FUNCTION_VALUE_REGNO_P): Define.
25650         (mmix_function_outgoing_value): Rename to...
25651         (mmix_function_value): ...this. Make static. Add 'outgoing' argument.
25652         (mmix_function_value_regno_p): Make static.
25653         (mmix_libcall_value): New function.
25654         * config/mmix/mmix-protos.h (mmix_function_outgoing_value,
25655         mmix_function_value_regno_p): Remove declaration.
25656
25657 2010-05-16  Eric Botcazou  <ebotcazou@adacore.com>
25658
25659         * tree.c (build_common_builtin_nodes): Always clear TREE_NOTHROW on
25660         BUILT_IN_ALLOCA if stack checking is enabled.
25661
25662 2010-05-16  Richard Guenther  <rguenther@suse.de>
25663
25664         * var-tracking.c (vars_copy_1): Inline ...
25665         (vars_copy): ... here.  Use FOR_EACH_HTAB_ELEMENT.
25666         (variable_union): Use FOR_EACH_HTAB_ELEMENT.  Merge asserts.
25667         (variable_merge_over_cur): Adjust.  Merge asserts.
25668         (variable_merge_over_src): Likewise.
25669         (dataflow_set_merge): Use FOR_EACH_HTAB_ELEMENT.
25670         (variable_post_merge_new_vals): Merge asserts.
25671         (variable_post_merge_perm_vals): Likewise.
25672         (find_mem_expr_in_1pdv): Likewise.
25673         (dataflow_set_different_value): Remove.
25674         (onepart_variable_different_p): Merge asserts.
25675         (variable_different_p): Likewise.
25676         (dataflow_set_different_1): Inline ...
25677         (dataflow_set_different): ... here.  Use FOR_EACH_HTAB_ELEMENT.
25678         (emit_notes_for_differences_1): Merge asserts.
25679
25680 2010-05-16  Richard Guenther  <rguenther@suse.de>
25681
25682         * lto-symtab.c (lto_symtab_entry_hash): Use IDENTIFIER_HASH_VALUE.
25683         * optabs.c (libfunc_decl_hash): Likewise.
25684         * varasm.c (emutls_decl): Likewise.
25685
25686 2010-05-16  Steven Bosscher  <steven@gcc.gnu.org>
25687
25688         * c-decl.c: Don't include gimple.h.
25689         (merge_decls): Do not copy gimple_body.
25690
25691 2010-05-15  Jason Merrill  <jason@redhat.com>
25692
25693         * c.opt: Add -fnothrow-opt.
25694
25695 2010-05-15  Jan Hubicka  <jh@suse.cz>
25696
25697         * ipa-prop.c (ipa_prop_read_section): Add sanity check that node is
25698         analyzed.
25699         * passes.c (ipa_write_summaries): Write all analyzed nodes.
25700
25701 2010-05-15  Steven Bosscher  <steven@gcc.gnu.org>
25702
25703         * vecir.h: New file with VEC primitives for tree, gimple, and rtl.
25704         * Makefile.in: Add it.
25705         Fix all other Makefile dependencies for changes below.
25706         * tree.h: Include it instead of defining VEC primitives here.
25707         * gimple.h: Likewise.
25708         * rtl.h: Likewise.
25709         * tree-inline.h: Inlclude vecir.h instead of gimple.h.
25710         * except.h: Include vecir.h, break dependence on tree.h.
25711
25712         * gimplify.c (append_to_statement_list_1, append_to_statement_list):
25713         Move from here...
25714         * tree-iterator.c: ...to here.
25715         * tree-iterator.h: Fix file introduction comment.  Add extern markers.
25716
25717         * c-lex.c: Include fixed-value.h instead of rtl.h.  Do not include
25718         tm_p.h.
25719         * c-cppbuiltin.c: Explain why debug.h and tm_p.h are included.
25720         * c-objc-common.h: Do not include tm.h, rtl.h, insn-config.h,
25721         integrate.h, function.h, toplev.h, tree-inline.h, ggc.h,
25722         tree-mudflap.h, and target.h.
25723         * c-semantics.c: Do not include except.h, ggc.h, rtl.h, timevar.h,
25724         predict.h, tree-inline.h, gimple.h, and langhooks.h.
25725         * c-decl.c: Do not include expr.h, ggc.h, libfuncs.h, except.h.
25726         Add FIXME for why gimple.h is still included (should be unnecessary
25727         since GCC 4.5 gimplification unit-at-a-time).
25728         * c-typeck.c: Do not include rtl.h, tm_p.h, ggc.h, and gimple.h.
25729         * c-pragma.c: Add FIXME for why function.h needs to be included just
25730         for cfun, at front-end level.
25731         Add note that REGISTER_TARGET_PRAGMAS should probably be a target hook.
25732         Do not include ggc.h, but include vecprim.h for VEC(char).
25733         * c-opts.c: Do not include tm.h, tree-inline.h, and tm_p.h.
25734         Explain why target.h is included.
25735         * c-omp.h: Do not include tm.h, function.h, and bitmap.h.
25736         Explain why gimple.h is included.
25737         * c-ppoutput.c: Do not include tm.h.
25738         * c-common.c: Do not include gimple.h.  Explain why expr.h is included.
25739         * c-parses.c: Explain why rtl.h is included, and that this (and only
25740         this) is also why tm.h must be included.
25741         Do not include except.h.
25742         * c-lang.c: Do not include ggc.h.
25743
25744 2010-05-15  Uros Bizjak  <ubizjak@gmail.com>
25745
25746         * targhooks.c (GO_IF_MODE_DEPENDENT_ADDRESS): Use CONST_CAST_RTX.
25747
25748 2010-05-15  Joseph Myers  <joseph@codesourcery.com>
25749
25750         * c-decl.c (grokfield): Allow typedefs for anonymous structs and
25751         unions by default if those structs and unions have no tags.  Do
25752         not condition anonymous struct and unions handling on flag_iso.
25753         Allow anonymous structs and unions for C1X.
25754         (finish_struct): Do not diagnose lack of named fields when
25755         anonymous structs and unions present for C1X.  Accept flexible
25756         array members in structure with anonymous structs or unions but no
25757         directly named fields.
25758         * doc/extend.texi (Unnamed Fields): Update.
25759
25760 2010-05-15  Eric Botcazou  <ebotcazou@adacore.com>
25761
25762         * gimple.h (compare_field_offset): Rename into...
25763         (gimple_compare_field_offset): ...this.
25764         * gimple.c (compare_field_offset): Rename into...
25765         (gimple_compare_field_offset): ...this.  Compare the full access if
25766         the offset is self-referential.
25767         (gimple_types_compatible_p): Adjust for above renaming.
25768         * lto-streamer-in.c (input_gimple_stmt): Likewise.  Also compare the
25769         DECL_NONADDRESSABLE_P flag of fields before merging them.
25770
25771 2010-05-15  Nathan Froyd  <froydnj@codesourcery.com>
25772
25773         * tree.h (ctor_to_list): Delete.
25774         * tree.c (ctor_to_list): Delete.
25775
25776 2010-05-15  Jan Hubicka  <jh@suse.cz>
25777
25778         * ipa-reference.c: Include toplev.h
25779         (is_proper_for_analysis): Only add to all_module_statics
25780         if it is allocated.
25781         (write_node_summary_p, stream_out_bitmap,
25782         ipa_reference_write_optimization_summary,
25783         ipa_reference_read_optimization_summary): New.
25784         (struct ipa_opt_pass_d pass_ipa_reference): Add
25785         optimization summary streaming.
25786         * lto-cgraph.c (referenced_from_this_partition_p,
25787         reachable_from_this_partition_p): New functions.
25788         * tree-ssa-alias.c (ref_maybe_used_by_call_p_1,
25789         call_may_clobber_ref_p_1): Ask ipa-reference even for public vars.
25790         * opts.c (decode_options): Enable ipa_reference.
25791         * Makefile.in (ipa-reference.o): Add toplev.h dependency.
25792         * lto-streamer.h (referenced_from_this_partition_p,
25793         reachable_from_this_partition_p): Declare.
25794
25795 2010-05-15  Richard Guenther  <rguenther@suse.de>
25796
25797         PR tree-optimization/44038
25798         * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Avoid
25799         taking the address of a V_C_E of a constant.
25800
25801 2010-05-14  Jan Hubicka  <jh@suse.cz>
25802
25803         * tree.h (memory_identifier_string): Remove.
25804         * ipa-reference.c: Update comment; do not include gt-ipa-reference.h
25805         (ipa_reference_global_vars_info_d): Remove statics_not_read and
25806         statics_not_written.
25807         (ipa_reference_optimization_summary_d): New structure.
25808         (ipa_reference_optimization_summary_t): New type and vector.
25809         (ipa_reference_vars_info_d): Embedd structures instead of using
25810         pointers.
25811         (reference_vars_to_consider): Remove out of GGC space.
25812         (module_statics_escape): Remove.
25813         (global_info_obstack): Rename to ...
25814         (optimization_summary_obstack): ... this one.
25815         (initialization_status_t): Remove.
25816         (memory_identifier_string): Remove.
25817         (get_reference_vars_info): Fix indenting.
25818         (set_reference_vars_info): Likewise.
25819         (get_reference_optimization_summary): New.
25820         (set_reference_optimization_summary): New.
25821         (get_global_reference_vars_info): Remove.
25822         (ipa_reference_get_read_global): Remove.
25823         (ipa_reference_get_written_global): Remove.
25824         (ipa_reference_get_not_read_global): Update.
25825         (ipa_reference_get_not_written_global): Update.
25826         (is_proper_for_analysis): Outlaw addressable.
25827         (propagate_bits): Update for new datastructures.
25828         (analyze_variable): Remove.
25829         (init_function_info): Update for new datastructures.
25830         (clean_function_local_data): Remove.
25831         (clean_function): Remove.
25832         (copy_global_bitmap): Use optimizations_summary_obstack.
25833         (duplicate_node_data): Duplicate optimization summary only.
25834         (remove_node_data): Remove optimization summary only.
25835         (generate_summary): Do not analyze variables; do not compute
25836         module_statics_escape; do not prune solutions by it.
25837         (read_write_all_from_decl): Fix typos in comments.
25838         (propagate): Doscover readonly and nonaddressable first;
25839         update for new datastructures; share global bitmaps.
25840         * ipa-reference.h (ipa_reference_get_read_global,
25841         ipa_reference_get_written_global): Remove.
25842         * ipa-pure-const.c (check_stmt): Do not use memory_identifier_string.
25843         * Makefile.in: Remove ipa-refereference from GT files.
25844
25845 2010-05-14  Jakub Jelinek  <jakub@redhat.com>
25846
25847         PR debug/44112
25848         * dwarf2out.c (resolve_one_addr): Check TREE_ASM_WRITTEN
25849         for all SYMBOL_REF_DECLs.
25850
25851 2010-05-14  Jan Hubicka  <jh@suse.cz>
25852
25853         * cgraph.h (ipa_discover_readonly_nonaddressable_vars): Declare.
25854         (varpool_all_refs_explicit_p): New inline function.
25855         * ipa-reference.c: Update comment.
25856         (module_statics_written): Remove.
25857         (get_static_decl): Remove.
25858         (ipa_init): Do not initialize module_statics_written.
25859         (analyze_function): Likewise.
25860         (generate_summary): Likewise; do not compute module_statics_readonly
25861         and do not update variable flags.
25862         (propagate): Call ipa_discover_readonly_nonaddressable_vars.
25863         * ipa.c: Inlucde flags.h
25864         (cgraph_local_node_p): New.
25865         (cgraph_remove_unreachable_nodes): Return early when not optimizing;
25866         promote functions to local.
25867         (ipa_discover_readonly_nonaddressable_vars): New function.
25868         (function_and_variable_visibility): Use cgraph_local_node_p.
25869         * varpool.c (varpool_finalize_decl): Set force_output for
25870         DECL_PRESERVE_P vars.
25871
25872 2010-05-14  Jan Hubicka  <jh@suse.cz>
25873
25874         * ipa.c (cgraph_remove_unreachable_nodes): Revert accidental commit.
25875
25876 2010-05-14  Richard Guenther  <rguenther@suse.de>
25877
25878         PR tree-optimization/44119
25879         * tree-ssa-pre.c (eliminate): Properly mark replacement of
25880         a PHI node necessary.
25881
25882 2010-05-14  Eric Botcazou  <ebotcazou@adacore.com>
25883
25884         * tree.h (TREE_ADDRESSABLE): Remove bogus usage for FIELD_DECL.
25885
25886 2010-05-14  Jason Merrill  <jason@redhat.com>
25887
25888         PR c++/44127
25889         * gimple.h (enum gf_mask): Add GF_CALL_NOTHROW.
25890         (gimple_call_set_nothrow): New.
25891         * gimple.c (gimple_build_call_from_tree): Call it.
25892         (gimple_call_flags): Set ECF_NOTHROW from GF_CALL_NOTHROW.
25893
25894         PR c++/44127
25895         * gimplify.c (gimplify_seq_add_stmt): No longer static.
25896         * gimple.h: Declare it.
25897         * gimple.c (gimple_build_eh_filter): No ops.
25898
25899 2010-05-14  Jan Hubicka  <jh@suse.cz>
25900
25901         * ipa.c (enqueue_cgraph_node): Update comment; do not re-enqueue
25902         nodes already in queue.
25903         (cgraph_remove_unreachable_nodes): Cleanup; fix problem with
25904         re-enqueueing node.
25905
25906 2010-05-14  Jakub Jelinek  <jakub@redhat.com>
25907
25908         PR debug/44136
25909         * cfgexpand.c (expand_debug_expr): If non-memory op0
25910         has BLKmode, return NULL.
25911
25912 2010-05-14  Harsha Jagasia  <harsha.jagasia@amd.com>
25913
25914         * config.gcc: Add support for --with-cpu option for bdver1.
25915         * config/i386/i386.h (TARGET_BDVER1): New macro.
25916         (ix86_tune_indices): Change SSE_UNALIGNED_MOVE_OPTIMAL
25917         to SSE_UNALIGNED_LOAD_OPTIMAL. Add SSE_UNALIGNED_STORE_OPTIMAL.
25918         (ix86_tune_features) :Change SSE_UNALIGNED_MOVE_OPTIMAL
25919         to SSE_UNALIGNED_LOAD_OPTIMAL. Add SSE_UNALIGNED_STORE_OPTIMAL.
25920         Add SSE_PACKED_SINGLE_INSN_OPTIMAL.
25921         (TARGET_CPU_DEFAULT_NAMES): Add bdver1.
25922         (processor_type): Add PROCESSOR_BDVER1.
25923         * config/i386/i386.md: Add bdver1 as a new cpu attribute to match
25924         processor_type in config/i386/i386.h.
25925         Add check for TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL to emit
25926         movaps <reg, reg> instead of movapd <reg, reg> when replacing
25927         movsd <reg, reg> or movss <reg, reg> for SSE and AVX.
25928         Add check for  TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL
25929         to emit packed xor instead of packed double/packed integer
25930         xor for SSE and AVX when moving a zero value.
25931         * config/i386/sse.md: Add check for
25932         TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL to emit movaps instead of
25933         movapd/movdqa for SSE and AVX.
25934         Add check for TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL to emit packed
25935         single logical operations i.e and, or and xor instead of packed double
25936         logical operations for SSE and AVX.
25937         * config/i386/i386-c.c (ix86_target_macros_internal):
25938         Add PROCESSOR_BDVER1.
25939         * config/i386/driver-i386.c: Turn on -mtune=native for BDVER1.
25940         (has_fma4, has_xop): New.
25941         * config/i386/i386.c (bdver1_cost): New variable.
25942         (m_BDVER1): New macro.
25943         (m_AMD_MULTIPLE): Add m_BDVER1.
25944         (x86_tune_use_leave, x86_tune_push_memory, x86_tune_unroll_strlen,
25945         x86_tune_deep_branch_prediction, x86_tune_use_sahf, x86_tune_movx,
25946         x86_tune_use_simode_fiop, x86_tune_promote_qimode,
25947         x86_tune_add_esp_8, x86_tune_tune_sub_esp_4, x86_tune_sub_esp_8,
25948         x86_tune_integer_dfmode_moves, x86_tune_partial_reg_dependency,
25949         x86_tune_sse_partial_reg_dependency,
25950         x86_tune_sse_unaligned_load_optimal,
25951         x86_tune_sse_unaligned_store_optimal, x86_tune_sse_typeless_stores,
25952         x86_tune_memory_mismatch_stall, x86_tune_use_ffreep,
25953         x86_tune_inter_unit_moves, x86_tune_inter_unit_conversions,
25954         x86_tune_use_bt, x86_tune_pad_returns, x86_tune_slow_imul_imm32_mem,
25955         x86_tune_slow_imul_imm8, x86_tune_fuse_cmp_and_branch):
25956         Enable/disable for bdver1.
25957         (processor_target_table): Add bdver1_cost.
25958         (cpu_names): Add bdver1.
25959         (override_options): Set up PROCESSOR_BDVER1 for bdver1 entry in
25960          processor_alias_table.
25961         (ix86_expand_vector_move_misalign): Change.
25962         TARGET_SSE_UNALIGNED_MOVE_OPTIMAL to TARGET_SSE_UNALIGNED_LOAD_OPTIMAL.
25963         Check for TARGET_SSE_UNALIGNED_STORE_OPTIMAL.
25964         Check for TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL to emit movups instead
25965         of movupd/movdqu for SSE and AVX.
25966         (ix86_tune_issue_rate): Add PROCESSOR_BDVER1.
25967         (ix86_tune_adjust_cost): Add code for bdver1.
25968         (standard_sse_constant_opcode): Add check for
25969         TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL to emit packed single xor instead
25970         of packed double xor for SSE and AVX.
25971
25972 2010-05-14  Pat Haugen  <pthaugen@us.ibm.com>
25973
25974         * tree-ssa-loop.prefetch.c (prune_ref_by_group_reuse): Cast abs()
25975         result to unsigned.
25976
25977 2010-05-14  Tristan Gingold  <gingold@adacore.com>
25978
25979         * toplev.c (default_debug_hooks): Remove this variable.
25980         (process_options): Remove assignments to default_debug_hooks.
25981
25982 2010-05-14  Martin Jambor  <mjambor@suse.cz>
25983
25984         * langhooks-def.h (LANG_HOOKS_FOLD_OBJ_TYPE_REF): Remove.
25985         (LANG_HOOKS_INITIALIZER): Remove LANG_HOOKS_FOLD_OBJ_TYPE_REF.
25986         * langhooks.h (struct lang_hooks_for_decls): Removed field
25987         fold_obj_type_ref.
25988         * tree.c (free_lang_data): Remove assignment to
25989         lang_hooks.fold_obj_type_ref.
25990         * tree.def (OBJ_TYPE_REF): Update comment.
25991
25992 2010-05-14  Richard Guenther  <rguenther@suse.de>
25993
25994         PR tree-optimization/44124
25995         * tree-ssa-sccvn.c (vn_nary_may_trap): Fix invalid memory access.
25996
25997 2010-05-14  Alan Modra  <amodra@gmail.com>
25998
25999         PR target/44075
26000         * config/rs6000/rs6000.c (struct machine_function): Reorder
26001         fields for better packing.  Add lr_save_state.
26002         (rs6000_ra_ever_killed): Return lr_save_state if set.
26003         (rs6000_emit_eh_reg_restore): Set lr_save_state.
26004
26005 2010-05-13  Jan Hubicka  <jh@suse.cz>
26006
26007         * varpool.c (decide_is_variable_needed): Drop code checking
26008         TREE_SYMBOL_REFERENCED.
26009
26010 2010-05-13  Jan Hubicka  <jh@suse.cz>
26011
26012         * final.c (output_addr_const): Do not call mark_decl_referenced.
26013         * cgraphunit.c (process_function_and_variable_attributes): Use
26014         mark_needed_node dirrectly.
26015         (assemble_thunk): Do not call mark_decl_referenced.
26016
26017 2010-05-13  Anatoly Sokolov  <aesok@post.ru>
26018
26019         * targhooks.c (default_mode_dependent_address_p): Cast 'addr' to rtx.
26020
26021 2010-05-13  Jeff Law  <law@redhat.com>
26022
26023         * ira-conflicts.c (print_allocno_conflicts): New function broken out
26024         from...
26025         (print_conflicts): Call print_allocno_conflicts.
26026
26027 2010-05-13  Jakub Jelinek  <jakub@redhat.com>
26028
26029         PR debug/44104
26030         * dwarf2out.c (modified_type_die): Don't dereference mod_type_die
26031         if it is NULL.
26032
26033 2010-05-13  Kai Tietz  <kai.tietz@onevision.com>
26034
26035         * config.gcc (i[34567]86-*-mingw* | x86_64-*-mingw*): Choose
26036         t-mingw-w64 or t-mingw-w32 for multilib configuration.
26037         * config/i386/t-mingw-w32: New.
26038         * config/i386/t-mingw-w64 (MULTILIB_OSDIRNAMES): Change lib64 to lib.
26039
26040 2010-05-13  Martin Jambor  <mjambor@suse.cz>
26041
26042         * gimple.c (gimple_fold_obj_type_ref): Removed (a replacement moved to
26043         gimple-fold.c).
26044         * gimple-fold.c (get_base_binfo_for_type): New function.
26045         (gimple_get_relevant_ref_binfo): Likewise.
26046         (gimple_fold_obj_type_ref_known_binfo): Likewise.
26047         (gimple_fold_obj_type_ref): Likewise.
26048         (fold_gimple_call): Simplify condition for folding virtual calls
26049         and call gimple_fold_obj_type_ref.
26050         * gimple.h (gimple_get_relevant_ref_binfo): Declare.
26051         (gimple_fold_obj_type_ref_known_binfo): Likewise.
26052
26053 2010-05-13  Andreas Schwab  <schwab@linux-m68k.org>
26054
26055         * config/rs6000/rs6000-protos.h
26056         (rs6000_mode_dependent_address_ptr): Change argument to const_rtx.
26057         * config/rs6000/rs6000.c (rs6000_mode_dependent_address)
26058         (rs6000_debug_mode_dependent_address)
26059         (rs6000_mode_dependent_address_ptr): Likewise.
26060
26061 2010-05-13  Jakub Jelinek  <jakub@redhat.com>
26062
26063         PR debug/43983
26064         * var-tracking.c (track_expr_p): Allow tracking of variables optimized
26065         by SRA.
26066         * Makefile.in (dwarf2out.o): Depend on $(TREE_FLOW_H).
26067         * tree-sra.c (create_access_replacement): Call unshare_expr before
26068         passing expr to SET_DECL_DEBUG_EXPR, and remove any SSA_NAMEs from it.
26069         * dwarf2out.c: Include tree-flow.h.
26070         (struct var_loc_node): Rename var_loc_note field to loc, add comment.
26071         (size_of_loc_descr, output_loc_operands, output_loc_operands_raw):
26072         Handle DW_OP_bit_piece.
26073         (decl_piece_bitsize, decl_piece_varloc_ptr, decl_piece_node,
26074         construct_piece_list, adjust_piece_list): New functions.
26075         (add_var_loc_to_decl): Handle SRA optimized variables.
26076         Adjust for var_loc_note to loc field renaming.
26077         (dw_loc_list_1): For WANT_ADDRESS == 2 prefer DECL_MODE of decl
26078         in VAR_LOCATION note.
26079         (new_loc_descr_op_bit_piece): New function.
26080         (dw_sra_loc_expr): New function.
26081         (dw_loc_list): Use it.  Don't handle the last range after the
26082         loop, handle it inside of the loop.  Adjust for var_loc_note
26083         to loc field renaming.
26084         (add_location_or_const_value_attribute): Only special case
26085         single entry loc lists if loc is NOTE_P.  Adjust for
26086         var_loc_note to loc field renaming.
26087         (dwarf2out_var_location): Don't set newloc->var_loc_note
26088         and newloc->next here.
26089
26090 2010-05-12  Jan Hubicka  <jh@suse.cz>
26091
26092         * cgraph.c (cgraph_mark_address_taken_node): No longer imply needed
26093         flag.
26094         * cgraph.h (cgraph_only_called_directly_p,
26095         cgraph_can_remove_if_no_direct_calls_p): test address_taken flag.
26096         (cgraph_can_remove_if_no_direct_calls_and_refs_p): New function.
26097         * cgraphunit.c (cgraph_mark_functions_to_output): Test address_taken.
26098         (assemble
26099         * ipa.c (cgraph_remove_unreachable_nodes): Use
26100         cgraph_can_remove_if_no_direct_calls_and_refs_p; clear address_taken
26101         flags.
26102         * tree-inline.c (copy_bb): Check address_taken flag.
26103         * tree-profile.c (tree_gen_ic_func_profiler): Check address_taken and
26104         externally_visible flag.
26105
26106 2010-05-12  Jason Merrill  <jason@redhat.com>
26107
26108         PR bootstrap/44048
26109         PR target/44099
26110         * dbxout.c (dbxout_type): Remove NULLPTR_TYPE handling.
26111         * sdbout.c (plain_type_1): Likewise.
26112         * dwarf2out.c (is_base_type): Likewise.
26113         (gen_type_die_with_usage): Likewise.  Generate
26114         DW_TAG_unspecified_type for any LANG_TYPE.
26115
26116 2010-05-12  Jan Hubicka  <jh@suse.cz>
26117
26118         * cgraphbuild.c (build_cgraph_edges, rebuild_cgraph_edges): Build
26119         indrect edges too.
26120         * cgraph.c (cgraph_create_indirect_edge): Take ecf_flags argument.
26121         (cgraph_clone_edge): Update.
26122         (cgraph_node_remove_callees): Remove indirect calls too.
26123         * cgraph.h (cgraph_indirect_call_info): Add ecf_flags.
26124         (cgraph_create_indirect_edge): Update prototype.
26125         * ipa-reference.c (has_proper_scope_for_analysis): Rename to
26126         is_proper_for_analysis.
26127         (add_new_function, visited_nodes, function_insertion_hook_holder,
26128         get_local_reference_vars_info, mark_address_taken, mark_address,
26129         mark_load, mark_store, check_asm_memory_clobber, check_call,
26130         scan_stmt_for_static_refs, scan_initializer_for_static_refs): Remove.
26131         (ipa_init): Do not initialize visited_nodes;
26132         function_insertion_hook_holder.
26133         (analyze_variable): Rewrite.
26134         (analyze_function): Rewrite.
26135         (copy_local_bitmap): Remove.
26136         (duplicate_node_dat): Do not duplicate local info.
26137         (generate_summary): Simplify to only walk cgraph.
26138         (write_node_summary_p, ipa_reference_write_summary,
26139         ipa_reference_read_summary): Remove.
26140         (propagate): Do not remove function insertion;
26141         generate summary.
26142         (pass_ipa_reference): NULLify summary handling fields.
26143         * lto-cgraph.c (lto_output_edge): Output ecf_flags.
26144         (input_edge): Input ecf_flags.
26145         * ipa-prop.c (ipa_note_parm_call): Expect edge to be around.
26146         (update_indirect_edges_after_inlining): Ignore edges with unknown
26147         param.
26148
26149 2010-05-12  Sriraman Tallam  <tmsriram@google.com>
26150
26151         * implicit-zee.c: New file.
26152         * tree-pass.h (pass_implicit_zee): Declare.
26153         * passes.c (init_optimization_passes): Add zee pass.
26154         * common.opt (fzee): New flag.
26155         * timevar.def (TV_ZEE): Define.
26156         * config/i386/i386.c (optimization_options): Turn on ZEE for level 2
26157         and beyond.
26158         * Makefile.in (implicit-zee.o): Add new build file.
26159
26160 2010-05-12  Kazu Hirata  <kazu@codesourcery.com>
26161             Nathan Froyd  <froydnj@codesourcery.com>
26162
26163         * c-common.c (sync_resolve_params): Remove write-only variable.
26164
26165 2010-05-12  Anatoly Sokolov  <aesok@post.ru>
26166
26167         * target.h (struct gcc_target): Add mode_dependent_address_p field.
26168         * target-def.h (TARGET_MODE_DEPENDENT_ADDRESS_P): New.
26169         (TARGET_INITIALIZER): Use TARGET_MODE_DEPENDENT_ADDRESS_P.
26170         * targhooks.c (default_mode_dependent_address_p): New function.
26171         * targhooks.h (default_mode_dependent_address_p): Declare function.
26172         * doc/tm.texi (TARGET_MODE_DEPENDENT_ADDRESS_P): New.
26173         (GO_IF_MODE_DEPENDENT_ADDRESS): Update.
26174         * recog.c (mode_dependent_address_p): Call mode_dependent_address_p
26175         target hook. Change return type to bool.
26176         * recog.h (mode_dependent_address_p): Change return type to bool.
26177
26178 2010-05-12  Kazu Hirata  <kazu@codesourcery.com>
26179             Nathan Froyd  <froydnj@codesourcery.com>
26180
26181         * tree-mudflap.c (build_function_type_0, build_function_type_1,
26182         build_function_type_2, build_function_type_3): Remove.
26183         (mudflap_init): Use build_function_type_list.
26184
26185 2010-05-12  Kazu Hirata  <kazu@codesourcery.com>
26186             Nathan Froyd  <froydnj@codesourcery.com>
26187
26188         * coverage.c (build_fn_info_value): Call build_constructor instead of
26189         build_constructor_from_list.
26190         (build_ctr_info_value): Likewise.
26191         (build_gcov_info): Likewise.
26192
26193 2010-05-12  Nathan Froyd  <froydnj@codesourcery.com>
26194
26195         * tree.c (build_constructor): Compute TREE_CONSTANT for the
26196         resultant constructor.
26197         (build_constructor_single): Don't set TREE_CONSTANT.
26198         (build_constructor_from_list): Don't compute TREE_CONSTANT.
26199
26200 2010-05-12  Jan Hubicka  <jh@suse.cz>
26201
26202         * cgraph.h (struct varpool_node): Add aux.
26203         * varasm.c (find_decl_and_mark_needed): Force output of varpool nodes.
26204         * varpool.c (varpool_remove_node): Do not remove initializer.
26205         (varpool_reset_queue): Export.
26206         (varpool_finalize_decl): Volatile vars are forced to be output.
26207         * lto-symtab.c (lto_varpool_replace_node): Clear out initializer of
26208         replaced decl.
26209         * ipa.c (enqueue_cgraph_node, enqueue_varpool_node,
26210         process_references, varpool_can_remove_if_no_refs): New functions.
26211         (cgraph_remove_unreachable_nodes): Handle variables too.
26212
26213 2010-05-12  H.J. Lu  <hongjiu.lu@intel.com>
26214
26215         PR target/44088
26216         * config/i386/sse.md (*avx_vmmaskcmp<mode>3): New.
26217
26218 2010-05-12  Jakub Jelinek  <jakub@redhat.com>
26219
26220         PR middle-end/44085
26221         * gimplify.c (enum omp_region_type): Add ORT_UNTIED_TASK,
26222         change value of ORT_TASK.
26223         (new_omp_context): Handle ORT_UNTIED_TASK like ORT_TASK.
26224         (omp_notice_threadprivate_variable): New function.
26225         (omp_notice_variable): Call it for threadprivate variables.
26226         If enclosing ctx is a task, print enclosing task rather than
26227         enclosing parallel.  Handle ORT_UNTIED_TASK like ORT_TASK.
26228         (gimplify_omp_task): Pass ORT_UNTIED_TASK instead of ORT_TASK
26229         if task has untied clause.
26230
26231         PR debug/42278
26232         * dwarf2out.c (base_type_die): Don't add name attribute here.
26233         (modified_type_die): Instead of sizetype use
26234         its underlying original type.  If a DW_TAG_base_type doesn't
26235         have name added, add __unknown__.
26236         (dwarf2out_imported_module_or_decl_1): Don't call base_type_die,
26237         always call force_type_die instead.
26238
26239 2010-05-12  Maxim Kuvyrkov  <maxim@codesourcery.com>
26240
26241         * targhooks.c (default_stack_protect_guard): Avoid sharing RTL
26242         for __stack_chk_guard.
26243
26244 2010-05-11  Jakub Jelinek  <jakub@redhat.com>
26245
26246         * c-opts.c (c_common_parse_file): If start_end_main_source_file,
26247         don't call start_source_file debug hook here...
26248         (finish_options): ... but here, after outputting predefined and
26249         command line defines and undefs.
26250
26251         PR middle-end/44071
26252         * cfglayout.c (fixup_reorder_chain): Allow asm goto to have
26253         no fallthru edge.
26254         * cfgcleanup.c (try_optimize_cfg): When in cfglayout mode
26255         optimizing away empty bb with no successors, move over its
26256         footer chain to fallthru predecessor.
26257         * cfgrtl.c (patch_jump_insn): Update also REG_LABEL_OPERAND.
26258         (rtl_split_edge): For asm goto call patch_jump_insn even if
26259         splitting fallthru edge.
26260
26261         PR c++/44059
26262         * config/elfos.h (ASM_DECLARE_OBJECT_NAME): Use qnu_unique_object
26263         even for DECL_ONE_ONLY DECL_ARTIFICIAL !TREE_READONLY decls.
26264         * config/alpha/elf.h (ASM_DECLARE_OBJECT_NAME): Likewise.
26265         * dwarf2asm.c (dw2_output_indirect_constant_1): Set TREE_READONLY
26266         on DW.ref.* decls.
26267
26268         PR c++/44062
26269         * c-parser.c (c_parser_expression): Mark LHS of a comma
26270         expression as read if it is a decl, handled component or
26271         COMPOUND_EXPR with that on the RHS.
26272         * c-typeck.c (c_process_expr_stmt): Mark RHS of COMPOUND_EXPR
26273         if it is a decl or handled component.
26274
26275 2010-05-11  Jan Hubicka  <jh@suse.cz>
26276
26277         * lto-symtab.c (lto_symtab_free): New function.
26278         * lto-streamer.h (lto_symtab_free): Declare.
26279
26280 2010-05-11  Jan Hubicka  <jh@suse.cz>
26281
26282         * lto-cgraph.c (reachable_from_other_partition_p): Export; do not assume
26283         that if function is needed it is reachable.
26284         (lto_output_node): See if it the function is reachable or referenced.
26285         (output_cgraph): Update call of lto_output_node.
26286         * lto-streamer.h (reachable_from_other_partition_p): Declare.
26287
26288 2010-05-11  Jan Hubicka  <jh@suse.cz>
26289
26290         * crtstuff.c (__JCR_LIST__, __DTOR_END__, __JCR_END__, __FRAME_END__):
26291         Mark as used.
26292
26293 2010-05-11  Jan Hubicka  <jh@suse.cz>
26294
26295         PR tree-optimize/44063
26296         * ipa-inline.c (cgraph_edge_badness): Move always inlines to top of
26297         queue.
26298         (cgraph_decide_inlining_of_small_function): Skip check when disrgarding
26299         limits.
26300         (estimate_function_body_sizes): Compute sizes even when disregarding.
26301
26302 2010-05-11  Kai Tietz  <kai.tietz@onevision.com>
26303
26304         * collect2.c (maybe_lto_object_file): Add x64-coff magic and check.
26305
26306 2010-05-11  Jan Hubicka  <jh@suse.cz>
26307
26308         * lto-cgraph.c (output_cgraph): Remove loop adding all varpool nodes
26309         into every boundary.
26310
26311 2010-05-11  Jan Hubicka  <jh@suse.cz>
26312
26313         * matrix-reorg.c (matrix_reorg): Rebuild edges.
26314
26315 2010-05-11  Jan Hubicka  <jh@suse.cz>
26316
26317         * lto-streamer.c (lto_streamer_cache_add_to_node_array,
26318         lto_streamer_cache_delete): Put nodes into heap.
26319         * lto-streamer.h (struct lto_streamer_cache_d): Nodes vector is in
26320         heap.
26321
26322 2010-05-11  Jan Hubicka  <jh@suse.cz>
26323
26324         * cgraphbuild.c (cgraph_rebuild_references): New.
26325         * cgraph.c (cgraph_mark_reachable_node): Accept references to optimized
26326         out extern inlines.
26327         * cgraph.h (cgraph_rebuild_references): Declare.
26328         * tree-inline.c (tree_function_versioning): Use it.
26329         * ipa-struct-reorg.c (do_reorg_for_func): Likewise.
26330
26331 2010-05-11  Jan Hubicka  <jh@suse.cz>
26332
26333         * cgraph.c: Include ipa-utils.h
26334         (cgraph_create_virtual_clone): Update references.
26335         * Makefile.in (cgraph.o): Add dependency at ipa-utils.h
26336
26337 2010-05-11  Christian Borntraeger  <borntraeger@de.ibm.com>
26338
26339         * tree-ssa-loop-prefetch.c (prune_ref_by_group_reuse): Reset
26340         prefetch_before to PREFETCH_ALL if to accesses "meet" beyond
26341         cache size.
26342
26343 2010-05-11  Christian Borntraeger  <borntraeger@de.ibm.com>
26344
26345         * tree-ssa-loop-prefetch.c: Add debug for dropped prefetches.
26346
26347 2010-05-11  Jakub Jelinek  <jakub@redhat.com>
26348
26349         * gcc.c (execute): For -### don't quote arguments that
26350         contain just alphanumerics and _/-. characters.
26351         * doc/invoke.texi: Document that change for -###.
26352
26353         PR debug/44023
26354         * df-problems.c (struct dead_debug): Add to_rescan field.
26355         (dead_debug_init): Clear to_rescan field.
26356         (dead_debug_finish): Rescan all debug insns in to_rescan
26357         bitmap and free the bitmap.
26358         (dead_debug_insert_before): Instead of rescanning debug insns
26359         immediately queue their rescanning until dead_debug_finish.
26360         (df_note_bb_compute): After dead_debug_add do continue instead
26361         of break.
26362
26363 2010-05-10  Jakub Jelinek  <jakub@redhat.com>
26364
26365         PR debug/44028
26366         * haifa-sched.c (schedule_insn): When clearing INSN_VAR_LOCATION_LOC,
26367         clear also INSN_REG_USE_LIST.
26368
26369 2010-05-10  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
26370
26371         * config/mips/mips.c (TARGET_SMALL_REGISTER_CLASSES_FOR_MODE_P): Undef.
26372
26373 2010-05-10  Jan Hubicka  <jh@suse.cz>
26374
26375         * lto-stramer-out.c (produce_asm_for_decls): Correct accidentally
26376         commited change.
26377
26378 2010-05-10  Jan Hubicka  <jh@suse.cz>
26379
26380         * passes.c (ipa_write_summaries_1, ipa_write_optimization_summaries):
26381         Allocate encoders.
26382         * lto-section-out.c (lto_new_out_decl_state): Do not allocate it here.
26383         * lto-streamer.c (lto_streamer_cache_insert_1): Use alloc pool.
26384         (lto_streamer_cache_create): Init alloc pool.
26385         (lto_streamer_cache_delete): Free alloc pool.
26386         * lto-streamer.h: Include alloc pool.
26387         (lto_streamer_cache_d): Use alloc pool.
26388         * lto-stramer-out.c (produce_asm_for_decls): Delete fn_out_states.
26389
26390 2010-05-10  Jan Hubicka  <jh@suse.cz>
26391
26392         * Makefile.in (cgraphbuild.o): Add dependency on except.h.
26393         * cgraphbuild.c: Include except.h
26394         (record_type_list, record_eh_tables): New function.
26395         (build_cgraph_edges, rebuild_cgraph_edges): Use it.
26396
26397 2010-05-10  Jan Hubicka  <jh@suse.cz>
26398
26399         * crtstuff.c (force_to_data, __do_global_dtors_aux_fini_array_entry,
26400         __frame_dummy_init_array_entry, force_to_data): Attribute as used
26401         rather than unused.
26402
26403 2010-05-10  Michael Matz  <matz@suse.de>
26404
26405         * tree-ssa-reassoc.c (undistribute_ops_list): Use create_tmp_reg.
26406         (can_reassociate_p): Use FLOAT_TYPE_P.
26407         * tree-vectorizer.h (vect_is_simple_reduction): Rename to ...
26408         (vect_force_simple_reduction): ... this.
26409         * tree-parloops.c (gather_scalar_reductions): Use
26410         vect_force_simple_reduction.
26411         * tree-vect-loop.c (vect_is_simple_reduction_1): Rename from
26412         vect_is_simple_reduction, add modify argument, if true rewrite
26413         "a-b" into "a+(-b)".
26414         (vect_is_simple_reduction, vect_force_simple_reduction): New
26415         functions.
26416         (vect_analyze_scalar_cycles_1): Use vect_force_simple_reduction.
26417
26418 2010-05-10  H.J. Lu  <hongjiu.lu@intel.com>
26419             Vladimir Makarov  <vmakarov@redhat.com>
26420
26421         PR rtl-optimization/44012
26422         * ira-build.c (remove_unnecessary_allocnos): Nullify
26423         regno_allocno_map of the removed allocno.
26424
26425 2010-05-10  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
26426
26427         * configure.ac (gcc_cv_ld_eh_gc_sections): Redirect objdump errors
26428         to /dev/null.
26429         * configure: Regenerate.
26430
26431 2010-05-10  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
26432
26433         * config/sol2.c (solaris_assemble_visibility): Declare decl, vis
26434         unused.
26435         Define visibility_types, name, type inside HAVE_GAS_HIDDEN.
26436         * configure.ac (gcc_cv_ld_hidden): Explain stages of visibility
26437         support in Sun ld.
26438         * configure: Regenerate.
26439
26440 2010-05-10  Richard Guenther  <rguenther@suse.de>
26441
26442         * lto-symtab.c (lto_symtab_entry_marked_p): Make entry
26443         marked if the entry identifier is marked.
26444
26445 2010-05-10  Richard Guenther  <rguenther@suse.de>
26446
26447         * c-common.c (struct c_common_attributes): Add fnspec attribute.
26448         (handle_fnspec_attribute): New function.
26449         * gimple.h (gimple_call_return_flags): Declare.
26450         (gimple_call_arg_flags): Likewise.
26451         * gimple.c (gimple_call_arg_flags): New function.
26452         (gimple_call_return_flags): Likewise.
26453         * tree.h (EAF_DIRECT, EAF_NOCLOBBER, EAF_NOESCAPE, EAF_UNUSED):
26454         New argument flags.
26455         (ERF_RETURN_ARG_MASK, ERF_RETURNS_ARG, ERF_NOALIAS): New function
26456         return value flags.
26457         * tree-ssa-alias.c (ref_maybe_used_by_call_p_1): Skip unused args.
26458         * tree-ssa-structalias.c (make_constraint_from_heapvar): Split
26459         main work to ...
26460         (make_heapvar_for): ... this new function.
26461         (handle_rhs_call): Handle fnspec attribute argument specifiers.
26462         (handle_lhs_call): Likewise.
26463         (find_func_aliases): Adjust.
26464
26465 2010-05-10  Richard Guenther  <rguenther@suse.de>
26466
26467         PR tree-optimization/44050
26468         * tree-inline.c (tree_function_versioning): Clone the ipa-pta flag.
26469
26470 2010-05-10  Wei Guozhi  <carrot@google.com>
26471
26472         PR target/42879
26473         * config/arm/thumb2.md (thumb2_tlobits_cbranch): New insn pattern.
26474
26475 2010-05-09  Joseph Myers  <joseph@codesourcery.com>
26476
26477         PR c/10676
26478         * c-typeck.c (lookup_field): Take a type directly.  Update
26479         recursive calls.
26480         (build_component_ref): Update call to lookup_field.
26481         (set_init_label): Use lookup_field to find initialized field.
26482         Handle returned list of fields like a sequence of designators.
26483
26484 2010-05-09  Richard Guenther  <rguenther@suse.de>
26485
26486         PR middle-end/44024
26487         * fold-const.c (tree_single_nonzero_warnv_p): Properly
26488         handle &FUNCTION_DECL.
26489
26490 2010-05-09  Joseph Myers  <joseph@codesourcery.com>
26491
26492         PR c/4784
26493         * c-decl.c (detect_field_duplicates_hash): New.  Handle anonymous
26494         structures and unions recursively.
26495         (detect_field_duplicates): Move duplicate detection with a hash to
26496         detect_field_duplicates_hash.  Always use a hash if anonymous
26497         structures or unions are present.
26498         * doc/extend.texi (Unnamed Fields): Document that duplicate fields
26499         give errors.
26500
26501 2010-05-09  H.J. Lu  <hongjiu.lu@intel.com>
26502
26503         PR target/44046
26504         * config/i386/driver-i386.c (host_detect_local_cpu): Properly
26505         detect Atom, Core 2 and Core i7.
26506
26507 2010-05-09  Richard Guenther  <rguenther@suse.de>
26508
26509         * gcc.c (store_arg): Handle temporary file deletion for
26510         joined arguments.
26511
26512 2010-05-09  Richard Guenther  <rguenther@suse.de>
26513
26514         PR middle-end/44043
26515         * ipa-inline.c (estimate_function_body_sizes): Return after
26516         disregarding inline limits.
26517
26518 2010-05-09  Richard Guenther  <rguenther@suse.de>
26519
26520         * gcc.c (store_arg): Revert last change.
26521
26522 2010-05-08  Sandra Loosemore  <sandra@codesourcery.com>
26523
26524         PR middle-end/28685
26525         * tree-ssa-reassoc.c (eliminate_redundant_comparison): New function.
26526         (optimize_ops_list): Call it.
26527
26528 2010-05-08  Richard Guenther  <rguenther@suse.de>
26529
26530         PR tree-optimization/44030
26531         * tree-ssa-pre.c (eliminate): Copy NECESSARY flag.  Set
26532         NECESSARY flag if we propagate from a inserted expression.
26533
26534 2010-05-08  Eric Botcazou  <ebotcazou@adacore.com>
26535
26536         * gimple.c (gimple_types_compatible_p) <ARRAY_TYPE>: Treat bounds of
26537         domain types as equal if they are both PLACEHOLDER_EXPRs.
26538
26539 2010-05-08  Richard Guenther  <rguenther@suse.de>
26540
26541         * lto-wrapper.c (run_gcc): Remove linker output from
26542         command line for LTRANS invocation.
26543
26544 2010-05-07  Steven Bosscher  <steven@gcc.gnu.org>
26545
26546         * config.gcc (i[34567]86-*-darwin*, x86_64-*-darwin*): Add
26547         lto-macho as lto_binary_reader.
26548         * target.h (struct gcc_target): New hooks lto_start and lto_end.
26549         * target-def.h (TARGET_ASM_LTO_START, TARGET_ASM_LTO_END): Define.
26550         * cgraphunit.c (ipa_passes): Wrap LTO assembler output generation
26551         in lto_start and lto_end calls.
26552         (is_elf_or_coff): Rename to maybe_lto_object_file.  Add Mach-O
26553         magic numbers.
26554         (scan_prog_file): Update is_elf_or_coff call.
26555         * doc/tm.text (TARGET_ASM_LTO_START, TARGET_ASM_LTO_END): Document.
26556
26557         * collect2.c (main): Fix enum comparison.
26558
26559         * config/darwin-protos.h (darwin_asm_lto_start, darwin_asm_lto_end):
26560         Add prototypes.
26561         * darwin9.h (LINK_COMMAND_SPEC): Pass -flto and -fwhopr to the linker.
26562         * darwin.h (LINK_COMMAND_SPEC): Likewise.  Define TARGET_ASM_LTO_START
26563         and TARGET_ASM_LTO_END.
26564         * darwin.c: Include obstack.h and lto-streamer.h.
26565         (lto_section_names_offset, lto_section_names_obstack,
26566         lto_asm_out_file, lto_asm_out_name, saved_asm_out_file): New static
26567         global variables.
26568         (LTO_SEGMENT_NAME, LTO_NAMES_SECTION): New defines.
26569         (darwin_asm_lto_start): New function.  Redirect output to asm_out_file
26570         to a temporary file.
26571         (darwin_asm_lto_end): New function.  Restore asm_out_file.
26572         (darwin_asm_named_section): For LTO sections, replace the name with
26573         the offset of the section name in a string table, and build this
26574         table.
26575         (darwin_file_start): Initialize global vars for LTO support.
26576         (darwin_file_end): If output to asm_out_file was redirected, append it
26577         to the proper asm_out_file here.  Add the section names section.
26578
26579 2010-05-07  Steven Bosscher  <steven@gcc.gnu.org>
26580
26581         * c-pragma.c (pending_weak_d, pending_weak): New.
26582         (pending_weaks): Change the type to VEC((pending_weak,gc) *.
26583         (maybe_apply_pragma_weak, maybe_apply_pending_pragma_weaks,
26584         handle_pragma_weak): Update the uses of pending_weaks.
26585
26586 2010-05-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26587
26588         PR documentation/44016
26589         * doc/standards.texi (Standards): Link to unversioned
26590         cxx0x_status.html page.
26591
26592 2010-05-07  Iain Sandoe  <iains@gcc.gnu.org>
26593
26594         PR target/43708
26595         * config/darwin-c.c (darwin_pragma_unused): Set DECL_READ_P
26596         in addition to TREE_USED, to avoid "set but unused" warnings.
26597
26598 2010-05-07  Changpeng Fang  <changpeng.fang@amd.com>
26599
26600         * tree-ssa-loop-prefetch.c (TRIP_COUNT_TO_AHEAD_RATIO): New.
26601         (is_loop_prefetching_profitable): Do not insert prefetches
26602         when the trip count is not at least TRIP_COUNT_TO_AHEAD_RATIO
26603         times the prefetch ahead distance.
26604
26605 2010-05-07  Changpeng Fang  <changpeng.fang@amd.com>
26606
26607         * tree-ssa-loop-prefetch.c (is_loop_prefetching_profitable):
26608         Account for loop unrolling in the insn-to-prefetch ratio heuristic.
26609         (loop_prefetch_arrays): Pass to is_loop_prefetching_profitable
26610         the unroll_factor.
26611
26612 2010-05-07  Changpeng Fang  <changpeng.fang@amd.com>
26613
26614         * tree-ssa-loop-prefetch.c (is_loop_prefetching_profitable): Dump
26615         a diagnostic info when the insn-to-mem ratio is too small.
26616
26617 2010-05-07  Richard Guenther  <rguenther@suse.de>
26618
26619         * gcc.c (LINK_COMMAND_SPEC): Provide a resolution file to
26620         the linker plugin.
26621         (store_arg): Queue temp_filename for deletion instead of
26622         the whole argument.
26623
26624 2010-05-07  Richard Guenther  <rguenther@suse.de>
26625
26626         * lto-wrapper.c (DUMPBASE_SUFFIX): Define.
26627         (run_gcc): Handle LTRANS phase invocation.
26628         * collect2.c (maybe_run_lto_and_relink): Do not set WPA_SAVE_LTRANS.
26629
26630 2010-05-07  Jakub Jelinek  <jakub@redhat.com>
26631
26632         * tree.h (TREE_ADDRESSABLE): Adjust comment to say that
26633         this is also meaningful on PARM_DECLs and RESULT_DECLs.
26634
26635 2010-05-07  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
26636
26637         * config/mips/iris6.h (LINK_SPEC): Don't pass -init, -fini with -r.
26638
26639 2010-05-07  Richard Guenther  <rguenther@suse.de>
26640
26641         PR tree-optimization/44020
26642         * tree-ssa-pre.c (execute_pre): Do not remove dead inserted
26643         code when PRE is not yet initialized.
26644
26645 2010-05-07  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
26646
26647         * config/mips/dbxmdebug.h: Remove.
26648         * config.gcc (mips-sgi-irix6.5*): Remove mips/dbxmdebug.h.
26649
26650 2010-05-07  Shujing Zhao  <pearly.zhao@oracle.com>
26651
26652         * c-typeck.c (build_binary_op): Warn ordered comparison of pointer
26653         with null pointer and also warn about ordered comparison of zero with
26654         pointer if -Wextra.
26655
26656 2010-05-05  Andreas Simbuerger  <simbuerg@fim.uni-passau.de>
26657
26658         * graphite-blocking.c
26659         (pbb_strip_mine_profitable_p): Replace Value with mpz_t.
26660         * graphite-clast-to-gimple.c
26661         (clast_to_gcc_expression): Same.
26662         (precision_for_value): Same.
26663         (precision_for_interval): Same.
26664         (gcc_type_for_interval): Same.
26665         (graphite_create_new_guard): Same.
26666         (compute_bounds_for_level): Same.
26667         (graphite_create_new_loop_guard): Same.
26668         * graphite-interchange.c
26669         (build_linearized_memory_access): Same.
26670         (pdr_stride_in_loop): Same.
26671         (memory_strides_in_loop_1): Same.
26672         (memory_strides_in_loop): Same.
26673         (extend_scattering): Same.
26674         (psct_scattering_dim_for_loop_depth): Same.
26675         (pbb_number_of_iterations): Same.
26676         * graphite-poly.h
26677         (debug_iteration_domains): Same.
26678         * graphite-ppl.c
26679         (new_Cloog_Domain_from_ppl_Pointset_Powerset): Same.
26680         (ppl_set_inhomogeneous_gmp): Same.
26681         (ppl_strip_loop): Same.
26682         (ppl_lexico_compare_linear_expressions): Same.
26683         (ppl_read_polyhedron_matrix): Same.
26684         (ppl_max_for_le_pointset): Same.
26685         * graphite-ppl.h
26686         (ppl_read_polyhedron_matrix): Same.
26687         (tree_int_to_gmp): Same.
26688         (gmp_cst_to_tree): Same.
26689         (ppl_set_inhomogeneous): Same.
26690         (ppl_set_inhomogeneous_tree): Same.
26691         (ppl_set_coef): Same.
26692         (ppl_set_coef_tree): Same.
26693         * graphite-sese-to-poly.c
26694         (build_pbb_scattering_polyhedrons): Same.
26695         (build_scop_scattering): Same.
26696         (scan_tree_for_params_right_scev): Same.
26697         (scan_tree_for_params): Same.
26698         (find_params_in_bb): Same.
26699         (find_scop_parameters): Same.
26700         (add_upper_bounds_from_estimated_nit): Same.
26701         (build_loop_iteration_domains): Same.
26702         (add_condition_to_domain): Same.
26703         (pdr_add_memory_accesses): Same.
26704
26705 2010-05-05  Andreas Simbuerger  <simbuerg@fim.uni-passau.de>
26706
26707         * graphite-blocking.c (pbb_strip_mine_profitable_p): Resolve
26708         CLooG's value_* macros to their respective mpz_* counterparts.
26709         * graphite-clast-to-gimple.c (clast_to_gcc_expression): Same.
26710         (graphite_create_new_loop_guard): Same.
26711         * graphite-interchange.c (build_linearized_memory_access): Same.
26712         (pdr_stride_in_loop): Same.
26713         (memory_strides_in_loop_1): Same.
26714         (1st_interchange_profitable_p): Same.
26715         * graphite-poly.c (extend_scattering): Same.
26716         (psct_scattering_dim_for_loop_depth): Same.
26717         (pbb_number_of_iterations): Same.
26718         (pbb_number_of_iterations_at_time): Same.
26719         * graphite-poly.h (new_1st_loop): Same.
26720         * graphite-ppl.c (cloog_matrix_to_ppl_constraint): Same.
26721         (oppose_constraint): Same.
26722         (insert_constraint_into_matrix): Same.
26723         (ppl_set_inhomogeneous_gmp): Same.
26724         (ppl_set_coef_gmp): Same.
26725         (ppl_strip_loop): Same.
26726         (ppl_lexico_compare_linear_expressions): Same.
26727         (ppl_max_for_le_pointset): Same.
26728         (ppl_min_for_le_pointset): Same.
26729         (ppl_build_realtion): Same.
26730         * graphite-ppl.h (gmp_cst_to_tree): Same.
26731         (ppl_set_inhomogeneous): Same.
26732         (ppl_set_inhomogeneous_tree): Same.
26733         (ppl_set_coef): Same.
26734         (ppl_set_coef_tree): Same.
26735         * graphite-sese-to-poly.c (build_pbb_scattering_polyhedrons): Same.
26736         (build_scop_scattering): Same.
26737         (add_value_to_dim): Same.
26738         (scan_tree_for_params_right_scev): Same.
26739         (scan_tree_for_params_int): Same.
26740         (scan_tree_for_params): Same.
26741         (find_params_in_bb): Same.
26742         (find_scop_parameters): Same.
26743         (add_upper_bounds_from_estimated_nit): Same.
26744         (build_loop_iteration_domains): Same.
26745         (create_linear_expr_from_tree): Same.
26746         (add_condition_to_domain): Same.
26747         (pdr_add_memory_accesses): Same.
26748
26749 2010-05-06  Magnus Fromreide  <magfr@lysator.liu.se>
26750             Jason Merrill  <jason@redhat.com>
26751
26752         * c-common.c (c_common_reswords): Add nullptr.
26753         * c-common.h: Add RID_NULLPTR.  Reorganize C++0x rids.
26754         * dwarf2out.c (is_base_type): Handle NULLPTR_TYPE.
26755         (gen_type_die_with_usage): Likewise.
26756         * dbxout.c (dbxout_type): Likewise.
26757         * sdbout.c (plain_type_1): Likewise.
26758
26759 2010-05-06  Jason Merrill  <jason@redhat.com>
26760
26761         * gimplify.c (gimplify_expr): Set GS_ALL_DONE when appropriate.
26762         Don't change GS_OK to GS_ALL_DONE.  Make sure that all cases set
26763         ret appropriately.
26764         (gimplify_compound_lval): Return GS_ALL_DONE as appropriate.
26765
26766         * gimplify.c (gimplify_modify_expr_rhs): Don't return GS_OK for
26767         stripping WITH_SIZE_EXPR.
26768         (gimplify_expr) [MODIFY_EXPR]: Trust GS_OK even if the rhs didn't
26769         change.
26770
26771 2010-05-06  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
26772
26773         * config.gcc: Removed mips-sgi-irix5*, mips-sgi-irix6.[0-4]* from
26774         list of obsolete configurations.
26775         Disabled check for obsolete configurations.
26776         (mips-sgi-irix[56]*): Restrict to mips-sgi-irix6.5*.
26777         Removed support for previous versions.
26778         * config/mips/iris.h: Removed.
26779         * config/mips/iris5.h: Removed.
26780         * config/mips/iris6.h: Merged old iris.h contents.
26781         (TARGET_IRIX): Removed.
26782         (DRIVER_SELF_SPECS): Removed mabi=32.
26783         (IDENT_ASM_OP): Removed undef.
26784         (STARTFILE_SPEC): Removed mabi=32.
26785         (ENDFILE_SPEC): Likewise.
26786         (IRIX_SUBTARGET_LINK_SPEC): Likewise.
26787         (MACHINE_TYPE): Update for IRIX 6.5.
26788         * config/mips/mips.c (mips_build_builtin_va_list): Replaced
26789         TARGET_IRIX by TARGET_IRIX6.
26790         (mips_file_start): Likewise.
26791         (mips_output_external): Remove IRIX 5/6 O32 support.
26792         (mips_output_function_prologue): Likewise.
26793         * config/mips/mips.h (TARGET_GPWORD): Replaced TARGET_IRIX by
26794         TARGET_IRIX6.
26795         (TARGET_CPU_CPP_BUILTINS): Likewise.
26796         (TARGET_IRIX): Removed.
26797         * config/mips/t-iris6 (MULTILIB_OPTIONS): Removed mabi=32.
26798         (MULTILIB_DIRNAMES): Removed 32.
26799         (MULTILIB_OSDIRNAMES): Removed ../lib.
26800         * doc/install.texi (Prerequisites): Don't reference IRIX before 6.5.
26801         (Specific, mips-sgi-irix5): Document removal.
26802         (Specific, mips-sgi-irix6): Document IRIX 6.[0-4] and O32 ABI removal.
26803         Remove references to older IRIX 6 releases and the O32 ABI.
26804
26805 2010-05-06  Jakub Jelinek  <jakub@redhat.com>
26806
26807         PR bootstrap/43994
26808         * df-problems.c (dead_debug_insert_before): Use *DF_REF_REAL_LOC
26809         instead of DF_REF_REAL_REG.
26810
26811 2010-05-06  Dave Korn  <dave.korn.cygwin@gmail.com>
26812
26813         PR target/43888
26814         * config/i386/winnt.c (i386_pe_binds_local_p): Tweak weak symbol
26815         handling to still return true for x64 targets.
26816
26817 2010-05-06  Maxim Kuvyrkov  <maxim@codesourcery.com>
26818
26819         * config/m68k/uclinux.h (LIB_SPEC): Bring in sync with config/linux.h.
26820
26821 2010-05-06  Jan Hubicka  <jh@suse.cz>
26822
26823         PR tree-optimization/43791
26824         * ipa-inline.c (update_caller_keys): Remove bogus
26825         disregard_inline_limits check.
26826
26827 2010-05-06  Michael Matz  <matz@suse.de>
26828
26829         PR tree-optimization/43984
26830         * tree-ssa-pre.c (inserted_phi_names): Remove.
26831         (inserted_exprs): Change to bitmap.
26832         (create_expression_by_pieces): Set bits, don't append to vector.
26833         (insert_into_preds_of_block): Don't handle inserted_phi_names.
26834         (eliminate): Don't look at inserted_phi_names, remove deleted
26835         insns from inserted_exprs.
26836         (remove_dead_inserted_code): Adjust to use bitmaps instead of vectors.
26837         (init_pre, fini_pre): Allocate and free bitmaps.
26838         (execute_pre): Insert insns on edges before elimination.
26839
26840 2010-05-06  Maxim Kuvyrkov  <maxim@codesourcery.com>
26841
26842         * tree.c (initializer_zerop): Handle STRING_CST.
26843
26844 2010-05-06  Manuel López-Ibáñez  <manu@gcc.gnu.org>
26845
26846         PR 40989
26847         * doc/invoke.texi (Wimplicit): Document as C only.
26848         * opts.c (common_handle_option): Add argument kind.
26849         (handle_option): Rename as read_cmdline_option. Factor out code to...
26850         (handle_option): ... here. New.
26851         (handle_options): Rename as read_cmdline_options.
26852         (decode_options): Update call.
26853         (set_option): Use option index instead of option pointer. Classify
26854         diagnostics correctly.
26855         (enable_warning_as_error): Call handle_option.
26856         * opts.h (set_option): Update declaration.
26857         (handle_option): Declare.
26858         * langhooks.h (struct lang_hooks): Add argument kind to handle_option.
26859         * c.opt (Wimplicit,Wimplicit-int): Initialize to -1.
26860         * c-opts.c (set_Wimplicit): Delete.
26861         (c_family_lang_mask): New static constant.
26862         (c_common_handle_option): Add argument kind. Use handle_option
26863         instead of set_Wimplicit.
26864         (c_common_post_options): warn_implicit and warn_implicit_int
26865         are disabled by default.
26866         * c-common.c (warn_implicit): Do not define here.
26867         * c-common.h (warn_implicit): Do not declare here.
26868         (c_common_handle_option): Update declaration.
26869         * lto-opts.c (lto_reissue_options): Update call to set_option.
26870
26871 2010-05-06  Richard Guenther  <rguenther@suse.de>
26872
26873         PR tree-optimization/43571
26874         * domwalk.c (walk_dominator_tree): Walk the dominator
26875         sons in more optimal order.
26876
26877 2010-05-06  Richard Guenther  <rguenther@suse.de>
26878
26879         PR tree-optimization/43934
26880         * tree-ssa-loop-im.c (movement_possibility): Handle PHI nodes.
26881         (stmt_cost): Likewise.
26882         (extract_true_false_args_from_phi): New helper.
26883         (determine_max_movement): For PHI nodes verify we can hoist them
26884         and compute their cost.
26885         (determine_invariantness_stmt): Handle PHI nodes.
26886         (move_computations_stmt): Likewise.  Hoist PHI nodes in
26887         if-converted form using COND_EXPRs.
26888         (move_computations): Return TODO_cleanup_cfg if we hoisted PHI nodes.
26889         (tree_ssa_lim): Likewise.
26890         * tree-flow.h (tree_ssa_lim): Adjust prototype.
26891         * tree-ssa-loop.c (tree_ssa_loop_im): Return todo.
26892
26893 2010-05-06  Richard Guenther  <rguenther@suse.de>
26894
26895         PR tree-optimization/43987
26896         * tree-ssa-structalias.c (could_have_pointers): For possibly
26897         address-taken variables force pointers to be recorded.
26898         (create_variable_info_for_1): Likewise.
26899         (push_fields_onto_fieldstack): Pass in wheter all fields
26900         must have pointers.
26901         (find_func_aliases): Query types instead of vars whether
26902         they contain pointers where appropriate.
26903
26904 2010-05-06  Jan Hubicka  <jh@suse.cz>
26905
26906         * cgraphbuild.c (record_reference_ctx): Add varpool_node.
26907         (record_reference, mark_address, mark_load, mark_store): Record
26908         references.
26909         (record_references_in_initializer): Update call of record_references.
26910         (rebuild_cgraph_edges): Remove all references before rebuiding.
26911         * cgraph.c (cgraph_create_node): Clear ref list.
26912         (cgraph_remove_node): Remove references.
26913         (dump_cgraph_node): Dump references.
26914         (cgraph_clone_node): Clone references.
26915         * cgraph.h: Include ipa-ref.h and ipa-ref-inline.h
26916         (struct cgraph_node, varpool_node): Add ref_lst.
26917         * ipa-ref.c: New file.
26918         * ipa-ref.h: New file.
26919         * ipa-ref-inline.h: New file.
26920         * lto-cgraph.c (output_varpool): Take cgrag node set argument.
26921         (referenced_from_other_partition_p): New function.
26922         (lto_output_varpool_node): Take set arugment; call
26923         referenced_from_other_partition.
26924         (lto_output_ref): New.
26925         (add_references): New.
26926         (output_refs): New.
26927         (output_cgraph): Compute boundary based on references; output refs.
26928         (output_varpool): Accept cgraph_node_set argument.
26929         (input_ref): New.
26930         (input_refs): New.
26931         (input_cgraph): Call input_refs.
26932         * lto-section-in.c (lto_section_name): Add refs.
26933         * Makefile.in (cgraph.h): Include ipa-ref.h and ipa-ref-inline.h
26934         (ipa-ref.o): New file.
26935         * varpool.c (varpool_node): Clear ipa ref list.
26936         (varpool_remove_node): Remove references.
26937         (dump_varpool_node): Dump references.
26938         (varpool_assemble_decl): Only compile finalized ones.
26939         (varpool_extra_name_alias): Initialize ref list.
26940         * lto-streamer.c (lto-get_section_name): Add .refs section.
26941         * lto-streamer.h (lto_section_type): Add LTO_section_refs.
26942         (referenced_from_other_partition_p): Declared.
26943
26944 2010-05-06  Ira Rosen  <irar@il.ibm.com>
26945
26946         PR tree-optimization/43901
26947         * tree-vect-stmts.c (vectorizable_call): Assert that vector
26948         type is not NULL if it's transformation phase, and return
26949         FALSE if it's analysis.
26950         (vectorizable_conversion, vectorizable_operation,
26951         vectorizable_type_demotion, vectorizable_type_promotion): Likewise.
26952
26953 2010-05-05  Andrew Pinski  <andrew.pinski@caviumnetworks.com>
26954
26955         * config/mips/mips.h (TARGET_SMALL_REGISTER_CLASSES_FOR_MODE_P):
26956         Delete.
26957         * config/mips/mips.c (TARGET_SMALL_REGISTER_CLASSES_FOR_MODE_P):
26958         New define.
26959         * config/mips/mips-protos.h
26960         (mips_small_register_classes_for_mode_p): Delete prototype.
26961
26962 2010-05-06  Bernd Schmidt  <bernds@codesourcery.com>
26963
26964         * config/arm/arm.h (MAX_LDM_STM_OPS): New macro.
26965         * config/arm/arm.c (multiple_operation_profitable_p,
26966         compute_offset_order): New static functions.
26967         (load_multiple_sequence, store_multiple_sequence): Use them.
26968         Replace constant 4 with MAX_LDM_STM_OPS.  Compute order[0] from
26969         memory offsets, not register numbers.
26970         (emit_ldm_seq, emit_stm_seq): Replace constant 4 with MAX_LDM_STM_OPS.
26971
26972 2010-05-05  Steven Bosscher  <steven@gcc.gnu.org>
26973
26974         * stor-layout.c (pending_sizes): Change the type to VEC(tree,gc) *.
26975         (get_pending_sizes, put_pending_size, put_pending_sizes):
26976         Update the uses of pending_sizes.
26977         * c-decl.c (store_parm_decls): Likewise.
26978         * c-tree.h (struct c_arg_info): Likewise.
26979         * tree.h: Update the prototype for get_pending_sizes and
26980         put_pending_sizes.
26981
26982 2010-05-05  Jason Merrill  <jason@redhat.com>
26983
26984         PR debug/43370
26985         * c-common.c (handle_aligned_attribute): Respect
26986         ATTR_FLAG_TYPE_IN_PLACE.
26987
26988         PR testsuite/43758
26989         * target.h (struct gcc_target): Add attribute_takes_identifier_p.
26990         * target_def.h (TARGET_ATTRIBUTE_TAKES_IDENTIFIER_P): Define.
26991         (TARGET_INITIALIZER): Use it.
26992         * c-common.c (attribute_takes_identifier_p): Call it.
26993         * c-common.h: Update prototype.
26994         * config/rs6000/rs6000.c (rs6000_attribute_takes_identifier_p): New.
26995         (TARGET_ATTRIBUTE_TAKES_IDENTIFIER_P): Define.
26996
26997 2010-05-05  Jakub Jelinek  <jakub@redhat.com>
26998
26999         PR debug/43950
27000         * dwarf2out.c (gen_compile_unit_die): Add DW_AT_identifier_case
27001         DW_ID_down_case for Fortran compilation units.
27002
27003 2010-05-05  Jan Hubicka  <jh@suse.cz>
27004
27005         * lto-cgraph.c (lto_output_varpool_node, input_varpool_node): Correctly
27006         handle aliases.
27007
27008 2010-05-05  Eric Botcazou  <ebotcazou@adacore.com>
27009
27010         * gimplify.c (gimplify_return_expr): Gimplify the size expressions of
27011         a variable-sized RESULT_DECL.
27012
27013 2010-05-05  Maxim Kuvyrkov  <maxim@codesourcery.com>
27014
27015         * doc/invoke.texi (-mfix-cortex-m3-ldrd): Move from ARC section to ARM.
27016
27017 2010-05-05  Jason Merrill  <jason@redhat.com>
27018
27019         PR c++/43787
27020         * gimplify.c (gimplify_expr): Keep working if gimplify_modify_expr
27021         returns GS_OK.
27022         (gimplify_modify_expr_rhs): Return GS_OK if anything changed.
27023
27024 2010-05-05  Alexandre Oliva  <aoliva@redhat.com>
27025             Jakub Jelinek  <jakub@redhat.com>
27026
27027         PR debug/43478
27028         * df-problems.c (struct dead_debug_use, struct dead_debug): New.
27029         (dead_debug_init, dead_debug_finish): New functions.
27030         (dead_debug_add, dead_debug_insert_before): Likewise.
27031         (df_note_bb_compute): Initialize a dead_debug object, add dead
27032         debug uses to it, insert debug bind insns before death insns,
27033         reset debug insns that refer to pending uses at the end.
27034         * rtl.h (make_debug_expr_from_rtl): New prototype.
27035         * varasm.c (make_debug_expr_from_rtl): New function.
27036
27037 2010-05-05  Jan Hubicka  <jh@suse.cz>
27038
27039         * lto-cgraph.c (output_varpool): Forward declare; work on encoder.
27040         (lto_varpool_encoder_new, lto_varpool_encoder_delete,
27041         lto_varpool_encoder_encode, lto_varpool_encoder_lookup,
27042         lto_varpool_encoder_deref, lto_varpool_encoder_size,
27043         lto_varpool_encoder_encode_initializer_p,
27044         lto_set_varpool_encoder_encode_initializer): New functions.
27045         (lto_output_cgraph): Take vset parameter too; compute varpool encoder;
27046         call output_varpool.
27047         (input_varpool_node): Do not always set analyzed.
27048         (input_cgraph_1): Return vector of cgraph nodes.
27049         (input_varpool_1): Return vector of varpools.
27050         (input_cgraph): Free the vectors.
27051         * lto-streamer-out.c (lto_output_ts_decl_common_tree_pointers):
27052         output only initializers needed.
27053         (lto_output): Only call output_cgraph.
27054         (produce_asm_for_decls): Call lto_varpool_encoder_delete.
27055         * lto-section-out.c (lto_new_out_decl_state): Initialize
27056         state->varpool_node_encoder.
27057         * lto-streamer.h (lto_varpool_encoder_d): New.
27058         (lto_out_decl_state, lto_file_decl_data): Add varpool_node_encoder.
27059         (lto_cgraph_encoder_delete, output_cgraph): Update prototype.
27060         (lto_varpool_encoder_deref, lto_varpool_encoder_lookup,
27061         lto_varpool_encoder_encode, lto_varpool_encoder_delete,
27062         lto_varpool_encoder_encode_initializer_p, lto_varpool_encoder_new):
27063         Declare.
27064         (output_varpool, input_varpool): Remove declarations.
27065
27066 2010-05-05  Jan Hubicka  <jh@suse.cz>
27067
27068         * lto-symtab.c (lto_symtab_resolve_can_prevail_p): Alias of variable
27069         with body can prevail.
27070
27071 2010-05-05  Jan Hubicka  <jh@suse.cz>
27072
27073         * lto-symtab.c (lto_symtab_merge_decls_1): Prefer declarations with
27074         size.
27075
27076 2010-05-05  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
27077
27078         * Makefile.in (build/gengtype.o): Add $(HASHTAB_H) to dependencies.
27079
27080         * gengtype.h (erro_at_line): Constify pos argument.
27081
27082         * gengtype.c: Include hashtab.h.
27083         (enum gc_used): Document GC_MAYBE_POINTED_TO.
27084         (error_at_line): Constify pos argument.
27085         (do_typedef): Initialize p->opt field.
27086         (get_file_gtfilename): Fix comment typo.
27087         (struct walk_type_data): Constify line field.
27088         (get_output_file_for_structure): New function.
27089         (write_local_func_for_structure): Constify orig_s argument.
27090         Use get_output_file_for_structure.
27091         (write_func_for_structure): Use get_output_file_for_structure.
27092         (INDENT): New define.
27093         (dump_pair, dump_type, dump_type_list, dump_typekind)
27094         (dump_gc_used, dump_options, dump_fileloc, dump_type_u_s)
27095         (dump_type_u_a, dump_type_u_param_struct, dump_everything): New
27096         functions.
27097         (seen_types): New variable.
27098         (main): New variable do_dump.  Process "-d" command line option.
27099         Call dump_everything if dump requested.
27100
27101 2010-05-05  Jakub Jelinek  <jakub@redhat.com>
27102
27103         * var-tracking.c (var_debug_decl): Save DECL_DEBUG_EXPR value
27104         in a temporary instead of invoking the macro multiple times.
27105         (track_expr_p): Likewise.
27106
27107 2010-05-04  Neil Vachharajani  <nvachhar@google.com>
27108
27109         * doc/invoke.texi (-Wcoverage-mismatch): Updated documentation as
27110         per new semantics.
27111         * opts.c (decode_options): Enable -Werror=coverage-mismatch.
27112         * coverage.c (get_coverage_counts): Always emit a warning.  Adjust
27113         conditions for printing notes.
27114         * common.opt (-Wcoverage-mismatch): Allow negative, default to
27115         true, update documentation.
27116         * Makefile.in (coverage.o): Add dependence on DIAGNOSTIC_H and intl.h.
27117
27118 2010-05-04  Jakub Jelinek  <jakub@redhat.com>
27119
27120         PR c/43981
27121         * c-parser.c (c_parser_direct_declarator_inner): Call mark_exp_read
27122         on dimen.
27123
27124 2010-05-04  H.J. Lu  <hongjiu.lu@intel.com>
27125
27126         PR target/43799
27127         * config/i386/i386.md (sse_prologue_save): Clobber CC register.
27128         (*sse_prologue_save_insn1): Likewise.
27129         (SSE prologue save splitter): Likewise.
27130
27131 2010-05-04  Eric Botcazou  <ebotcazou@adacore.com>
27132
27133         * tree.c (free_lang_data_in_one_sizepos): New inline function.
27134         (free_lang_data_in_type): Call it on TYPE_{MIN|MAX}_VALUE of numerical
27135         types.  Call it on TYPE_SIZE and TYPE_SIZE_UNIT of all types.
27136         (free_lang_data_in_decl): Call it on DECL_SIZE and DECL_SIZE_UNIT of
27137         all decls.  Call it on DECL_FIELD_OFFSET of fields.
27138         (find_decls_types_r): Follow DECL_VALUE_EXPR.
27139         (iterative_hash_expr) <PLACEHOLDER_EXPR>: New case.
27140
27141 2010-05-04  Martin Jambor  <mjambor@suse.cz>
27142
27143         * tree-sra.c (build_access_from_expr_1): The first parameter type
27144         changed to simple tree.
27145         (build_access_from_expr): Likewise, gsi parameter was eliminated.
27146         (scan_assign_result): Renamed to assignment_mod_result, enum elements
27147         renamed as well.
27148         (build_accesses_from_assign): Removed all parameters except for a
27149         simple gimple statement.  Now returns a simple bool.
27150         (scan_function): All non-analysis parts moved to separate functions
27151         sra_modify_function_body and ipa_sra_modify_function_body.  Removed all
27152         parameters and updated both callers.
27153         (sra_modify_expr): Removed parameter data.
27154         (sra_modify_function_body): New function.
27155         (perform_intra_sra): Call sra_modify_function_body to modify the
27156         function body.
27157         (replace_removed_params_ssa_names): Parameter data changed into
27158         adjustments vector.
27159         (sra_ipa_modify_expr): Likewise.  Also removed unused parameter gsi and
27160         changed the parameter dont_convert to convert with the opposite
27161         meaning.
27162         (sra_ipa_modify_assign): Parameter data changed into adjustments
27163         vector, return value changed to bool.
27164         (ipa_sra_modify_function_body): New function.
27165         (sra_ipa_reset_debug_stmts): Updated a comment.
27166         (modify_function): Use ipa_sra_modify_function_body to modify function
27167         body.
27168
27169 2010-05-04  H.J. Lu  <hongjiu.lu@intel.com>
27170
27171         PR middle-end/43671
27172         * alias.c (true_dependence): Handle the same VALUE in x and mem.
27173         (canon_true_dependence): Likewise.
27174         (write_dependence_p): Likewise.
27175
27176 2010-05-04  Jan Hubicka  <jh@suse.cz>
27177
27178         * Makefile.in (cgraphbuild.o): Add dependency on ipa-utils.h
27179         * cgraphbuild.c: Include ipa-utils.h
27180         (record_reference_ctx): New struct.
27181         (record_reference): Simplify to work on initializers; not statements.
27182         (mark_address, mark_load, mark_store): New.
27183         (build_cgraph_edges): Simplify using walk_stmt_load_store_addr_ops;
27184         walk PHI nodes too.
27185         (record_references_in_initializer): Update use of record_reference.
27186         (rebuild_cgraph_edges): Simplify using walk_stmt_load_store_addr_ops;
27187         walk PHI nodes too.
27188
27189 2010-05-04  Jan Hubicka  <jh@suse.cz>
27190
27191         * lto-symtab.c (lto_cgraph_replace_node): Do not remove edges;
27192         node will be removed anyway.
27193         (lto_varpool_replace_node): Allow also unanalyzed nodes;
27194         relink aliases of node into prevailing node.
27195         * varpool.c (varpool_remove_node): Remove aliases properly;
27196         when removing node, remove all its aliases too; remove DECL_INITIAL
27197         of removed node; ggc_free the varpool node.
27198
27199 2010-05-04  Richard Guenther  <rguenther@suse.de>
27200
27201         PR tree-optimization/43879
27202         * tree-ssa-structalias.c (alias_get_name): Use
27203         DECL_ASSEMBLER_NAME if available.
27204         (create_function_info_for): Return the varinfo node.
27205         (ipa_pta_execute): Associate same-body aliases and extra names
27206         with their origin nodes varinfo.  Dump DECL_ASSEMBLER_NAME.
27207
27208 2010-05-04  Kaz Kojima  <kkojima@gcc.gnu.org>
27209
27210         * config/sh/sh.c (sh_small_register_classes_for_mode_p): Remove static.
27211
27212 2010-05-04  Mikael Pettersson  <mikpe@it.uu.se>
27213
27214         PR bootstrap/43964
27215         * ira-color.c (assign_hard_reg): Declare rclass and add_cost
27216         only if HONOR_REG_ALLOC_ORDER is not defined.
27217
27218 2010-05-04  Richard Guenther  <rguenther@suse.de>
27219
27220         PR tree-optimization/43949
27221         * tree-vrp.c (extract_range_from_binary_expr): Only handle
27222         TRUNC_MOD_EXPR.
27223
27224 2010-04-26  Jason Merrill  <jason@redhat.com>
27225
27226         * c.opt (-fstrict-enums): New.
27227         * doc/invoke.texi (C++ Dialect Options): Document -fstrict-enums.
27228
27229 2010-05-03  David Ung  <davidu@mips.com>
27230             James E. Wilson  <wilson@codesourcery.com>
27231
27232         * config/mips/mips.c (mips_output_division): If GENERATE_DIVIDE_TRAPS,
27233         emit the trap instruction before the divide for TUNE_74K.
27234
27235 2010-05-03  Steven Bosscher  <steven@gcc.gnu.org>
27236
27237         * doc/tm.texi (defmac SMALL_REGISTER_CLASSES): Remove.
27238         (TARGET_SMALL_REGISTER_CLASSES_FOR_MODE_P): Add documentation,
27239         based on the above, for new target hook.
27240
27241         * hooks.c (hook_bool_mode_true): New generic hook.
27242         * hooks.h (hook_bool_mode_true): Add prototype.
27243
27244         * target.h (struct gcc_target): Add small_register_classes_for_mode_p
27245         target hook.
27246         * target-def.h (TARGET_SMALL_REGISTER_CLASSES_FOR_MODE_P): New default
27247         target hook, set to hook_bool_mode_false.
27248         * regs.h: Remove default definition of SMALL_REGISTER_CLASSES.
27249         * reload.c (push_secondary_reload): Replace SMALL_REGISTER_CLASSES
27250         with targetm.small_register_classes_for_mode_p.
27251         (find_reusable_reload): Likewise.
27252         (combine_reloads): Likewise.
27253         * reload1.c (reload_as_needed): Likewise.
27254         * cse.c (approx_reg_cost_1, hash_rtx_cb): Likewise.
27255         * ifcvt.c (noce_process_if_block, check_cond_move_block,
27256         dead_or_predicable): Likewise.
27257         * regmove.c (optimize_reg_copy_1): Likewise.
27258         * calls.c (prepare_call_address): Likewise.
27259         (precompute_register_parameters): Likewise.
27260
27261         * config/sh/sh.h: Replace SMALL_REGISTER_CLASSES with new target
27262         hook definition.
27263         * config/sh/sh.c (sh_small_register_classes_for_mode_p): Add
27264         implementation of the hook that considers all register classes
27265         small except for SH64.
27266         (sh_override_options): Use the new hook.
27267         * config/sh/sh-protos.h (sh_small_register_classes_for_mode_p):
27268         Add prototype.
27269
27270         * config/arm/arm.h: Replace SMALL_REGISTER_CLASSES with new target
27271         hook definition.
27272         * config/arm/arm.c (arm_small_register_classes_for_mode_p): Add
27273         implementation of the hook that considers all register classes
27274         small for THUMB1.
27275         * config/arm/arm-protos.h (arm_small_register_classes_for_mode_p):
27276         Add prototype.
27277
27278         * config/mips/mips.h: Replace SMALL_REGISTER_CLASSES with new target
27279         hook definition.
27280         * config/mips/mips.c (mips_small_register_classes_for_mode_p): Add
27281         implementation of the hook that considers all register classes
27282         small for MIPS16.
27283         * config/mips/mips-protos.h (mips_small_register_classes_for_mode_p):
27284         Add prototype.
27285
27286         * config/i386/i386.h: Replace SMALL_REGISTER_CLASSES with new target
27287         hook definition.
27288         * config/m32c/m32c.h: Likewise.
27289         * config/pdp11/pdp11.h: Likewise.
27290         * config/avr/avr.h: Likewise.
27291         * config/xtensa/xtensa.h: Likewise.
27292         * config/m68hc11/m68hc11.h: Likewise.
27293         * config/mn10300/mn10300.h: Likewise.
27294         * config/mcore/mcore.h: Likewise.
27295         * config/h8300/h8300.h: Likewise.
27296         * config/bfin/bfin.h: Likewise.
27297
27298         * config/iq2000/iq2000.h: Remove SMALL_REGISTER_CLASSES definition.
27299         * config/rx/rx.h: Remove SMALL_REGISTER_CLASSES definition.
27300
27301 2010-05-03  Anatoly Sokolov  <aesok@post.ru>
27302
27303         * double-int.h (tree_to_double_int): Remove macro.
27304         (double_int_to_tree, double_int_fits_to_tree_p): Move prototypes ...
27305         * tree.h (double_int_to_tree, double_int_fits_to_tree_p): ... here.
27306         (tree_to_double_int): New function.
27307         * double-int.c (double_int_to_tree, double_int_fits_to_tree_p):
27308         Move ...
27309         * tree.c (double_int_to_tree, double_int_fits_to_tree_p): ... here.
27310
27311 2010-05-03  Richard Guenther  <rguenther@suse.de>
27312
27313         PR tree-optimization/43971
27314         * tree-ssa-structalias.c (get_constraint_for_1): Fix
27315         constraints in the !flag_delete_null_pointer_checks case.
27316
27317 2010-05-03  Jakub Jelinek  <jakub@redhat.com>
27318
27319         PR debug/43972
27320         * config/i386/i386.c (ix86_delegitimize_address): Make sure the
27321         result mode matches original rtl mode.
27322
27323 2010-05-03  Dave Korn  <dave.korn.cygwin@gmail.com>
27324
27325         PR target/43888
27326         * config/i386/winnt.c (i386_pe_binds_local_p): Handle weak decls.
27327
27328 2010-05-02  Uros Bizjak  <ubizjak@gmail.com>
27329
27330         * config/i386/i386.c (ix86_target_string): Output 'flags', not 'isa',
27331         when processing flag options.
27332
27333 2010-05-02  Uros Bizjak  <ubizjak@gmail.com>
27334
27335         * gcov-iov.c (main): Change format string placeholder
27336         from %#08x to 0x%08x.
27337         * genchecksum.c (dosum): Change format string placeholder
27338         from %#02x to 0x%02x.
27339
27340 2010-05-02  Richard Guenther  <rguenther@suse.de>
27341
27342         PR tree-optimization/43879
27343         * tree-tailcall.c (find_tail_calls): Clobbers also prevent tail calls.
27344
27345 2010-05-02  Bruno Haible  <bruno@clisp.org>
27346
27347         * doc/extend.texi (Function Attributes): Fix a typo.
27348
27349 2010-05-02  Uros Bizjak  <ubizjak@gmail.com>
27350
27351         Revert:
27352         * hwint.h (HOST_WIDE_INT_PRINT_DOUBLE_HEX): Change format string
27353         placeholder from 0x%x to %#x.
27354         (HOST_WIDEST_INT_PRINT_DOUBLE_HEX): Ditto.
27355         * config/i386/i386elf.h (ASM_OUTPUT_ASCII): Ditto.
27356         * config/i386/i386-interix.h (ASM_OUTPUT_ASCII): Ditto.
27357         * config/i386/att.h (ASM_OUTPUT_ASCII): Ditto.
27358         * config/i386/sysv4.h (ASM_OUTPUT_ASCII): Ditto.
27359         * config/i386/i386.c (ix86_target_string): Ditto.
27360         * config/i386/i386.c (output_pic_addr_const): Ditto.
27361         (print_operand): Ditto.
27362
27363 2010-05-02  Uros Bizjak  <ubizjak@gmail.com>
27364
27365         * vmsdbgout.c (ASM_OUTPUT_DEBUG_DATA1): Change format string
27366         placeholder from 0x%x to %#x.
27367         (ASM_OUTPUT_DEBUG_DATA1): Ditto.
27368         (ASM_OUTPUT_DEBUG_DATA4): Ditto.
27369         (ASM_OUTPUT_DEBUG_DATA): Ditto.
27370         (ASM_OUTPUT_DEBUG_ADDR_DATA): Ditto.
27371         (ASM_OUTPUT_DEBUG_DATA8): Ditto.
27372         * optc-gen.awk: Ditto.
27373         * hwint.h (HOST_WIDE_INT_PRINT_DOUBLE_HEX): Ditto.
27374         (HOST_WIDE_INT_PRINT_HEX): Ditto.
27375         (HOST_WIDEST_INT_PRINT_HEX): Ditto.
27376         (HOST_WIDEST_INT_PRINT_DOUBLE_HEX): Ditto.
27377
27378 2010-05-01  Anatoly Sokolov  <aesok@post.ru>
27379
27380         * target.h (struct calls): Add function_value_regno_p field.
27381         * target-def.h (TARGET_FUNCTION_VALUE_REGNO_P): Define.
27382         (TARGET_INITIALIZER): Use TARGET_FUNCTION_VALUE_REGNO_P.
27383         * targhooks.c (default_function_value_regno_p): New function.
27384         * targhooks.h (default_function_value_regno_p): Declare function.
27385         * rtlanal.c (keep_with_call_p): Use function_value_regno_p hook.
27386         * builtins.c. (apply_result_size): (Ditto.).
27387         * combine.c. (likely_spilled_retval_p): (Ditto.).
27388         * mode-switching.c. Include 'target.h'.
27389         (create_pre_exit): Use function_value_regno_p hook.
27390         * Makefile.in (mode-switching.o): Add dependency on TARGET_H.
27391         * doc/tm.texi (FUNCTION_VALUE_REGNO_P,
27392         TARGET_FUNCTION_VALUE_REGNO_P): Revise documentation.
27393
27394         * config/i386/i386.h (TARGET_FUNCTION_VALUE_REGNO_P): Remove macro.
27395         * config/i386/i386.c (TARGET_FUNCTION_VALUE_REGNO_P): Define macro.
27396         (ix86_function_value_regno_p): Declare as static, change argument
27397         type to const unsigned int.
27398         * config/i386/i386-protos.h (ix86_function_value_regno_p): Remove.
27399
27400 2010-05-01  Richard Guenther  <rguenther@suse.de>
27401
27402         PR tree-optimization/43949
27403         * tree-vrp.c (ssa_name_nonnegative_p): Return true for unsigned
27404         types.
27405         (extract_range_from_binary_expr): Handle *_MOD_EXPR.
27406
27407 2010-05-01  Anatoly Sokolov  <aesok@post.ru>
27408
27409         * rtl.h (CONST_DOUBLE_P): Define.
27410         (rtx_to_double_int): Declare.
27411         * emit-rtl.c (rtx_to_double_int): New function.
27412         * dwarf2out.c (insert_double): New function.
27413         (loc_descriptor, add_const_value_attribute): Clean up, use
27414         rtx_to_double_int and insert_double functions.
27415
27416 2010-05-01  Jonathan Wakely  <jwakely.gcc@gmail.com>
27417
27418         * doc/extend.texi (Inline): Add missing return keyword to examples.
27419         (Function Attributes, Variable Attributes, Pragmas): Hyphenate
27420         "command-line".
27421
27422 2010-04-30  Eric Botcazou  <ebotcazou@adacore.com>
27423
27424         * tree-ssa-loop-ivopts.c (may_be_unaligned_p): Check the alignment of
27425         the variable part of the offset as well.  Use highest_pow2_factor for
27426         all alignment checks.
27427
27428 2010-04-30  Richard Guenther  <rguenther@suse.de>
27429
27430         PR tree-optimization/43879
27431         * tree-ssa-structalias.c (type_could_have_pointers): Functions
27432         can have pointers.
27433
27434 2010-04-30  Jan Hubicka  <jh@suse.cz>
27435
27436         * lto-symtab.c (lto_symtab_resolve_can_prevail_p): Chose var with
27437         varpool.
27438         (lto_symtab_merge_decls_1): Remove logic looking for an initializer.
27439
27440 2010-04-30  Jan Hubicka  <jh@suse.cz>
27441
27442         * cgraph.h (cgraph_node_set_nonempty_p, varpool_node_set_nonempty_p):
27443         New.
27444         * lto-cgraph.c (input_cgraph): Remove call to lto_mark_file_for_ltrans.
27445         * lto-streamer.h (lto_file_decl_data): Remove needs_ltrans_p.
27446         (lto_file_needs_ltrans_p, lto_mark_file_for_ltrans,
27447         cgraph_node_set_needs_ltrans_p): Remove.
27448
27449 2010-04-30  Steven Bosscher  <steven@gcc.gnu.org>
27450
27451         * sdbout.c: Include vec.h, do not include varray.h.
27452         (deferred_global_decls, sdbout_global_decl,
27453         sdbout_finish, sdbout_init): Use VEC instead of VARRAY.
27454         * toplev.c: Do not include varray.h.
27455         (dump_memory_report): Do not dump VARRAY statistics.
27456         * gengtype.c (open_base_file): Ignore varray.h.
27457         * Makefile.in: Update for abovementioned changes.
27458         Remove all traces of varray.c and varray.h.
27459         * varray.c: Remove file.
27460         * varray.h: Remove file.
27461
27462 2010-04-30  Jan Hubicka  <jh@suse.cz>
27463
27464         * lto-cgraph.c (lto_output_varpool_node): Always output constant pool
27465         references.
27466
27467 2010-04-30  Jan Hubicka  <jh@suse.cz>
27468
27469         * tree-profile.c (tree_init_ic_make_global_vars): Mark new decls as
27470         needed.
27471
27472 2010-04-30  Richard Guenther  <rguenther@suse.de>
27473
27474         * tree-ssa-structalias.c (get_constraint_for_1): Generate
27475         constraints for CONSTRUCTOR.
27476
27477 2010-04-30  Richard Guenther  <rguenther@suse.de>
27478
27479         PR lto/43946
27480         * passes.c (init_optimization_passes): Move pass_ipa_free_lang_data
27481         first after all lowering passes.
27482
27483 2010-04-30  Steven Bosscher  <steven@gcc.gnu.org>
27484
27485         * toplev.c: Include varray.h for statistics dumping.
27486         * tree.h: Do not declare varray_head_tag.
27487         * tree-into-ssa.c, tree-ssa-uninit.c, tree-phinodes.c, omega.c,
27488         regs.h, lto-cgraph.c, tree-ssa-loop-ivopts.c, tree-nomudflap.c,
27489         c-objc-common.c, lto-streamer-out.c, tree-ssa-propagate.c,
27490         gimple-low.c, c-semantics.c, dwarf2out.c, lto-streamer-in.c,
27491         lto-section-in.c, alias.c, tree-if-conv.c, gimplify.c, ggc-zone.c,
27492         tree-ssa.c, tree-ssa-loop-prefetch.c, integrate.h, c-gimplify.c,
27493         c-common.c, c-common.h, reg-stack.c, basic-block.h,
27494         tree-ssa-structalias.c, lto-section-out.c, tree-ssanames.c: Do not
27495         include varray.h.
27496         * Makefile.in: Update for abovementioned changes.
27497
27498 2010-04-30  Jakub Jelinek  <jakub@redhat.com>
27499
27500         PR debug/43942
27501         * tree.c (auto_var_in_fn_p): Return false for DECL_EXTERNAL vars.
27502
27503 2010-04-30  Hariharan Sandanagobalane  <hariharan@picochip.com>
27504
27505         * config/picochip/picochip.c (picochip_legitimize_address): Define.
27506         Use this function to do machine-specific conversion.
27507         (picochip_legitimize_reload_address): Likewise.
27508         (picochip_legitimate_address_p): Check valid base register only if
27509         strict.
27510         (picochip_check_conditional_copy): Check for modw only if opnd is
27511         register.
27512         * config/picochip/picochip.h (LEGITIMIZE_RELOAD_ADDRESS): Use this
27513         to call the function in c.
27514         * config/picochip/picochip-protos.h
27515         (picochip_legitimize_reload_address): Define.
27516         * config/picochip/picochip.md (supported_compare1): Define.
27517
27518 2010-04-30  Jan Hubicka  <jh@suse.cz>
27519
27520         * cgraph.h (cgraph_local_info): Remove for_functions_valid.
27521         (cgraph_global_info): Remove inlined.
27522         (LTO_cgraph_tag_names): Remove.
27523         (LTO_cgraph_tags, LCC_NOT_FOUND): Move to ...
27524         * lto-cgraph.c (LTO_cgraph_tags, LCC_NOT_FOUND): ... here;
27525         simplify cgraph tags and document.
27526         (lto_output_node): Use only LTO_cgraph_unavail_node and
27527         LTO_cgraph_analyzed_node; Do not save analzed, reachable,
27528         for_functions_valid, global info, process and output flags.
27529         (input_overwrite_node): Initialize estimated stack size and
27530         estimated growth.  Do not read flags we no longer store.
27531         (input_node): Likewise do not read info no longer stored.
27532         * ipa-inline.c (cgraph_mark_inline_edge): Do not set global.inlined
27533         flag.
27534
27535 2010-04-30  Richard Guenther  <rguenther@suse.de>
27536
27537         PR tree-optimization/43879
27538         * tree-ssa-structalias.c (get_constraint_for_1): Properly
27539         handle non-zero initializers.
27540
27541 2010-04-30  Richard Guenther  <rguenther@suse.de>
27542
27543         * builtins.c (fold_builtin_1): Delete free (0).
27544
27545 2010-04-29  Jan Hubicka  <jh@suse.cz>
27546
27547         * gengtype.c (open_base_files): Add lto-streamer.h
27548         * cgraph.h (cgraph_local_info): lto_file_data is now in GGC.
27549         (pass_ipa_cp): GGC collect.
27550         * toplev. (compile_file): Do not output symbols.
27551         * ipa-inline.c (pass_ipa_inline): Add ggc collect.
27552         * timevar.def (TV_VARPOOL, TV_IPA_LTO_DECL_INIT_IO,
27553         TV_IPA_LTO_DECL_MERGE, TV_IPA_LTO_CGRAPH_MERGE, TV_VAROUT): New.
27554         * lto-section-in.c: Include ggc.h
27555         (lto_new_in_decl_state): Alloc in GGC.
27556         (lto_delete_in_decl_state): Likewise.
27557         * ipa.c (pass_ipa_function_visibility, pass_ipa_whole_program):
27558         Collect.
27559
27560 2010-04-29  Bernd Schmidt  <bernds@codesourcery.com>
27561
27562         PR target/42895
27563         * doc/tm.texi (ADJUST_REG_ALLOC_ORDER): Renamed from
27564         ORDER_REGS_FOR_LOCAL_ALLOC.  All instances of this macro changed.
27565         (HONOR_REG_ALLOC_ORDER): Describe new macro.
27566         * ira.c (setup_alloc_regs): Use ADJUST_REG_ALLOC_ORDER if defined.
27567         * ira-color.c (assign_hard_reg): Take prologue/epilogue costs into
27568         account only if HONOR_REG_ALLOC_ORDER is not defined.
27569         * config/arm/arm.h (HONOR_REG_ALLOC_ORDER): Define.
27570         * system.h (ORDER_REGS_FOR_LOCAL_ALLOC): Poison.
27571
27572 2010-04-29  Jon Grant  <04@jguk.org>
27573
27574         * collect2.c (vflag): Change type from int to bool.
27575         (debug): Likewise.
27576         (helpflag): New global bool.
27577         (main): Set vflag and debug with boolean, not integer truth values.
27578         Accept new "--help" option and output usage text if found.
27579         * collect2.h (vflag): Update prototype.
27580         (debug): Likewise.
27581
27582 2010-04-29  H.J. Lu  <hongjiu.lu@intel.com>
27583
27584         PR bootstrap/43936
27585         * plugin.h (flag_plugin_added): Moved out of invoke_plugin_callbacks.
27586
27587 2010-04-29  Richard Guenther  <rguenther@suse.de>
27588
27589         PR bootstrap/43935
27590         * plugin.h (invoke_plugin_callbacks): Annotate arguments
27591         with ATTRIBUTE_UNUSED.
27592
27593 2010-04-29  H.J. Lu  <hongjiu.lu@intel.com>
27594
27595         PR target/43921
27596         * config/i386/i386.c (get_some_local_dynamic_name): Replace
27597         INSN_P with NONDEBUG_INSN_P.
27598         (distance_non_agu_define): Likewise.
27599         (distance_agu_use): Likewise.
27600
27601 2010-04-29  Bernd Schmidt  <bernds@codesourcery.com>
27602
27603         From Dominique d'Humieres  <dominiq@lps.ens.fr>
27604         PR bootstrap/43858
27605         * ifcvt.c (dead_or_predicable): Use df_simulate_find_defs to compute
27606         test_set.
27607
27608 2010-04-29  Brian Hackett  <bhackett1024@gmail.com>
27609
27610         * plugin.h (invoke_plugin_callbacks): New inline function.
27611         * plugin.c (flag_plugin_added): New global flag.
27612         (add_new_plugin): Initialize above flag.
27613         (invoke_plugin_callbacks): Rename to ...
27614         (invoke_plugin_callbacks_full): ... this.
27615
27616 2010-04-28  Jan Hubicka  <jh@suse.cz>
27617
27618         * lto-symtab.c (lto_symtab_entry_def) Add vnode.
27619         (lto_varpool_replace_node): New.
27620         (lto_symtab_resolve_symbols): Resolve varpool nodes.
27621         (lto_symtab_merge_decls_1): Prefer decls with varpool node.
27622         (lto_symtab_merge_cgraph_nodes_1): Merge varpools.
27623         * cgraph.h (varpool_node_ptr): New type.
27624         (varpool_node_ptr): New vector.
27625         (varpool_node_set_def): New structure.
27626         (varpool_node_set): New type.
27627         (varpool_node_set): New vector.
27628         (varpool_node_set_element_def): New structure.
27629         (varpool_node_set_element, const_varpool_node_set_element): New types.
27630         (varpool_node_set_iterator): New type.
27631         (varpool_node): Add prev pointers, add used_from_other_partition,
27632         in_other_partition.
27633         (varpool_node_set_new, varpool_node_set_find, varpool_node_set_add,
27634         varpool_node_set_remove, dump_varpool_node_set, debug_varpool_node_set,
27635         varpool_get_node, varpool_remove_node): Declare.
27636         (vsi_end_p, vsi_next, vsi_node, vsi_start, varpool_node_in_set_p,
27637         varpool_node_set_size): New inlines.
27638         * cgraph.c (dump_cgraph_node): Dump asm names of aliases.
27639         * tree-pass.h (varpool_node_set_def): Forward declare.
27640         (ipa_opt_pass_d): Summary writting takes vnode sets too.
27641         (ipa_write_optimization_summaries): Update prototype.
27642         * ipa-cp.c (ipcp_write_summary): Update.
27643         * ipa-reference.c (ipa_reference_write_summary): Update.
27644         * lto-cgraph.c (lto_output_varpool_node): New static function.
27645         (output_varpool): New function.
27646         (input_varpool_node): New static function.
27647         (input_varpool_1): New function.
27648         (input_cgraph): Input varpool.
27649         * ipa-pure-const.c (pure_const_write_summary): Update.
27650         * lto-streamer-out.c (lto_output): Update, output varpool too.
27651         (write_global_stream): Kill WPA hack.
27652         (produce_asm_for_decls): Update.
27653         (output_alias_pair_p): Handle variables.
27654         (output_unreferenced_globals): Output only needed partition of varpool.
27655         * ipa-inline.c (inline_write_summary): Update.
27656         * lto-streamer-in.c (lto_input_tree_ref, lto_input_tree): Do not build
27657         cgraph.
27658         * lto-section-in.c (lto_section_name): Add varpool and jump funcs.
27659         * ipa.c (hash_varpool_node_set_element, eq_varpool_node_set_element,
27660         varpool_node_set_new, varpool_node_set_add,
27661         varpool_node_set_remove, varpool_node_set_find, dump_varpool_node_set,
27662         debug_varpool_node_set): New functions.
27663         * passes.c (rest_of_decl_compilation): when in LTO do not finalize.
27664         (execute_one_pass): Process new decls too.
27665         (ipa_write_summaries_2): Pass around vsets.
27666         (ipa_write_summaries_1): Likewise.
27667         (ipa_write_summaries): Build vset; be more selective about cgraph nodes
27668         to add.
27669         (ipa_write_optimization_summaries_1): Pass around vsets.
27670         (ipa_write_optimization_summaries): Likewise.
27671         * varpool.c (varpool_get_node): New.
27672         (varpool_node): Update doubly linked lists.
27673         (varpool_remove_node): New.
27674         (dump_varpool_node): More dumping.
27675         (varpool_enqueue_needed_node): Update doubly linked lists.
27676         (decide_is_variable_needed): Kill ltrans hack.
27677         (varpool_finalize_decl): Kill lto hack.
27678         (varpool_assemble_decl): Skip decls in other partitions.
27679         (varpool_assemble_pending_decls): Update doubly linkes lists.
27680         (varpool_empty_needed_queue): Likewise.
27681         (varpool_extra_name_alias): Likewise.
27682         * lto-streamer.c (lto_get_section_name): Add vars section.
27683         * lto-streamer.h (lto_section_type): Update.
27684         (output_varpool, input_varpool): Declare.
27685
27686 2010-04-28  Mike Stump  <mikestump@comcast.net>
27687
27688         * config/i386/darwin.h (CC1_SPEC): Ignore -mdynamic-no-pic for now.
27689
27690 2010-04-28  Eric Botcazou  <ebotcazou@adacore.com>
27691
27692         * lto-streamer-in.c (unpack_ts_type_value_fields): Replace test for
27693         record or union type with RECORD_OR_UNION_TYPE_P predicate.
27694         (lto_input_ts_type_tree_pointers): Likewise.
27695         * lto-streamer-out.c (pack_ts_type_value_fields): Likewise.
27696         (lto_output_ts_type_tree_pointers): Likewise.
27697
27698 2010-04-28  Eric Botcazou  <ebotcazou@adacore.com>
27699
27700         Uniquization of constants at the Tree level
27701         * tree.h (DECL_IN_CONSTANT_POOL): New macro.
27702         (tree_decl_with_vis): Add in_constant_pool bit, move shadowed_for_var_p
27703         bit to the end.
27704         (tree_output_constant_def): Declare.
27705         * gimplify.c (gimplify_init_constructor): When using block copy, first
27706         uniquize the constant constructor on the RHS.
27707         * lto-streamer-in.c (unpack_ts_decl_with_vis_value_fields): Deal with
27708         DECL_IN_CONSTANT_POOL flag.
27709         * lto-streamer-out.c (pack_ts_decl_with_vis_value_fields): Likewise.
27710         * varasm.c (make_decl_rtl): Deal with variables belonging to the global
27711         constant pool.
27712         (assemble_variable): Deal with symbols belonging to the tree constant
27713         pool.
27714         (get_constant_section): Add ALIGN parameter and simplify.
27715         (build_constant_desc): Build a VAR_DECL and attach it to the symbol.
27716         (assemble_constant_contents): Use the expression of the VAR_DECL.
27717         (output_constant_def_contents): Use the alignment of the VAR_DECL.
27718         (tree_output_constant_def): New global function.
27719         (mark_constant): Use the expression of the VAR_DECL.
27720         (place_block_symbol): Use the alignment of the VAR_DECL and the size of
27721         its expression.
27722         (output_object_block): Likewise and assemble the expression.
27723
27724 2010-04-28  Eric Botcazou  <ebotcazou@adacore.com>
27725
27726         * lto-streamer.c [LTO_STREAMER_DEBUG] (tree_htab, tree_hash_entry,
27727         hash_tree, eq_tree): New tree hash table.
27728         (lto_streamer_init) [LTO_STREAMER_DEBUG]: Initialize it.
27729         [LTO_STREAMER_DEBUG] (lto_orig_address_map, lto_orig_address_get,
27730         lto_orig_address_remove): Reimplement.
27731
27732 2010-04-28  Xinliang David Li  <davidxl@google.com>
27733
27734         PR c/42643
27735         * tree-ssa-uninit.c (can_skip_redundant_opnd): New function.
27736         (compute_uninit_opnds_pos): New function.
27737         (is_non_loop_exit_postdominating): New function.
27738         (compute_control_dep_chain): New function.
27739         (find_pdom): New function.
27740         (convert_control_dep_chain_into_preds): New function.
27741         (find_predicates): New function.
27742         (find_control_equiv_block): New function.
27743         (collect_phi_def_edges): New function.
27744         (find_def_preds): New function.
27745         (find_dom): New function.
27746         (dump_predicates): New function.
27747         (get_cmp_code): New function.
27748         (is_value_included_in): New function.
27749         (find_matching_predicate_in_rest_chains): New function.
27750         (use_pred_not_overlap_with_undef_path_pred): New function.
27751         (is_use_properly_guarded): New function.
27752         (normalize_cond_1): New function.
27753         (is_and_or_or): New function.
27754         (normalize_cond): New function.
27755         (is_gcond_subset_of): New function.
27756         (is_subset_of_any): New function.
27757         (is_or_set_subset_of): New function.
27758         (is_and_set_subset_of): New function.
27759         (is_norm_cond_subset_of): New function.
27760         (is_pred_expr_subset_of): New function.
27761         (is_pred_chain_subset_of): New function.
27762         (is_included_in): New function.
27763         (is_superset_of): New function.
27764         (find_uninit_use): New function.
27765         (warn_uninitialized_phi): New function.
27766         (compute_possibly_undefined_names): New function.
27767         (ssa_undefined_value_p): New function.
27768         (execute_late_warn_uninitialized): New function.
27769         * tree-ssa.c (ssa_undefined_value_p): Removed.
27770         (warn_uninit): Changed to extern.
27771         (warn_uninitialized_phi): Removed.
27772         (warn_uninitialized_vars): Changed to extern.
27773         (execute_late_warn_uninitialized): Removed
27774         * tree-flow.h: Add new prototypes.
27775         * timevar.def: Add new time variable.
27776         * Makefile.in: Add new build file.
27777
27778 2010-04-28  Uros Bizjak  <ubizjak@gmail.com>
27779
27780         * config/alpha/elf.h (ASM_DECLARE_OBJECT_NAME): Use gnu_unique_object
27781         type if available.
27782
27783 2010-04-28  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
27784
27785         PR target/22224
27786         * config/alpha/osf5.h (ASM_OUTPUT_LOCAL): Redefine.
27787
27788 2010-04-28  Martin Jambor  <mjambor@suse.cz>
27789
27790         * cgraph.h (struct cgraph_node): New field indirect_calls.
27791         (struct cgraph_indirect_call_info): New type.
27792         (struct cgraph_edge): Removed field indirect_call. New fields
27793         indirect_info, indirect_inlining_edge and indirect_unknown_callee.
27794         (cgraph_create_indirect_edge): Declare.
27795         (cgraph_make_edge_direct): Likewise.
27796         (enum LTO_cgraph_tags): New item LTO_cgraph_indirect_edge.
27797         * ipa-prop.h (struct ipa_param_call_note): Removed.
27798         (struct ipa_node_params): Removed field param_calls.
27799         (ipa_create_all_structures_for_iinln): Declare.
27800         * cgraph.c: Described indirect edges and uids in initial comment.
27801         (cgraph_add_edge_to_call_site_hash): New function.
27802         (cgraph_edge): Search also among the indirect edges, use
27803         cgraph_add_edge_to_call_site_hash to add edges to the call site hash.
27804         (cgraph_set_call_stmt): Possibly turn an indirect edge into a direct
27805         one, use cgraph_add_edge_to_call_site_hash to add edges to the call
27806         site hash.
27807         (initialize_inline_failed): Assign a reason to indirect edges.
27808         (cgraph_create_edge_1): New function.
27809         (cgraph_create_edge): Moved some functionality to
27810         cgraph_create_edge_1.
27811         (cgraph_create_indirect_edge): New function.
27812         (cgraph_edge_remove_callee): Add an assert checking for
27813         non-indirectness.
27814         (cgraph_edge_remove_caller): Special-case indirect edges.
27815         (cgraph_remove_edge): Likewise.
27816         (cgraph_set_edge_callee): New function.
27817         (cgraph_redirect_edge_callee): Use cgraph_set_edge_callee.
27818         (cgraph_make_edge_direct): New function.
27819         (cgraph_update_edges_for_call_stmt_node): Do nothing only when also
27820         the declaration of the call statement matches.
27821         (cgraph_node_remove_callees): Special-case indirect edges.
27822         (cgraph_clone_edge): Likewise.
27823         (cgraph_clone_node): Clone also the indirect edges.
27824         (dump_cgraph_node): Dump indirect_inlining_edge flag instead of
27825         indirect_call, dump count of indirect_calls edges.
27826         * ipa-prop.c (iinlining_processed_edges): New variable.
27827         (ipa_note_param_call): Create indirect edges instead of
27828         creating notes.  New parameter node.
27829         (ipa_analyze_call_uses): New parameter node, pass it on to
27830         ipa_note_param_call.
27831         (ipa_analyze_stmt_uses): Likewise.
27832         (ipa_analyze_params_uses): Pass node to ipa_analyze_stmt_uses.
27833         (print_edge_addition_message): Work on edges rather than on notes.
27834         (update_call_notes_after_inlining): Likewise, renamed to
27835         update_indirect_edges_after_inlining.
27836         (ipa_create_all_structures_for_iinln): New function.
27837         (ipa_free_node_params_substructures): Do not free notes.
27838         (ipa_edge_duplication_hook): Propagate bits within
27839         iinlining_processed_edges bitmap.
27840         (ipa_node_duplication_hook): Do not duplicate notes.
27841         (free_all_ipa_structures_after_ipa_cp): Renamed to
27842         ipa_free_all_structures_after_ipa_cp.
27843         (free_all_ipa_structures_after_iinln): Renamed to
27844         ipa_free_all_structures_after_iinln.
27845         (ipa_write_param_call_note): Removed.
27846         (ipa_read_param_call_note): Removed.
27847         (ipa_write_indirect_edge_info): New function.
27848         (ipa_read_indirect_edge_info): Likewise.
27849         (ipa_write_node_info): Do not stream notes, do stream information
27850         in indirect edges.
27851         (ipa_read_node_info): Likewise.
27852         (lto_ipa_fixup_call_notes): Removed.
27853         * ipa-cp.c (pass_ipa_cp): Set stmt_fixup to NULL.
27854         * ipa-inline.c (pass_ipa_inline): Likewise.
27855         * cgraphunit.c (verify_cgraph_node): Check also indirect edges.
27856         * cif-code.def (INDIRECT_UNKNOWN_CALL): New reason.
27857         * tree-inline.c (copy_bb): Removed an unnecessary double check for
27858         is_gimple_call.
27859         * tree-inline.c (get_indirect_callee_fndecl): Do not consider indirect
27860         edges.
27861         * lto-cgraph.c (output_outgoing_cgraph_edges): New function.
27862         (output_cgraph): Stream also indirect edges.
27863         (lto_output_edge): Added capability to stream indirect edges.
27864         (input_edge): Likewise.
27865         (input_cgraph_1): Likewise.
27866         * lto-streamer-in.c (fixup_call_stmt_edges_1): Fixup also statements
27867         of indirect edges.
27868
27869 2010-04-28  Richard Guenther  <rguenther@suse.de>
27870
27871         PR tree-optimization/43879
27872         PR tree-optimization/43909
27873         * tree-ssa-structalias.c (struct variable_info): Add
27874         only_restrict_pointers flag.
27875         (new_var_info): Initialize it.  Increment stats.total_vars here.
27876         (create_function_info_for): Do not increment stats.total_vars here.
27877         (get_function_part_constraint): Fix build with C++.
27878         (insert_into_field_list): Remove.
27879         (push_fields_onto_fieldstack): Properly merge fields.
27880         (create_variable_info_for): Split and simplify.
27881         (create_variable_info_for_1): New piece.
27882         (intra_create_variable_infos): Properly make restrict constraints
27883         from parameters.
27884
27885 2010-04-28  Richard Guenther  <rguenther@suse.de>
27886
27887         PR c++/43880
27888         * tree-inline.c (copy_bind_expr): Also copy bind expr vars value-exprs.
27889
27890 2010-04-27  Manuel López-Ibáñez  <manu@gcc.gnu.org>
27891             Jan Hubicka  <hubicka@ucw.cz>
27892
27893         * doc/invoke.texi (-Wsuggest-attribute=const,
27894         -Wsuggest-attribute=pure): Document.
27895         * ipa-pure-const.c: Include toplev.h, intl.h and opts.h.
27896         (function_always_visible_to_compiler_p,
27897         suggest_attribute, warn_function_pure, warn_function_const):
27898         New functions.
27899         (check_call): Improve debug info.
27900         (analyze_function): Do not check availability.
27901         (add_new_function): Check availability.
27902         (propagate): Output warnings.
27903         (skip_function_for_local_pure_const): New function.
27904         (local_pure_const): Use it; output warnings.
27905         * common.opt (Wsuggest-attribute=const,
27906         Wsuggest-attribute=pure): New.
27907
27908 2010-04-27  Jakub Jelinek  <jakub@redhat.com>
27909
27910         * dwarf2out.c (def_cfa_1): After DW_CFA_def_cfa_expression
27911         force using DW_CFA_def_cfa instead of DW_CFA_def_cfa_register
27912         or DW_CFA_def_cfa_offset{,_sf}.
27913
27914 2010-04-27  Eric Botcazou  <ebotcazou@adacore.com>
27915
27916         * tree.h: Fix truncated long macros.
27917
27918 2010-04-27  Kai Tietz  <kai.tietz@onevision.com>
27919
27920         * collect2.c (TARGET_64BIT): Redefine to target's default.
27921         * tlink.c: Likewise.
27922         * config/i386/cygming.h (USER_LABEL_PREFIX): Define
27923         dependent to TARGET_64BIT and USE_MINGW64_LEADING_UNDERSCORES.
27924         * config/i386/i386.h (CRT_CALL_STATIC_FUNCTION): Use
27925         for underscoring __USER_LABEL_PREFIX__.
27926         * config/i386/mingw-w64.h (SUB_LINK_ENTRY): New macro.
27927         (SUB_LINK_ENTRY32): New.
27928         (SUB_LINK_ENTRY64): New.
27929         (LINK_SPEC): Replace entry point spec by SUB_LINK_ENTRY.
27930         * config/i386/mingw32 (SUB_LINK_ENTRY32): New.
27931         (SUB_LINK_ENTRY64): New.
27932         (SUB_LINK_ENTRY): New.
27933         (LINK_SPEC): Use SUB_LINK_ENTRY instead of hard-coded entry-point.
27934         (DWARF2_UNWIND_INFO): Error out for use of dw2 unwind when
27935         x64 target is choosen.
27936         * config.in (USE_MINGW64_LEADING_UNDERSCORES): New.
27937         * configure: Regenerated.
27938         * configure.ac (leading-mingw64-underscores): Option added.
27939
27940 2010-04-27  Jan Hubicka  <jh@suse.cz>
27941
27942         * doc/invoke.texi (-fipa-profile): Document.
27943         * opts.c (decode_options): Enable ipa-profile at -O1.
27944         * timevar.def (TV_IPA_PROFILE): Define.
27945         * common.opt (fipa-profile): Add.
27946         * cgraph.c (cgraph_clone_node): Set local flag and clear vtable method
27947         flag for clones.
27948         (cgraph_propagate_frequency): Handle only local ones.
27949         * tree-pass.h (pass_ipa_profile): Declare.
27950         * ipa-profile.c (gate_profile): Use flag_ipa_profile.
27951         (pass_ipa_profile): Use TV_IPA_PROFILE.
27952         * ipa.c (ipa_profile): New function.
27953         (gate_ipa_profile): Likewise.
27954         (pass_ipa_profile): New global variable.
27955         * passes.c (pass_ipa_profile): New.
27956
27957 2010-04-27  Nathan Froyd  <froydnj@codesourcery.com>
27958
27959         * config/arm/arm.c (arm_expand_builtin): Remove redundant declaration.
27960
27961 2010-04-27  Martin Jambor  <mjambor@suse.cz>
27962
27963         PR middle-end/43812
27964         * ipa.c (dissolve_same_comdat_group_list): New function.
27965         (function_and_variable_visibility): Call
27966         dissolve_same_comdat_group_list when comdat group contains external or
27967         newly local nodes.
27968         * cgraphunit.c (verify_cgraph_node): Verify that same_comdat_group
27969         lists are circular and that they contain only DECL_ONE_ONLY nodes.
27970
27971 2010-04-27  Eric Botcazou  <ebotcazou@adacore.com>
27972
27973         * varasm.c (decode_addr_const): Handle special case of INDIRECT_REF.
27974         (const_hash_1) <VECTOR_CST>: New case.
27975         (compare_constant) <VECTOR_CST>: Likewise.
27976         <ADDR_EXPR>: Deal with LABEL_REFs.
27977         (copy_constant) <VECTOR_CST>: New case.
27978
27979 2010-04-27  Jan Hubicka  <jh@suse.cz>
27980
27981         * cgraph.c (cgraph_propagate_frequency): New function.
27982         * cgraph.h (cgraph_propagate_frequency): Declare.
27983         * ipa-inline.c (cgraph_clone_inlined_nodes): Call
27984         cgraph_propagate_frequency.
27985
27986 2010-04-27  Jakub Jelinek  <jakub@redhat.com>
27987
27988         * unwind-dw2.c (_Unwind_DebugHook): Add used and noclone attributes.
27989
27990 2010-04-27  Bernd Schmidt  <bernds@codesourcery.com>
27991
27992         PR target/40657
27993         * config/arm/arm.c (thumb1_extra_regs_pushed): New function.
27994         (thumb1_expand_prologue, thumb1_output_function_prologue): Call it
27995         here to determine which regs to push and how much stack to reserve.
27996
27997 2010-04-27  Jie Zhang  <jie@codesourcery.com>
27998
27999         * doc/gimple.texi (gimple_statement_with_ops): Remove
28000         addresses_taken field.
28001         (gimple_statement_with_memory_ops): Likewise.
28002
28003 2010-04-27  Jan Hubicka  <jh@suse.cz>
28004
28005         * tree-inline.c (eni_inlining_weights): Remove.
28006         (estimate_num_insns): Special case more builtins.
28007
28008 2010-04-27  Shujing Zhao  <pearly.zhao@oracle.com>
28009
28010         PR c/32207
28011         * c-typeck.c (build_binary_op): Move forward check for comparison
28012         pointer with null pointer constant and adjust the diagnostic message.
28013
28014 2010-04-27  Dave Korn  <dave.korn.cygwin@gmail.com>
28015
28016         PR lto/42776
28017         * configure.ac (gcc_cv_as_section_has_align): Set if installed
28018         binutils supports extended .section directive needed by LTO, or
28019         warn if older binutils found.
28020         (LTO_BINARY_READER): New AC_SUBST'd variable.
28021         (LTO_USE_LIBELF): Likewise.
28022         * config.gcc (lto_binary_reader): New target-specific configure
28023         variable.
28024         * Makefile.in (LTO_BINARY_READER): Import AC_SUBST'd autoconf var.
28025         (LTO_USE_LIBELF): Likewise.
28026         * configure: Regenerate.
28027
28028         * collect2.c (is_elf): Rename from this ...
28029         (is_elf_or_coff): ... to this, and recognize and allow i386 COFF
28030          object files in addition to ELF-formatted ones.
28031         (scan_prog_file): Caller updated.  Also allow for LTO info marker
28032         symbol to be prefixed or not by an extra underscore.
28033
28034         * config/i386/t-cygming (winnt.o): Also depend on LTO_STREAMER_H.
28035         * config/i386/winnt.c: Also #include lto-streamer.h
28036         (i386_pe_asm_named_section): Specify 1-byte section alignment for
28037         LTO named sections.
28038         (i386_pe_asm_output_aligned_decl_common): Add comment.
28039         (i386_pe_maybe_record_exported_symbol): Allow decl arg to be NULL.
28040
28041 2010-04-27  Hans-Peter Nilsson  <hp@bitrange.com>
28042
28043         PR target/43889
28044         * config/mmix/mmix.md ("*divdi3_nonknuth", "*moddi3_nonknuth"):
28045         Add missing earlyclobber for second alternative.
28046
28047 2010-04-26  Bernd Schmidt  <bernds@codesourcery.com>
28048
28049         * df-problems.c (df_simulate_initialize_forwards): Set, don't clear,
28050         bits for artificial defs at the top of the block.
28051         * fwprop.c (single_def_use_enter_block): Don't call it.
28052
28053 2010-04-26  Jack Howarth  <howarth@bromo.med.uc.edu>
28054
28055         PR 43715
28056         * configure.ac: Use "$gcc_cv_nm -g" on darwin
28057         instead of "$gcc_cv_objdump -T".
28058         Use "-undefined dynamic_lookup" on darwin.
28059         * configure: Regenerate.
28060
28061 2010-04-26  Jakub Jelinek  <jakub@redhat.com>
28062
28063         PR c/43893
28064         * c-omp.c (c_finish_omp_for): Handle also EQ_EXPR.
28065
28066 2010-04-26  Nathan Froyd  <froydnj@codesourcery.com>
28067
28068         * c-parser.c (struct c_token): Move location field up.
28069         * c-tree.h (struct c_typespec): Move expr_const_operands field up.
28070         (struct c_declspecs): Convert typespec_word, storage_class, and
28071         default_int_p into bitfields.
28072         (struct c_declarator): Move loc field up.
28073
28074 2010-04-26  Nathan Froyd  <froydnj@codesourcery.com>
28075
28076         * cfgloop.h (struct loop): Move can_be_parallel field up.
28077         * ipa-prop.h (struct ip_node_params): Move bitfields up.
28078         * tree-ssa-loop-ivopts.c (struct version_info): Move inv_id field
28079         down.
28080         (struct iv_cand): Convert pos field into a bitfield.
28081         * tree-vectorizer.h (struct _loop_vec_info): Move loop_line_number
28082         field up.
28083         (struct _stmt_vec_info): Shuffle fields for better packing.
28084
28085 2010-04-26  Eric Botcazou  <ebotcazou@adacore.com>
28086
28087         * varasm.c (IN_NAMED_SECTION): Remove guard.
28088         * config/arm/unknown-elf.h (IN_NAMED_SECTION): Rename to...
28089         (IN_NAMED_SECTION_P): ...this.
28090         (ASM_OUTPUT_ALIGNED_BSS): Adjust for above renaming.
28091         (ASM_OUTPUT_ALIGNED_DECL_LOCAL): Likewise.
28092
28093 2010-04-26  Eric Botcazou  <ebotcazou@adacore.com>
28094
28095         * gimplify.c (gimplify_cond_expr): Use THEN_ and ELSE_ local variables.
28096         Use VOID_TYPE_P for all void type tests.  Adjust TYPE variable instead
28097         of shadowing it.  Fix comments.
28098
28099 2010-04-26  Jan Hubicka  <jh@suse.cz>
28100
28101         * cgraph.c (cgraph_create_node): Set node frequency to normal.
28102         (cgraph_clone_node): Copy function frequency.
28103         * cgraph.h (node_frequency): New enum
28104         (struct cgraph_node): Add.
28105         * final.c (rest_of_clean_state): Update.
28106         * lto-cgraph.c (lto_output_node): Output node frequency.
28107         (input_overwrite_node): Input node frequency.
28108         * tre-ssa-loop-ivopts (computation_cost): Update.
28109         * lto-streamer-out.c (output_function): Do not output function
28110         frequency.
28111         * predict.c (maybe_hot_frequency_p): Update and handle functions
28112         executed once.
28113         (cgraph_maybe_hot_edge_p): Likewise; use cgraph frequency instead of
28114         attribute lookup.
28115         (probably_never_executed_bb_p, optimize_function_for_size_p): Update.
28116         (compute_function_frequency): Set noreturn functions to be executed
28117         once.
28118         (choose_function_section): Update.
28119         * lto-streamer-in.c (input_function): Do not input function frequency.
28120         * function.c (allocate_struct_function): Do not initialize function
28121         frequency.
28122         * function.h (function_frequency): Remove.
28123         (struct function): Remove function frequency.
28124         * ipa-profile.c (CGRAPH_NODE_FREQUENCY): Remove.
28125         (try_update): Update.
28126         * tree-inline.c (initialize_cfun): Do not update function frequency.
28127         * passes.c (pass_init_dump_file): Update.
28128         * i386.c (ix86_compute_frame_layout): Update.
28129         (ix86_pad_returns): Update.
28130
28131 2010-04-26  Jie Zhang  <jie@codesourcery.com>
28132
28133         PR tree-optimization/43833
28134         * tree-vrp.c (range_int_cst_p): New.
28135         (range_int_cst_singleton_p): New.
28136         (extract_range_from_binary_expr): Optimize BIT_AND_EXPR case
28137         when both operands are constants.  Use range_int_cst_p in
28138         BIT_IOR_EXPR case.
28139
28140 2010-04-26  Jan Hubicka  <jh@suse.cz>
28141
28142         * cgraphunit.c (cgraph_copy_node_for_versioning): Fix profile updating.
28143
28144 2010-04-26  Richard Guenther  <rguenther@suse.de>
28145
28146         PR lto/43080
28147         * gimple.c (gimple_decl_printable_name): Deal gracefully
28148         with a NULL DECL_NAME.
28149
28150 2010-04-26  Richard Guenther  <rguenther@suse.de>
28151
28152         PR lto/42425
28153         * tree.c (free_lang_data_in_type): Do not free TYPE_CONTEXT
28154         if emitting debug information and it is either a function
28155         or a namespace decl.
28156
28157 2010-04-26  Ira Rosen  <irar@il.ibm.com>
28158
28159         * tree-vectorizer.h (struct _stmt_vec_info): Add new field to
28160         determine if the statement is vectorizable, and a macro to access it.
28161         * tree-vect-data-refs.c (vect_analyze_data_ref_dependence):
28162         Skip statements that can't be vectorized. If the analysis fails,
28163         mark the statement as unvectorizable if vectorizing basic block.
28164         (vect_compute_data_refs_alignment): Likewise.
28165         (vect_verify_datarefs_alignment): Skip statements marked as
28166         unvectorizable. Add print.
28167         (vect_analyze_group_access): Skip statements that can't be
28168         vectorized. If the analysis fails, mark the statement as
28169         unvectorizable if vectorizing basic block.
28170         (vect_analyze_data_ref_accesses, vect_analyze_data_refs): Likewise.
28171         * tree-vect-stmts.c (vectorizable_store): Fix the number of
28172         generated stmts for SLP.
28173         (new_stmt_vec_info): Initialize the new field.
28174         * tree-vect-slp.c (vect_build_slp_tree): Fail to vectorize
28175         statements marked as unvectorizable.
28176
28177 2010-04-25  Joseph Myers  <joseph@codesourcery.com>
28178
28179         * c-common.c (flag_isoc1x): New.
28180         (flag_isoc99): Update comment.
28181         * c-common.h (flag_isoc1x): New.
28182         (flag_isoc99): Update comment.
28183         * c-cppbuiltin.c (builtin_define_float_constants): Also define
28184         __<type>_DECIMAL_DIG__.
28185         * c-opts.c (set_std_c1x): New.
28186         (c_common_handle_option): Handle -std=c1x and -std=gnu1x.
28187         (set_std_c89, set_std_c99): Also set flag_isoc1x to 0.
28188         * c.opt (-std=c1x, -std=gnu1x): New options.
28189         * doc/cpp.texi: Mention -std=c1x.
28190         * doc/cppopts.texi (-std=c1x, -std=gnu1x): Document.
28191         * doc/extend.texi: Mention -std=c1x and -std=gnu1x.
28192         * doc/invoke.texi (-std=c1x, -std=gnu1x): Document.
28193         * doc/standards.texi: Mention C1X.
28194         * ginclude/float.h (FLT_DECIMAL_DIG, DBL_DECIMAL_DIG,
28195         LDBL_DECIMAL_DIG, FLT_HAS_SUBNORM, DBL_HAS_SUBNORM,
28196         LDBL_HAS_SUBNORM, FLT_TRUE_MIN, DBL_TRUE_MIN, LDBL_TRUE_MIN):
28197         Define for C1X.
28198
28199 2010-04-25  Uros Bizjak  <ubizjak@gmail.com>
28200
28201         * config/i386/gmon-sol2.c (_mcleanup): Change format string
28202         placeholder from 0x%x to %#x.
28203         * config/i386/i386elf.h (ASM_OUTPUT_ASCII): Ditto.
28204         * config/i386/i386-interix.h (ASM_OUTPUT_ASCII): Ditto.
28205         * config/i386/att.h (ASM_OUTPUT_ASCII): Ditto.
28206         * config/i386/sysv4.h (ASM_OUTPUT_ASCII): Ditto.
28207         * config/i386/i386.c (ix86_target_string): Ditto.
28208         (output_pic_addr_const): Ditto.
28209         (print_operand): Ditto.
28210
28211 2010-04-25  Paolo Bonzini  <bonzini@gnu.org>
28212
28213         * combine.c (find_split_point): Add third argument.  Use it
28214         to find nested multiply-accumulate instructions.  Adjust calls.
28215         (try_combine): Adjust call to find_split_point.
28216
28217 2010-04-24  Gerald Pfeifer  <gerald@pfeifer.com>
28218
28219         * doc/contrib.texi (Contributors): Add Dodji Seketeli.
28220
28221 2010-04-24  Bernd Schmidt  <bernds@codesourcery.com>
28222
28223         PR tree-optimization/41442
28224         * fold-const.c (merge_truthop_with_opposite_arm): New function.
28225         (fold_binary_loc): Call it.
28226
28227 2010-04-23  Manuel López-Ibáñez  <manu@gcc.gnu.org>
28228
28229         * toplev.c (general_init): Set default for fdiagnostics-show-option.
28230         * opts.c (common_handle_option): Allow disabling it.
28231         * common.opt (fdiagnostics-show-option): Add Var. Enabled by default.
28232
28233 2010-04-23  Eric Botcazou  <ebotcazou@adacore.com>
28234
28235         * expr.c (expand_expr_real_1) <VIEW_CONVERT_EXPR>: Only use conversion
28236         between modes if both types are integral.
28237
28238 2010-04-23  Richard Guenther  <rguenther@suse.de>
28239
28240         PR tree-optimization/43572
28241         * tree-tailcall.c (find_tail_calls): Allow PARM_DECL uses.
28242
28243 2010-04-23  Richard Guenther  <rguenther@suse.de>
28244
28245         PR lto/43455
28246         * tree-inline.c (tree_can_inline_p): Also check compatibility
28247         of return types.
28248
28249 2010-04-23  Martin Jambor  <mjambor@suse.cz>
28250
28251         PR tree-optimization/43846
28252         * tree-sra.c (struct access): New flag grp_assignment_read.
28253         (build_accesses_from_assign): Set grp_assignment_read.
28254         (sort_and_splice_var_accesses): Propagate grp_assignment_read.
28255         (enum mark_read_status): New type.
28256         (analyze_access_subtree): Propagate grp_assignment_read, create
28257         accesses also if both direct_read and root->grp_assignment_read.
28258
28259 2010-04-23  Martin Jambor  <mjambor@suse.cz>
28260
28261         PR middle-end/43835
28262         * tree-sra.c (ipa_sra_preliminary_function_checks): Check that the
28263         function does not have type attributes.
28264
28265 2010-04-23  Richard Guenther  <rguenther@suse.de>
28266
28267         PR lto/42653
28268         * tree.c (free_lang_data_in_decl): Do not reset DECL_CONTEXT
28269         of FUNCTION_DECLs.
28270
28271 2010-04-22  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
28272
28273         * sese.h (create_if_region_on_edge): Remove.
28274
28275         * sese.c (create_if_region_on_edge): Make static.
28276
28277         * tree-inline.c: Do not include ggc.h.
28278
28279         * expr.c: Do not include ggc.h.
28280
28281         * Makefile.in (tree-inline.o, expr.o): Remove $(GGC_H) from
28282         dependencies.
28283
28284 2010-04-22  Kaz Kojima  <kkojima@gcc.gnu.org>
28285
28286         PR target/43744
28287         * config/sh/sh.c (find_barrier): Don't emit a constant pool
28288         in the middle of insns for casesi_worker_2.
28289
28290 2010-04-22  David Edelsohn  <edelsohn@gnu.org>
28291
28292         * config/rs6000/x-aix: Override LDFLAGS for all COMPILERS.
28293
28294 2010-04-22  Ira Rosen  <irar@il.ibm.com>
28295
28296         PR tree-optimization/43842
28297         * tree-vect-loop.c (vect_create_epilog_for_reduction): Handle
28298         loop unrolling in update of exit phis. Fix comment.
28299         * tree-vect-slp.c (vect_analyze_slp): Check that there are at
28300         least two reduction statements in the loop before starting SLP
28301         analysis.
28302
28303 2010-04-22  Nick Clifton  <nickc@redhat.com>
28304
28305         * config/stormy16/stormy16-lib2.c (__ucmpsi2): Fix thinko.
28306
28307 2010-04-22  Alexander Monakov  <amonakov@ispras.ru>
28308
28309         * tree-ssa-reassoc.c (eliminate_plus_minus_pair): Handle BIT_NOT_EXPR
28310         to simplify a + ~a.
28311
28312 2010-04-22  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
28313
28314         * tree-parloops.c (loop_parallel_p): New argument
28315         parloop_obstack.  Pass it down.
28316         (parallelize_loops): New variable parloop_obstack.  Initialize it,
28317         pass it down, free it.
28318
28319         * tree-loop-linear.c (linear_transform_loops): Pass down
28320         lambda_obstack.
28321
28322         * tree-data-ref.h (lambda_compute_access_matrices): New argument
28323         of type struct obstack *.
28324
28325         * tree-data-ref.c (analyze_subscript_affine_affine): New variable
28326         scratch_obstack.  Initialize it, pass down, free it.
28327
28328         * lambda.h (lambda_loop_new): Remove.
28329         (lambda_matrix_new, lambda_matrix_inverse)
28330         (lambda_trans_matrix_new, lambda_trans_matrix_inverse): New
28331         argument of type struct obstack *.
28332
28333         * lambda-trans.c (lambda_trans_matrix_new): New argument
28334         lambda_obstack.  Pass it down, use obstack allocation for ret.
28335         (lambda_trans_matrix_inverse): New argument lambda_obstack.  Pass
28336         it down.
28337
28338         * lambda-mat.c (lambda_matrix_get_column)
28339         (lambda_matrix_project_to_null): Remove.
28340         (lambda_matrix_new): New argument lambda_obstack.  Use obstack
28341         allocation for mat.
28342         (lambda_matrix_inverse_hard, lambda_matrix_inverse): New argument
28343         lambda_obstack.
28344
28345         * lambda-code.c (lambda_loop_new): New function.
28346         (lambda_lattice_new, compute_nest_using_fourier_motzkin)
28347         (lambda_compute_auxillary_space, lambda_compute_target_space)
28348         (lambda_loopnest_transform, gcc_loop_to_lambda_loop)
28349         (lambda_loopnest_to_gcc_loopnest): Pass down lambda_obstack.
28350         (build_access_matrix): New argument lambda_obstack.  Use obstack
28351         allocation for am.
28352         (lambda_compute_step_signs, lambda_compute_access_matrices): New
28353         argument lambda_obstack.  Pass it down.
28354
28355 2010-04-22  Bernd Schmidt  <bernds@codesourcery.com>
28356
28357         * optabs.h (expand_widening_mult): Declare.
28358
28359 2010-04-22  Richard Guenther  <rguenther@suse.de>
28360
28361         PR tree-optimization/43845
28362         * tree-ssa-pre.c (create_component_ref_by_pieces_1): Properly
28363         lookup the CALL_EXPR function and arguments.
28364
28365 2010-04-22  Nick Clifton  <nickc@redhat.com>
28366
28367         * config/stormy16/stormy16.c
28368         (xstormy16_asm_output_aligned_common): Handle a NULL decl parameter.
28369         * config/stormy16/stormy16.h: Tidy up formatting.
28370         (DONT_USE_BUILTIN_SETJMP): Remove definition.
28371         * config/stormy16/stormy16.c (cbranchsi4): Delete pattern.
28372         (ineqbranchsi): Delete pattern.
28373         * config/stormy16/stormy16-lib2-ucmpsi2.c: New file.
28374         * config/stormy16/stormy16-lib2.c (__ucmpsi2): New function.
28375         * config/stormy16/t-stormy16 (LIB2FUNCS_EXTRA): Add
28376         stormy16-lib2-ucmpsi2.c.
28377
28378 2010-04-22  Bernd Schmidt  <bernds@codesourcery.com>
28379
28380         * ifcvt.c (dead_or_predicable): Use df_simulate_find_defs and
28381         df_simulate_find_noclobber_defs as appropriate.  Keep track of an
28382         extra set merge_set_noclobber, and use it to relax the final test
28383         slightly.
28384         * df.h (df_simulate_find_noclobber_defs): Declare.
28385         * df-problems.c (df_simulate_find_defs): Don't ignore partial or
28386         conditional defs.
28387         (df_simulate_find_noclobber_defs): New function.
28388
28389 2010-04-22  Uros Bizjak  <ubizjak@gmail.com>
28390
28391         * config/i386/i386.md: Use {} around multi-line preparation statements.
28392
28393 2010-04-22  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
28394
28395         * c-tree.h (push_init_level, pop_init_level, set_init_index)
28396         (process_init_element): New argument of type struct obstack *.
28397
28398         * c-typeck.c (push_init_level, pop_init_level, set_designator)
28399         (set_init_index, set_init_label, set_nonincremental_init)
28400         (set_nonincremental_init_from_string, find_init_member)
28401         (output_init_element, output_pending_init_elements)
28402         (process_init_element): New argument braced_init_obstack.  Pass it
28403         down.
28404         (push_range_stack, add_pending_init): New argument
28405         braced_init_obstack.  Use obstack allocation.
28406
28407         * c-parser.c (c_parser_initelt, c_parser_initval): New argument
28408         braced_init_obstack.  Pass it down.
28409         (c_parser_braced_init): New variables ret, braced_init_obstack.
28410         Initialize obstack, pass it down and finally free it.
28411
28412 2010-04-22  Bernd Schmidt  <bernds@codesourcery.com>
28413
28414         PR middle-end/29274
28415         * tree-pass.h (pass_optimize_widening_mul): Declare.
28416         * tree-ssa-math-opts.c (execute_optimize_widening_mul,
28417         gate_optimize_widening_mul): New static functions.
28418         (pass_optimize_widening_mul): New.
28419         * expr.c (expand_expr_real_2) <case WIDEN_MULT_EXPR>: New case.
28420         <case MULT_EXPR>: Remove support for widening multiplies.
28421         * tree.def (WIDEN_MULT_EXPR): Tweak comment.
28422         * cfgexpand.c (expand_debug_expr) <case WIDEN_MULT_EXPR>: Use
28423         simplify_gen_unary rather than directly building extensions.
28424         * tree-cfg.c (verify_gimple_assign_binary): Add tests for
28425         WIDEN_MULT_EXPR.
28426         * expmed.c (expand_widening_mult): New function.
28427         * passes.c (init_optimization_passes): Add pass_optimize_widening_mul.
28428
28429 2010-04-21  Jan Hubicka  <jh@suse.cz>
28430
28431         * timevar.def (TV_WHOPR_WPA_FIXUP): Remove.
28432         * lto-section-in.c (lto_section_name): Remove wpa_fixup.
28433         * lto-wpa-fixup.c: Remove.
28434         * Makefile.in (lto-wpa-fixup.o): Remove.
28435         * passes.c (init_optimization_passes): Remove pass_ipa_lto_wpa_fixup.
28436         (execute_all_ipa_transforms): Set cgraph_state to CGRAPH_STATE_IPA_SSA.
28437         * lto-streamer.c (lto_get_section_name): Remove wpa_fixup section.
28438
28439 2010-04-21  Jan Hubicka  <jh@suse.cz>
28440
28441         * tree-pass.h (ipa_opt_pass_d): Rename function_read_summary;
28442         add write_optimization_summary, read_optimization_summary.
28443         (ipa_write_summaries_of_cgraph_node_set): Remove.
28444         (ipa_write_optimization_summaries): Declare.
28445         (ipa_read_optimization_summaries): Declare.
28446         * ipa-cp.c (pass_ipa_cp): Update.
28447         * ipa-reference.c (pass_ipa_reference): Update.
28448         * ipa-pure-const.c (pass_ipa_pure_const): Update.
28449         * lto-streamer-out.c (pass_ipa_lto_gimple, pass_ipa_lto_finish):
28450         Update.
28451         * ipa-inline.c (pass_ipa_inline): Update.
28452         * ipa.c (pass_ipa_whole_program): Update.
28453         * lto-wpa-fixup.c (pass_ipa_lto_wpa_fixup): Update.
28454         * passes.c (ipa_write_summaries_1): Do not test wpa.
28455         (ipa_write_optimization_summaries_1): New.
28456         (ipa_write_optimization_summaries): New.
28457         (ipa_read_summaries): Do not test ltrans.
28458         (ipa_read_optimization_summaries_1): New.
28459         (ipa_read_optimization_summaries): New.
28460
28461 2010-04-21  Jan Hubicka  <jh@suse.cz>
28462
28463         * lto-cgraph.c (lto_output_node): Do not output comdat groups
28464         for boundary nodes.
28465         (output_cgraph): Do not arrange comdat groups for boundary nodes.
28466
28467 2010-04-21  Jakub Jelinek  <jakub@redhat.com>
28468
28469         PR debug/40040
28470         * dwarf2out.c (add_name_and_src_coords_attributes): Add
28471         DW_AT_{,MIPS_}linkage_name even for Fortran decls.
28472
28473 2010-04-21  Jan Hubicka  <jh@suse.cz>
28474
28475         * ipa-prop.c (ipa_edge_removal_hook): Check for bounds.
28476
28477 2010-04-21  Jan Hubicka  <jh@suse.cz>
28478
28479         * varpool.c (decide_is_variable_needed): Variable is always needed
28480         during ltrans.
28481
28482 2010-04-21  Jan Hubicka  <jh@suse.cz>
28483
28484         * opts.c (decode_options): Enable pure-const pass for whopr.
28485
28486 2010-04-21  Jan Hubicka  <jh@suse.cz>
28487
28488         * cgraph.c (dump_cgraph_node): Dump also assembler name.
28489         * ipa-inline.c (cgraph_decide_inlining_of_small_functions): Do not ice
28490         at WPA dumping.
28491         (cgraph_decide_inlining): Do not expect callee to be removed in all
28492         cases.
28493
28494 2010-04-21  Eric B. Weddington  <eric.weddington@atmel.com>
28495
28496         * config/avr/avr-devices.c (avr_mcu_types): Add missing comma.
28497
28498 2010-04-21  Uros Bizjak  <ubizjak@gmail.com>
28499
28500         * config/i386/i386.md (x86_shrd): Add athlon_decode and
28501         amdfam10_decode attributes.
28502
28503 2010-04-21  Jakub Jelinek  <jakub@redhat.com>
28504
28505         PR middle-end/43570
28506         * omp-low.c (scan_sharing_clauses): Don't scan_omp_op
28507         OMP_CLAUSE_DECL for OMP_CLAUSE_COPYPRIVATE.
28508         (lower_copyprivate_clauses): Use private var in outer
28509         context instead of original var.  Make sure the types
28510         are correct for VLAs.
28511
28512 2010-04-21  Richard Guenther  <rguenther@suse.de>
28513
28514         * tree-ssa-structalias.c (do_ds_constraint): Avoid escaping
28515         to non-pointer objects.
28516
28517 2010-04-21  Jakub Jelinek  <jakub@redhat.com>
28518
28519         * dwarf2out.c (add_var_loc_to_decl): Add LABEL argument.  Drop
28520         last chain entry if it starts with the still current label.
28521         (add_location_or_const_value_attribute): Check that
28522         loc_list->first->next is NULL instead of comparing ->first with ->last.
28523         (dwarf2out_var_location): Pass last_label resp. last_postcall_label
28524         to add_var_loc_to_decl.
28525
28526         * dwarf2out.c (output_call_frame_info): For dw_cie_version
28527         >= 4 add also address size and segment size fields into CIE header.
28528
28529         * unwind-dw2.c (extract_cie_info): Handle CIE version 4, as
28530         long as address size is the same as sizeof (void *) and
28531         segment size is 0.
28532         * unwind-dw2-fde.c (get_cie_encoding): Likewise.  If
28533         address size or segment size is unexpected, return DW_EH_PE_omit.
28534         (classify_object_over_fdes): If get_cie_encoding returned
28535         DW_EH_PE_omit, return -1.
28536         (init_object): If classify_object_over_fdes returned -1,
28537         pretend there were no FDEs at all.
28538
28539 2010-04-21  Uros Bizjak  <ubizjak@gmail.com>
28540
28541         * config/i386/i386.md (bswap<mode>2): Macroize expander from
28542         bswap{si,di}2 using SWI48 mode iterator.
28543         (*bswap<mode>2_movbe): Macroize insn from *bswap{si,di}_movbe using
28544         SWI48 mode iterator.  Set type attribute of bswap insn to bitmanip,
28545         set modrm attribute of bswap insn to 0 and remove length attribute.
28546         (*bswap<mode>2_1): Macroize insn from *bswap{si,di}_1 using SWI48 mode
28547         iterator.  Set type attribute to bitmanip, set modrm attribute to 0,
28548         set mode attribute to <MODE> and remove length attribute.
28549
28550 2010-04-20  James E. Wilson  <wilson@codesourcery.com>
28551
28552         PR rtl-optimization/43520
28553         * ira-lives.c (ira_implicitly_set_insn_hard_regs): Exclude classes with
28554         zero available registers.
28555
28556 2010-04-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
28557
28558         * builtins.c (fold_builtin_cproj): Fold more cases.
28559
28560 2010-04-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
28561
28562         * builtins.c (build_complex_cproj, fold_builtin_cproj): New.
28563         (fold_builtin_1): Fold builtin cproj.
28564         * builtins.def (BUILT_IN_CPROJ, BUILT_IN_CPROJF, BUILT_IN_CPROJL):
28565         Use ATTR_CONST_NOTHROW_LIST.
28566
28567 2010-04-20  Uros Bizjak  <ubizjak@gmail.com>
28568
28569         * config/i386/i386.md (ffs<mode>2): Macroize expander from ffs_cmove
28570         and ffsdi2 using SWI48 mode iterator.  Expand SImode insn through
28571         ffsi2_no_cmove for !TARGET_CMOVE.
28572         (ffssi2_no_cmove): Rename from *ffs_no_cmove.  Make public.
28573         (ffssi2): Remove expander.
28574         (*ffs<mode>_1): Macroize insn from *ffs{si,di} using SWI48
28575         mode iterator.
28576         (ctz<mode>2): Ditto from ctz{si,di}2.
28577         (clz<mode>2): Macroize expander from ctz{hi,si,di}2 using SWI248
28578         mode iterator.
28579         (clz<mode>2_abm): Macroize insn from clz{hi,si,di}2_abm using SWI248
28580         mode iterator.
28581
28582 2010-04-20  Jakub Jelinek  <jakub@redhat.com>
28583
28584         * dwarf2out.c (AT_linkage_name): Define.
28585         (clone_as_declaration): Handle DW_AT_linkage_name.
28586         (add_name_and_src_coords_attributes): Use AT_linkage_name instead
28587         of DW_AT_MIPS_linkage_name.
28588         (move_linkage_attr): Likewise.
28589         (dwarf2out_finish): Likewise.
28590
28591 2010-04-20  Xinliang David Li  <davidxl@gcc.gnu.org>
28592
28593         PR middle-end/41952
28594         * fold-const.c (fold_comparison): New folding rule.
28595
28596 2010-04-20  Anatoly Sokolov  <aesok@post.ru>
28597
28598         * double-int.h (double_int_setbit): Declare.
28599         * double-int.c (double_int_setbit): New function.
28600         * rtl.h (immed_double_int_const): Declare.
28601         * emit-rtl.c (immed_double_int_const): New function.
28602         * builtins.c (expand_builtin_signbit): Clean up, use double_int_*
28603         and immed_double_int_const functions.
28604         * optabs.c (expand_absneg_bit, expand_copysign_absneg,
28605         expand_copysign_bit): (Ditto.).
28606         * simplify-rtx.c (simplify_binary_operation_1): (Ditto.).
28607         * tree-ssa-address.c (addr_for_mem_ref): (Ditto.).
28608         * dojump.c (prefer_and_bit_test): (Ditto.).
28609         * expr.c (convert_modes, reduce_to_bit_field_precision,
28610         const_vector_from_tree): (Ditto.).
28611         * expmed.c (mask_rtx, lshift_value): (Ditto.).
28612
28613 2010-04-20  Jan Hubicka  <jh@suse.cz>
28614
28615         * cgraph.c (cgraph_remove_node): Kill bodies in other partitoin.
28616         (dump_cgraph_node): Dump new flags.
28617         * cgraph.h (struct cgraph_node): Add flags
28618         reachable_from_other_partition and in_other_partition.
28619         (cgraph_can_remove_if_no_direct_calls_p): Functions used by
28620         other partition can not be removed.
28621         * cgraphunit.c (cgraph_mark_functions_to_output): Functions used by
28622         the other partition must be output; silence sanity checking on
28623         leaking functions bodies from other paritition.
28624         * lto-cgraph.c (reachable_from_other_partition_p): New function.
28625         (lto_output_node): Output new flags; do not sanity check that inline
28626         clones are output; drop lto_forced_extern_inline_p code; do not mock
28627         visibility flags at partition boundaries.
28628         (add_node_to): New function.
28629         (output_cgraph): Use it to sort functions so masters appear before
28630         clones.
28631         (input_overwrite_node): Input new flags.
28632         * passes.c (ipa_write_summaries): Do not call
28633         lto_new_extern_inline_states.
28634         * lto-section-out.c (forced_extern_inline,
28635         lto_new_extern_inline_states lto_delete_extern_inline_states,
28636         lto_force_functions_extern_inline, lto_forced_extern_inline_p): Kill.
28637         * lto-streamer.h (lto_new_extern_inline_states,
28638         * lto_delete_extern_inline_states, lto_force_functions_extern_inline,
28639         lto_forced_extern_inline_p): Kill.
28640
28641 2010-04-20  Richard Guenther  <rguenther@suse.de>
28642
28643         * tree-ssa-structalias.c (do_sd_constraint): Add edges only
28644         from vars that can have pointers.
28645         (process_constraint): Dump useless constraints.
28646
28647 2010-04-20  Richard Guenther  <rguenther@suse.de>
28648
28649         * tree-ssa-structalias.c (do_structure_copy): Properly handle DEREF.
28650         (dump_sa_points_to_info): Remove asserts.
28651         (init_base_vars): nothing_id isn't an escape point nor does it
28652         have pointers.
28653
28654 2010-04-20  Jakub Jelinek  <jakub@redhat.com>
28655
28656         * tree.h (TYPE_REF_IS_RVALUE): Define.
28657         * dwarf2out.c (attr_checksum_ordered, is_type_die, is_comdat_die,
28658         should_move_die_to_comdat, prune_unused_types_walk): Handle
28659         DW_TAG_rvalue_reference_type like DW_TAG_reference_type.
28660         (modified_type_die, gen_reference_type_die): Emit
28661         DW_TAG_rvalue_reference_type instead of DW_TAG_reference_type
28662         if TYPE_REF_IS_RVALUE and -gdwarf-4.
28663
28664 2010-04-20  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
28665
28666         PR target/43635
28667         * config/s390/s390.c (s390_emit_call): Turn direct into indirect
28668         calls for -fpic -m31 if they have been sibcall optimized.
28669
28670 2010-04-19  James E. Wilson  <wilson@codesourcery.com>
28671
28672         * config/ia64/ia64.h (FIXED_REGISTERS, CALL_USED_REGISTERS): Make
28673         ar.lc fixed and call-used.
28674
28675         * config/ia64/ia64.c (TARGET_INVALID_WITHIN_DOLOOP): Define.
28676
28677 2010-04-19  Jan Hubicka  <jh@suse.cz>
28678
28679         * opts.c (decode_options): Disable whpr incompatible passes.
28680         * lto/lto.c (lto_1_to_1_map): Skip clones.
28681         (read_cgraph_and_symbols): Do not mark everything as needed.
28682         (do_whole_program_analysis): Do map only after optimizing;
28683         set proper cgraph_state; use passmanager.
28684
28685 2010-04-19  DJ Delorie  <dj@redhat.com>
28686
28687         * cfgexpand.c (expand_debug_expr): Check for mismatched modes in
28688         POINTER_PLUS_EXPR and fix them.
28689
28690 2010-04-19  Eric B. Weddington  <eric.weddington@atmel.com>
28691
28692         * config/avr/avr-devices.c (avr_mcu_types): Add support for new
28693         devices atmega644pa, attiny2313a, attiny24a, attiny261a, attiny4313,
28694         attiny44a, attiny861a, atmega16a, atmega168a, atmega164a, atmega165a,
28695         atmega169a, atmega169pa, atmega16hva2, atmega324a, atmega324pa,
28696         atmega325a, atmega3250a, atmega328, atmega329a, atmega329pa,
28697         atmega3290a, atmega48a, atmega644a, atmega645a, atmega645p,
28698         atmega6450a, atmega6450p, atmega649a, atmega649p, atmega6490a,
28699         atmega6490p, atmega64hve, atmega88a, atmega88pa, attiny461a, attiny84a,
28700         m3000. Remove support for devices atmega8m1, atmega8c1, atmega16c1,
28701         atmega4hvd, atmega8hvd, attiny327, m3000f, m3000s, m3001b.
28702         * config/avr/t-avr.c (MULTILIB_MATCHES): Same.
28703
28704 2010-04-19  Eric Botcazou  <ebotcazou@adacore.com>
28705
28706         * ifcvt.c (noce_try_cmove_arith): Fix long lines.
28707         (check_cond_move_block): Likewise.
28708         (cond_move_process_if_block): Likewise.
28709         (noce_find_if_block): Improve formatting.
28710         (find_if_header): Pass 0 to memset and tweak conditions.
28711         (cond_exec_find_if_block): Fix long lines and tweak conditions.
28712
28713 2010-04-19  Jakub Jelinek  <jakub@redhat.com>
28714
28715         * dwarf2out.c (lower_bound_default): For DW_LANG_Python return 0
28716         for -gdwarf-4.
28717
28718         PR middle-end/43337
28719         * tree-nested.c (convert_nonlocal_omp_clauses): OMP_CLAUSE_PRIVATE
28720         with non-local decl doesn't need chain.
28721
28722 2010-04-19  Vladimir Makarov  <vmakarov@redhat.com>
28723
28724         * ira-color.c (allocno_reload_assign): Avoid accumulating
28725         reload registers in ALLOCNO_TOTAL_CONFLICT_HARD_REGS.
28726
28727 2010-04-19  Martin Jambor  <mjambor@suse.cz>
28728
28729         * gimple.h (create_tmp_reg): Declare.
28730         * gimplify.c (create_tmp_reg): New function.
28731         (gimplify_return_expr): Use create_tmp_reg.
28732         (gimplify_omp_atomic): Likewise.
28733         (gimple_regimplify_operands): Likewise.
28734         * tree-dfa.c (make_rename_temp): Likewise.
28735         * tree-predcom.c (predcom_tmp_var): Likewise.
28736         (reassociate_to_the_same_stmt): Likewise.
28737         * tree-sra.c (replace_uses_with_default_def_ssa_name): Likewise.
28738         (get_replaced_param_substitute): Likewise.
28739         * tree-ssa-phiprop.c (phiprop_insert_phi): Likewise.
28740         * tree-ssa-phiopt.c (cond_store_replacement): Likewise.
28741         * tree-ssa-pre.c (get_representative_for): Likewise.
28742         (create_expression_by_pieces): Likewise.
28743         * tree-tailcall.c (adjust_return_value_with_ops): Likewise.
28744         (create_tailcall_accumulator): Likewise.
28745
28746 2010-04-19  Martin Jambor  <mjambor@suse.cz>
28747
28748         * cgraphunit.c (cgraph_redirect_edge_call_stmt_to_callee): Update
28749         new_stmt.
28750         (cgraph_materialize_all_clones): Assert !need_ssa_update_p.
28751
28752 2010-04-19  Richard Guenther  <rguenther@suse.de>
28753
28754         PR tree-optimization/43796
28755         * tree-vrp.c (adjust_range_with_scev): Lookup init and step
28756         from SCEV in the lattice.
28757         (vrp_visit_phi_node): Dump change.
28758
28759 2010-04-19  Richard Guenther  <rguenther@suse.de>
28760
28761         * configure.ac: Fix quoting around elf_getshstrndx ABI check.
28762         * configure: Re-generated.
28763
28764 2010-04-19  Richard Guenther  <rguenther@suse.de>
28765
28766         PR tree-optimization/43783
28767         * tree-ssa-pre.c (create_component_ref_by_pieces_1): Drop
28768         constant ARRAY_REF operands two and three if possible.
28769
28770 2010-04-19  Uros Bizjak  <ubizjak@gmail.com>
28771
28772         PR target/43766
28773         * config/i386/i386.c (ix86_decompose_address): Handle ASHIFT addends.
28774
28775 2010-04-19  Jie Zhang  <jie@codesourcery.com>
28776
28777         PR target/43662
28778         * reginfo.c (reinit_regs): Set caller_save_initialized_p to false.
28779
28780 2010-04-19  Ira Rosen  <irar@il.ibm.com>
28781
28782         PR tree-optimization/37027
28783         * tree-vectorizer.h (struct _loop_vec_info): Add new field reductions
28784         and macro to access it.
28785         (vectorizable_reduction): Add argument.
28786         (vect_get_slp_defs): Likewise.
28787         * tree-vect-loop.c (vect_analyze_scalar_cycles_1): Collect reduction
28788         statements for possible use in SLP.
28789         (new_loop_vec_info): Initialize LOOP_VINFO_REDUCTIONS.
28790         (destroy_loop_vec_info): Free LOOP_VINFO_REDUCTIONS.
28791         (vect_create_epilog_for_reduction): Handle SLP. Modify documentation,
28792         add new argument.
28793         (vectorizable_reduction): Likewise.
28794         * tree-vect-stmts.c (vect_get_vec_defs): Update call to
28795         vect_get_slp_defs.
28796         (vectorizable_type_demotion, vectorizable_type_promotion,
28797         vectorizable_store): Likewise.
28798         (vect_analyze_stmt): Update call to vectorizable_reduction.
28799         (vect_transform_stmt): Likewise.
28800         * tree-vect-slp.c (vect_get_and_check_slp_defs): Handle reduction.
28801         (vect_build_slp_tree): Fix indentation. Check that there are no loads
28802         from different interleaving chains in same node.
28803         (vect_slp_rearrange_stmts): New function.
28804         (vect_supported_load_permutation_p): Allow load permutations for
28805         reductions. Call vect_slp_rearrange_stmts() to rearrange statements
28806         inside SLP nodes if necessary.
28807         (vect_analyze_slp_instance): Handle reductions.
28808         (vect_analyze_slp): Try to build SLP instances originating from groups
28809         of reductions.
28810         (vect_detect_hybrid_slp_stmts): Skip reduction statements.
28811         (vect_get_constant_vectors): Create initial vectors for reductions
28812         according to reduction code. Add new argument.
28813         (vect_get_slp_defs): Add new argument, pass it to
28814         vect_get_constant_vectors.
28815         (vect_schedule_slp_instance): Remove SLP tree root statements.
28816
28817 2010-04-19  Jakub Jelinek  <jakub@redhat.com>
28818
28819         * tree.h (ENUM_IS_SCOPED): Define.
28820         * dwarf2out.c (gen_enumeration_type_die): Add DW_AT_enum_class
28821         for ENUM_IS_SCOPED enums.
28822
28823 2010-04-18  Eric Botcazou  <ebotcazou@adacore.com>
28824
28825         * fold-const.c (fold_comparison): Use ssizetype.
28826         * gimple-fold.c (maybe_fold_offset_to_array_ref): Likewise.
28827         * ipa-prop.c (ipa_modify_call_arguments): Use sizetype.
28828         * tree-loop-distribution.c (build_size_arg_loc): Likewise.
28829         * tree-object-size.c (compute_object_sizes): Use size_type_node.
28830
28831         * tree.h (initialize_sizetypes): Remove parameter.
28832         (build_common_tree_nodes): Remove second parameter.
28833         * stor-layout.c (initialize_sizetypes): Remove parameter.
28834         Always create an unsigned type.
28835         (set_sizetype): Assert that the passed type is unsigned and simplify.
28836         * tree.c (build_common_tree_nodes): Remove second parameter.
28837         Adjust call to initialize_sizetypes.
28838         * c-decl.c (c_init_decl_processing): Remove second argument in call to
28839         build_common_tree_nodes.
28840
28841 2010-04-18  Matthias Klose  <doko@ubuntu.com>
28842
28843         * gcc.c (main): Search for liblto_plugin.so with mode R_OK.
28844
28845 2010-04-18  Ira Rosen  <irar@il.ibm.com>
28846
28847         PR tree-optimization/43771
28848         * tree-vect-slp.c (vect_supported_load_permutation_p): Check that
28849         load permutation doesn't have gaps.
28850
28851 2010-04-18  Jan Hubicka  <jh@suse.cz>
28852
28853         * i386.md (UNSPEC_SSE_PROLOGUE_SAVE_LOW): New.
28854         (sse_prologue_save_insn expander): Use new pattern.
28855         (sse_prologue_save_insn1): New pattern and splitter.
28856         (sse_prologue_save_insn): Update to deal also with 64bit aligned
28857         blocks.
28858         * i386.c (setup_incoming_varargs_64): Do not compute jump
28859         destination here.
28860         (ix86_gimplify_va_arg): Update alignment needed.
28861         (ix86_local_alignment): Do not align all local arrays to 128bit.
28862
28863 2010-04-17  Jan Hubicka  <jh@suse.cz>
28864
28865         * ipa-inline.c (cgraph_early_inlining): Handle flattening too.
28866
28867 2010-04-17  Richard Earnshaw  <rearnsha@arm.com>
28868
28869         * arm.md (negdi2): Remove redundant code to force values into a
28870         register.
28871
28872 2010-04-17  Richard Earnshaw  <rearnsha@arm.com>
28873
28874         * arm/bpabi.S: Add EABI alignment attributes to objects.
28875         * arm/bpabi-v6m.S: Likewise.
28876         * arm/crti.asm: Likewise.
28877         * arm/crtn.asm: Likewise.
28878         * arm/lib1funcs.asm: Likewise.
28879         * arm/libunwind.S: Likewise.
28880
28881 2010-04-17  Richard Earnshaw  <rearnsha@arm.com>
28882
28883         * arm-protos.h (tune_params): New structure.
28884         * arm.c (current_tune): New variable.
28885         (arm_constant_limit): Delete.
28886         (struct processors): Add pointer to the tune parameters.
28887         (arm_slowmul_tune): New tuning option.
28888         (arm_fastmul_tune, arm_xscale_tune, arm_9e_tune): Likewise.
28889         (all_cores): Adjust to pick up the tuning model.
28890         (arm_constant_limit): New function.
28891         (arm_override_options): Select the appropriate tuning model.  Delete
28892         initialization of arm_const_limit.
28893         (arm_split_constant): Use the new constant-limit model.
28894         (arm_rtx_costs): Pick up the current tuning model.
28895         * arm.md (is_strongarm, is_xscale): Delete.
28896         * arm-generic.md (load_ldsched_x, load_ldsched): Test explicitly
28897         for Xscale variant architectures.
28898         (mult_ldsched_strongarm, mult_ldsched): Similarly for StrongARM.
28899
28900 2010-04-17  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
28901
28902         * config/arm/arm.c (arm_gen_constant): Remove unused variable
28903         can_shift.
28904         (arm_rtx_costs_1): Remove unused variable extra_cost.
28905         (arm_unwind_emit_set): Use variable offset.
28906         (thumb1_output_casesi): Remove unused variable flags.
28907
28908 2010-04-16  Jeff Law  <law@redhat.com>
28909
28910         * ira-color.c (ira_reassign_pseudos): Collect and sort all the pseudos
28911         needing assignment rather than doing a two-phase assignment.  Remove
28912         unused variable 'm'.
28913
28914 2010-04-16  Jakub Jelinek  <jakub@redhat.com>
28915
28916         PR bootstrap/43767
28917         * alias.c (memrefs_conflict_p): Don't crash if CSELIB_VAL_PTR is NULL.
28918
28919 2010-04-16  Doug Kwan  <dougkwan@google.com>
28920
28921         * tree-ssa-reassoc.c (struct operand_entry): Add new field ID.
28922         (next_operand_entry_id): New static variable.
28923         (sort_by_operand_rank): Stabilize qsort comparator by using unique IDs.
28924         (add_to_ops_vec): Assigned unique ID to operand entry.
28925         (struct oecount_s): New field ID.
28926         (oecount_cmp): Stabilize qsort comparotor by using unique IDs.
28927         (undistribute_ops_list): Assign unique IDs to oecounts.
28928         (init_reassoc): reset next_operand_entry_id.
28929
28930 2010-04-16  Doug Kwan  <dougkwan@google.com>
28931
28932         * config/i386/i386.md (*jcc_bt<mode>): Fix build breakage by adding
28933         missing left parenthesis.
28934
28935 2010-04-16  Uros Bizjak  <ubizjak@gmail.com>
28936
28937         * config/i386/i386.md (*bt<mode>): Macroize insn from *btsi and
28938         *btdi_rex64 using SWI48 mode iterator.
28939         (*jcc_bt<mode>): Ditto from *jcc_btsi and *jcc_btdi_rex64.
28940         (*jcc_bt<mode>_mask): Ditto from *jcc_btsi_mask and
28941         *jcc_btdi_mask_rex64.
28942
28943 2010-04-16  Anatoly Sokolov  <aesok@post.ru>
28944
28945         * double-int.h (tree_to_double_int): Convert to macro.
28946         * double-int.c (tree_to_double_int): Remove.
28947
28948 2010-04-16  Jakub Jelinek  <jakub@redhat.com>
28949
28950         PR debug/43762
28951         * dwarf2out.c (add_bound_info): Always call loc_list_from_tree
28952         with want_address 2 and in case a single element list might be
28953         possible, call it again with want_address 0.
28954
28955 2010-04-12  Kaushik Phatak  <kaushik.phatak@kpitcummins.com>
28956
28957         * config/h8300/h8300.c (print_operand) : Modify case 'V' and
28958         case 'W' print operands for HI mode.
28959         * config/h8300/h8300.h (Y0, Y2) : New constraints.
28960         * config/h8300/h8300.md (bclrqi_msx, bclrhi_msx): New patterns
28961         (bsetqi_msx, bsethi_msx, bnotqi_msx, bnothi_msx): Likewise.
28962         * config/h8300/predicate.md (bit_register_indirect_operand): New.
28963
28964         * config/h8300/h8300.h (OK_FOR_U): Support 'U' constraint for H8300SX.
28965
28966         * config/h8300/h8300.md (movqi_h8sx, movhi_h8sx, movsi_h8sx,
28967         cmphi_h8300hs_znvc, cmpsi, addhi3_h8sx) : Emit instructions in
28968         #xx:3 and #xx:4 mode.
28969
28970         * config/h8300/h8300.md (inverted load with HImode dest): Add
28971         support for H8300SX.
28972
28973         * config/h8300/predicate.md (bit_operand): Allow immediate values that
28974         satisfy 'U' constraint.
28975
28976 2010-04-16  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
28977
28978         * configure.ac: Check for elf_getshdrstrndx or elf_getshstrndx flavor.
28979         * configure: Regenerate.
28980         * config.in: Regenerate.
28981         * doc/install.texi (Prerequisites): Document that Solaris 2 libelf
28982         works.
28983
28984 2010-04-16  Richard Guenther  <rguenther@suse.de>
28985
28986         * tree.h (struct tree_decl_minimal): Move pt_uid ...
28987         (struct tree_decl_common): ... here.
28988         (DECL_PT_UID): Adjust.
28989         (SET_DECL_PT_UID): Likewise.
28990         (DECL_PT_UID_SET_P): Likewise.
28991
28992 2010-04-16  Richard Guenther  <rguenther@suse.de>
28993
28994         PR tree-optimization/43572
28995         * tree-ssa-alias.h (call_may_clobber_ref_p): Declare.
28996         * tree-ssa-alias.c (call_may_clobber_ref_p): Export.
28997         * tree-flow.h (is_call_clobbered): Remove.
28998         * tree-flow-inline.h (is_call_clobbered): Likewise.
28999         * tree-dfa.c (dump_variable): Do not dump call clobber state.
29000         * tree-nrv.c (dest_safe_for_nrv_p): Use the alias oracle.
29001         (execute_return_slot_opt): Adjust.
29002         * tree-tailcall.c (suitable_for_tail_opt_p): Remove
29003         check for call clobbered vars here.
29004         (find_tail_calls): Move tailcall verification to the
29005         proper place.
29006
29007 2010-04-16  Diego Novillo  <dnovillo@google.com>
29008
29009         * doc/invoke.texi: Explain how are unrecognized -Wno- warnings handled.
29010
29011 2010-04-16  Bernd Schmidt  <bernds@codesourcery.com>
29012
29013         PR target/40603
29014         * config/arm/arm.md (cbranchqi4): New pattern.
29015         * config/arm/predicates.md (const0_operand,
29016         cbranchqi4_comparison_operator): New predicates.
29017
29018 2010-04-16  Richard Guenther  <rguenther@suse.de>
29019
29020         * gimple-pretty-print.c (dump_gimple_phi): Dump alias info.
29021         (dump_gimple_stmt): Likewise.
29022
29023 2010-04-16  Bernd Schmidt  <bernds@codesourcery.com>
29024
29025         * recog.h (struct recog_data): New field is_operator.
29026         (struct insn_operand_data): New field is_operator.
29027         * recog.c (extract_insn): Set recog_data.is_operator.
29028         * genoutput.c (output_operand_data): Emit code to set the
29029         is_operator field.
29030         * reload.c (find_reloads): Use it rather than testing for an
29031         empty constraint string.
29032
29033         PR target/41514
29034         * config/arm/arm.md (cbranchsi4_insn): Renamed from "*cbranchsi4_insn".
29035         If the previous insn is a cbranchsi4_insn with the same arguments,
29036         omit the compare instruction.
29037
29038         * config/arm/arm.md (addsi3_cbranch): If destination is a high
29039         register, inputs must be low registers and we need a low register
29040         scratch.  Handle alternative 2 like alternative 3.
29041
29042 2010-04-16  Jakub Jelinek  <jakub@redhat.com>
29043
29044         * alias.c (memrefs_conflict_p): If x and y are the same VALUE,
29045         don't call get_addr on both.  If one expression is a VALUE and
29046         the other a REG, check VALUE's locs if the REG isn't among them.
29047
29048 2010-04-16  Christian Bruel  <christian.bruel@st.com>
29049
29050         * config/sh/sh.h (sh_frame_pointer_required): New function.
29051         * config/sh/sh.h (TARGET_FRAME_POINTER_REQUIRED): New macro.
29052         (flag_omit_frame_pointer) Set.
29053         (MASK_ACCUMULATE_OUTGOING_ARGS) Define and Set.
29054         (rounded_frame_size): Adjust size with outgoing_args_size.
29055         (sh_set_return_address): Must return from stack pointer.
29056         * config/sh/sh.h (CAN_DEBUG_WITHOUT_FP): Define.
29057         (SUBTARGET_FRAME_POINTER_REQUIRED): Define.
29058         (ACCUMULATE_OUTGOING_ARGS): Define.
29059         * doc/invoke.texi (maccumulate-outgoing-args): Document for SH.
29060         * config/sh/sh.opt (maccumulate-outgoing-args): New option.
29061
29062 2010-04-15  Kaz Kojima  <kkojima@gcc.gnu.org>
29063
29064         PR target/43471
29065         * config/sh/sh.c (sh_legitimize_reload_address): Use
29066         MAYBE_BASE_REGISTER_RTX_P instead of BASE_REGISTER_RTX_P.
29067         Remove a unneeded check for offset_base.
29068
29069 2010-04-15  H.J. Lu  <hongjiu.lu@intel.com>
29070
29071         * configure: Regenerated.
29072
29073 2010-04-15  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
29074
29075         * config/s390/s390.c (s390_call_save_register_used): Switch back
29076         to HARD_REGNO_NREGS.
29077
29078 2010-04-15  Richard Guenther  <rguenther@suse.de>
29079
29080         * alias.c (alias_set_subset_of): Handle alias-set zero
29081         child properly.
29082
29083 2010-04-15  Mark Shinwell  <shinwell@codesourcery.com>
29084             Julian Brown  <julian@codesourcery.com>
29085
29086         * config/arm/thumb2.md (thumb2_movsi_insn): Split ldr and str
29087         alternatives according to use of high and low regs.
29088         * config/arm/vfp.md (thumb2_movsi_vfp): Likewise.
29089         * config/arm/arm.h (CONDITIONAL_REGISTER_USAGE): Use high regs when
29090         optimizing for size on Thumb-2.
29091
29092 2010-04-15  Thomas Schwinge  <tschwinge@gnu.org>
29093
29094         * config.gcc <i[34567]86-*-gnu*>: Handle softfp as for Linux.
29095
29096 2010-04-15  Richard Guenther  <rguenther@suse.de>
29097
29098         * tree-ssa-structalias.c (struct variable_info): Add
29099         is_fn_info flag.
29100         (new_var_info): Initialize it.
29101         (dump_constraints): Support printing last added constraints.
29102         (debug_constraints): Adjust.
29103         (dump_constraint_graph): Likewise.
29104         (make_heapvar_for): Check for NULL cfun.
29105         (get_function_part_constraint): New function.
29106         (get_fi_for_callee): Likewise.
29107         (find_func_aliases): Properly implement IPA PTA constraints.
29108         (process_ipa_clobber): New function.
29109         (find_func_clobbers): Likewise.
29110         (insert_into_field_list_sorted): Remove.
29111         (create_function_info_for): Properly allocate vars for IPA mode.
29112         Do not use insert_into_field_list_sorted.
29113         (create_variable_info_for): Properly generate constraints for
29114         global vars in IPA mode.
29115         (dump_solution_for_var): Always dump the solution.
29116         (set_uids_in_ptset): Initialize DECL_PT_UID if in ipa-mode.
29117         (find_what_var_points_to): Adjust.
29118         (pt_solution_set): Change.
29119         (pt_solution_ior_into): New function.
29120         (pt_solution_empty_p): Export.
29121         (pt_solution_includes_global): Adjust.
29122         (pt_solution_includes_1): Likewise.
29123         (pt_solutions_intersect_1): Likewise.
29124         (dump_sa_points_to_info): Check some invariants.
29125         (solve_constraints): Move constraint dumping ...
29126         (compute_points_to_sets): ... here.
29127         (ipa_pta_execute): ... and here.
29128         (compute_may_aliases): Do not re-compute points-to info
29129         locally if IPA info is available.
29130         (ipa_escaped_pt): New global var.
29131         (ipa_pta_execute): Properly implement IPA PTA.
29132         * tree-into-ssa.c (dump_decl_set): Support dumping
29133         decls not in referenced-vars.
29134         * tree-flow.h (struct gimple_df): Add ipa_pta flag.
29135         * tree-ssa-alias.c (ptr_deref_may_alias_decl_p): Adjust.
29136         (dump_points_to_solution): Likewise.
29137         * tree-dfa.c (dump_variable): Also dump DECL_PT_UID.
29138         * tree-inline.c (remap_ssa_name): Copy IPA points-to solution.
29139         (remap_gimple_stmt): Reset call clobber/use information if necessary.
29140         (copy_decl_to_var): Copy DECL_PT_UID.
29141         (copy_result_decl_to_var): Likewise.
29142         * tree.c (make_node_stat): Initialize DECL_PT_UID.
29143         (copy_node_stat): Copy it.
29144         * tree.h (DECL_PT_UID): New macro.
29145         (SET_DECL_PT_UID): Likewise.
29146         (DECL_PT_UID_SET_P): Likewise.
29147         (struct tree_decl_minimal): Add pt_uid member.
29148         * tree-ssa-alias.h (struct pt_solution): Add ipa_escaped flag.
29149         (pt_solution_empty_p): Declare.
29150         (pt_solution_set): Adjust.
29151         (ipa_escaped_pt): Declare.
29152         * cfgexpand.c (update_alias_info_with_stack_vars): Adjust.
29153         * gimple-pretty-print.c (pp_points_to_solution): New function.
29154         (dump_gimple_call): Dump call clobber/use information.
29155         * tree-dump.c (dump_option_value_in): Add TDF_ALIAS entry.
29156         * tree-pass.h (TDF_ALIAS): New dump option.
29157         * tree-pretty-print.c (dump_decl_name): Dump DECL_PT_UID if asked to.
29158         * doc/invoke.texi (-fipa-pta): Update documentation.
29159
29160 2010-04-15  Richard Guenther  <rguenther@suse.de>
29161
29162         * Makefile.in (OBJS-common): Add gimple-fold.o.
29163         (gimple-fold.o): New rule.
29164         * tree.h (maybe_fold_offset_to_reference,
29165         maybe_fold_offset_to_address, maybe_fold_stmt_addition): Move
29166         prototypes ...
29167         * gimple.h: ... here.
29168         * tree-flow.h (fold_stmt, fold_stmt_inplace, get_symbol_constant_value,
29169         may_propagate_address_into_dereference): Move prototypes ...
29170         * gimple.h: ... here.
29171         * tree-ssa-ccp.c (get_symbol_constant_value,
29172         may_propagate_address_into_dereference, maybe_fold_offset_to_array_ref,
29173         maybe_fold_offset_to_component_ref, maybe_fold_offset_to_reference,
29174         maybe_fold_offset_to_address, maybe_fold_stmt_indirect,
29175         maybe_fold_stmt_addition, maybe_fold_reference, get_maxval_strlen,
29176         ccp_fold_builtin, fold_gimple_assign, fold_gimple_cond,
29177         fold_gimple_call, fold_stmt_1, fold_stmt, fold_stmt_inplace,
29178         gimplify_and_update_call_from_tree): Move ...
29179         * gimple-fold.c: ... here.  New file.
29180         (ccp_fold_builtin): Rename to ...
29181         (gimple_fold_builtin): ... this.
29182         * tree-ssa-ccp.c (execute_fold_all_builtins): Adjust.
29183
29184 2010-04-15  Richard Guenther  <rguenther@suse.de>
29185
29186         * fold-const.c (LOWPART, HIGHPART, BASE, encode, decode,
29187         fit_double_type, force_fit_type_double, add_double_with_sign,
29188         neg_double, mul_double_with_sign, lshift_double, rshift_double,
29189         lrotate_double, rrotate_double, div_and_round_double): Move ...
29190         * double-int.c: ... here.
29191         * tree.h (force_fit_type_double, fit_double_type, add_double_with_sign,
29192         add_double, neg_double, mul_double_with_sign, mul_double,
29193         lshift_double, rshift_double, lrotate_double, rrotate_double,
29194         div_and_round_double): Move prototypes ...
29195         * double-int.h: ... here.
29196
29197 2010-04-15  Bernd Schmidt  <bernds@codesourcery.com>
29198
29199         PR target/43742
29200         * config/sh/sh.md (doloop_end_split, dect): Undo previous patch.  Use
29201         matching constraints to ensure inputs match the output.
29202
29203 2010-04-15  Kaz Kojima  <kkojima@gcc.gnu.org>
29204
29205         PR target/43742
29206         * config/sh/sh.md (doloop_end_split): Remove "+r" constraint
29207         in an input-only operand.
29208
29209 2010-04-15  Anatoly Sokolov  <aesok@post.ru>
29210
29211         * double-int.h (HOST_BITS_PER_DOUBLE_INT): Define.
29212         (double_int_not, double_int_lshift, double_int_rshift): Declare.
29213         (double_int_negative_p): Convert to static inline function.
29214         * double-int.c (double_int_lshift, double_int_lshift): New functions.
29215         (double_int_negative_p): Remove.
29216         * tree.h (lshift_double, rshift_double):
29217         * tree.c (build_low_bits_mask): Clean up, use double_int_* functions.
29218         * fold-const.c (fold_convert_const_int_from_real,
29219         fold_convert_const_int_from_fixed, div_if_zero_remainder): (Ditto.).
29220         (lshift_double): Change type of arith argument to bool.
29221         (rshift_double): Change type of arith argument to bool. Correct
29222         comment.
29223         * expmed.c (mask_rtx, lshift_value): (Ditto.).
29224
29225 2010-04-14  Bernd Schmidt  <bernds@codesourcery.com>
29226
29227         PR target/21803
29228         * ifcvt.c (cond_exec_process_if_block): Look for identical sequences
29229         at the start and end of the then/else blocks, and omit them from the
29230         conversion.
29231         * cfgcleanup.c (flow_find_cross_jump): No longer static.  Remove MODE
29232         argument; all callers changed.  Pass zero to old_insns_match_p instead.
29233         (flow_find_head_matching_sequence): New function.
29234         (old_insns_match_p): Check REG_EH_REGION notes for calls.
29235         * basic-block.h (flow_find_cross_jump,
29236         flow_find_head_matching_sequence): Declare functions.
29237
29238 2010-04-14  Jason Merrill  <jason@redhat.com>
29239
29240         PR c++/36625
29241         * c-common.c (attribute_takes_identifier_p): New fn.
29242         * c-common.h: Declare it.
29243
29244 2010-04-14  Uros Bizjak  <ubizjak@gmail.com>
29245
29246         * config/i386/i386.md (*divmod<mode>4): Remove stray "&&" from
29247         splitter condition.
29248         (*udivmod<mode>4): Ditto.
29249
29250 2010-04-14  Uros Bizjak  <ubizjak@gmail.com>
29251
29252         * config/i386/i386.md (maxmin_int): Rename code attribute from
29253         maxminiprefix and update all users.
29254         (maxmin_float): Ditto from maxminfprefix.
29255         (logic): Ditto from logicprefix.
29256         (absneg_mnemonic): Ditto from absnegprefix.
29257         * config/i386/mmx.md: Update all users of maxminiprefix,
29258         maxminfprefix and logicprefix for rename.
29259         * config/i386/sse.md: Ditto.
29260         * config/i386/sync.md (sync_<code><mode>): Update for
29261         logicprefix rename.
29262
29263 2010-04-14  Manuel López-Ibáñez  <manu@gcc.gnu.org>
29264
29265         PR 42966
29266         * diagnostics.c (diagnostic_report_diagnostic): Mark specially
29267         warnings converted to errors.
29268
29269 2010-04-14  Uros Bizjak  <ubizjak@gmail.com>
29270
29271         * config/alpha/alpha.c (alpha_adjust_cost): Remove set but not
29272         used insn_type variable.
29273         (function_value): Add ATTRIBUTE_UNUSED to dummy variable declaration
29274         to avoid set-but-not-used warning.
29275
29276 2010-04-14  Uros Bizjak  <ubizjak@gmail.com>
29277
29278         * df-core.c (df_ref_debug): Change format string placeholder
29279         from 0x%x to %#x.
29280         * dwarf2asm.c (dw2_asm_output_data_raw,
29281         dw2_asm_output_data_uleb128_raw, dw2_asm_output_data_uleb128,
29282         dw2_asm_output_data_sleb128_raw, dw2_asm_output_data_sleb128): Ditto.
29283         * dwarf2out.c (output_cfi, output_cfi_directive,
29284         dwarf2out_do_cfi_startproc, output_loc_sequence_raw,
29285         output_cfa_loc_raw, output_die, output_ranges, output_file_names):
29286         Ditto.
29287         * genattrtab.c (write_test_expr, write_attr_valueq): Ditto.
29288         * print-rtl.c (print_rtx): Ditto.
29289
29290 2010-04-14  Michael Meissner  <meissner@linux.vnet.ibm.com>
29291
29292         PR middle-end/42694
29293         * builtins.c (expand_builtin_pow_root): New function to expand pow
29294         calls with exponents 0.25, 0.50, 0.75, 1./3., and 1./6. into a
29295         series of sqrt and cbrt calls under -ffast-math.
29296         (expand_builtin_pow): Call it.
29297
29298 2010-04-14  Michael Matz  <matz@suse.de>
29299
29300         PR tree-optimization/42963
29301         * tree-cfg.c (touched_switch_bbs): New static variable.
29302         (group_case_labels_stmt): New function broken out from ...
29303         (group_case_labels): ... here, use the above.
29304         (start_recording_case_labels): Allocate touched_switch_bbs.
29305         (end_recording_case_labels): Deallocate it, call
29306         group_case_labels_stmt.
29307         (gimple_redirect_edge_and_branch): Remember index of affected BB.
29308
29309 2010-04-14  Uros Bizjak  <ubizjak@gmail.com>
29310
29311         * config/i386/i386.md (*popcountsi2_cmp_zext): Remove mode attribute
29312         from insn template.
29313
29314 2010-04-14  Uros Bizjak  <ubizjak@gmail.com>
29315
29316         * config/i386/i386.md (*ashlqi3_1_slp): New insn pattern.
29317
29318 2010-04-13  Jan Hubicka  <jh@suse.cz>
29319
29320         * ipa-inline.c (cgraph_mark_inline_edge): Avoid double accounting
29321         of optimized out static functions.
29322         (cgraph_edge_badness): Add DUMP parameter and dump reasons for the
29323         cost computation.  Also sanity check for overflows.
29324         (update_caller_keys): Update cgraph_edge_badness call; properly
29325         update fibheap and sanity check that it is up to date.
29326         (add_new_edges_to_heap): Update cgraph_edge_badness.
29327         (cgraph_decide_inlining_of_small_function): Likewise;
29328         add sanity checking that badness in heap is up to date;
29329         improve dumping of reason; Update badness of calls to the
29330         offline copy of function currently inlined; dump badness
29331         of functions not inlined because of unit growth limits.
29332
29333 2010-04-13  Eric Botcazou  <ebotcazou@adacore.com>
29334
29335         PR middle-end/32628
29336         * c-common.c (pointer_int_sum): Disregard overflow that occured only
29337         because of sign-extension change when converting to sizetype here...
29338         * fold-const.c (fold_convert_const_int_from_int): ...and not here.
29339
29340         * fold-const.c (fold_binary_op_with_conditional_arg): Do not restrict
29341         the folding to constants.  Remove redundant final conversion.
29342         (fold_binary) <associate>: Do not associate if the re-association of
29343         constants alone overflows.
29344         (fold_binary) <FLOOR_MOD_EXPR>: Move transformation into BIT_AND_EXPR
29345         to the end of the list.
29346         (multiple_of_p) <COND_EXPR>: New case.
29347
29348 2010-04-13  Manuel López-Ibáñez  <manu@gcc.gnu.org>
29349
29350         * opt-functions.awk (opt_sanitized_name): New.
29351         (opt_enum): New.
29352         * optc-gen.awk: Use it
29353         * opth-gen.awk: Use it.
29354
29355 2010-04-13  Martin Jambor  <mjambor@suse.cz>
29356
29357         * tree-sra.c (replace_uses_with_default_def_ssa_name): New function.
29358         (sra_modify_assign): Delete stmts loading dead data even if racc has no
29359         children.  Call replace_uses_with_default_def_ssa_name to handle
29360         SSA_NAES on lhs.
29361
29362 2010-04-13  Michael Matz  <matz@suse.de>
29363
29364         PR middle-end/43730
29365         * builtins.c (expand_builtin_interclass_mathfn): Also create
29366         a register if the predicate doesn't match.
29367
29368 2010-04-13  Diego Novillo  <dnovillo@google.com>
29369
29370         * Makefile.in (c-pch.o, ggc-common.o): Depend on timevar.h.
29371         * c-pch.c: Include timevar.h.
29372         (c_common_write_pch): Use TV_PCH_SAVE and TV_PCH_CPP_SAVE timers.
29373         (c_common_read_pch): Use TV_PCH_RESTORE and TV_PCH_CPP_RESTORE timers.
29374         * ggc-common.c: Include timevar.h.
29375         (gt_pch_save): Use TV_PCH_PTR_REALLOC and TV_PCH_PTR_SORT timers.
29376         * timevar.def (TV_PCH_SAVE): Define.
29377         (TV_PCH_CPP_SAVE): Define.
29378         (TV_PCH_PTR_REALLOC): Define.
29379         (TV_PCH_PTR_SORT): Define.
29380         (TV_PCH_RESTORE): Define.
29381         (TV_PCH_CPP_RESTORE): Define.
29382
29383 2010-04-13  Michael Matz  <matz@suse.de>
29384
29385         * tree-ssa-reassoc.c (repropagate_negates): Merge negates also
29386         into MINUS_EXPRs.
29387         (can_reassociate_p): New function.
29388         (break_up_subtract_bb, reassociate_bb): Use it.
29389
29390 2010-04-13  Richard Guenther  <rguenther@suse.de>
29391
29392         PR bootstrap/43737
29393         * builtins.c (c_readstr): Fix assert.
29394
29395 2010-04-13  Uros Bizjak  <ubizjak@gmail.com>
29396
29397         * config/i386/i386.md (extendsidi2 splitter): Also check for DX_REG
29398         when generating cltd insn.
29399
29400         (*ashl<mode>3_1): Remove special handling for register operand 2.
29401         (*ashlsi3_1_zext): Ditto.
29402         (*ashlhi3_1): Ditto.
29403         (*ashlhi3_1_lea): Ditto.
29404         (*ashlqi3_1): Ditto.
29405         (*ashlqi3_1_lea): Ditto.
29406         (*<shiftrt_insn><mode>3_1): Ditto.
29407         (*<shiftrt_insn>si3_1_zext): Ditto.
29408         (*<shiftrt_insn>qi3_1_slp): Ditto.
29409         (*<rotate_insn><mode>3_1): Ditto.
29410         (*<rotate_insn>si3_1_zext): Ditto.
29411         (*<rotate_insn>qi3_1_slp): Ditto.
29412
29413 2010-04-13  Richard Guenther  <rguenther@suse.de>
29414
29415         * tree-ssa-structalias.c (callused_id): Remove.
29416         (call_stmt_vars): New.
29417         (get_call_vi): Likewise.
29418         (lookup_call_use_vi): Likewise.
29419         (lookup_call_clobber_vi): Likewise.
29420         (get_call_use_vi): Likewise.
29421         (get_call_clobber_vi): Likewise.
29422         (make_transitive_closure_constraints): Likewise.
29423         (handle_const_call): Adjust to do per-call call-used handling.
29424         (handle_pure_call): Likewise.
29425         (find_what_var_points_to): Remove general callused handling.
29426         (init_base_vars): Likewise.
29427         (init_alias_vars): Initialize call_stmt_vars.
29428         (compute_points_to_sets): Process call-used and call-clobbered
29429         vars for call statements.
29430         (delete_points_to_sets): Free call_stmt_vars.
29431
29432 2010-04-13  Richard Guenther  <rguenther@suse.de>
29433
29434         * tree-vect-data-refs.c (vect_analyze_data_ref_dependence):
29435         Only add RW dependence for dependence distance zero.
29436         Adjust maximal vectorization factor according to dependences.
29437         Move alignment handling ...
29438         (vect_find_same_alignment_drs): ... here.  New function.
29439         (vect_analyze_data_ref_dependences): Adjust.
29440         (vect_analyze_data_refs_alignment): Call vect_find_same_alignment_drs.
29441         (vect_analyze_data_refs): Adjust minimal vectorization factor
29442         according to data references.
29443         * tree-vect-loop.c (vect_analyze_loop): Analyze data-ref
29444         dependences before determining the vectorization factor.
29445         Analyze alignment after determining the vectorization factor.
29446         * tree-vect-slp.c ((vect_slp_analyze_bb): Analyze data-ref
29447         dependences before alignment.
29448         * tree-vectorizer.h (vect_analyze_data_ref_dependences):
29449         Adjust prototype.
29450         (vect_analyze_data_refs): Likewise.
29451         (MAX_VECTORIZATION_FACTOR): New define.
29452
29453 2010-04-13  Duncan Sands  <baldrick@free.fr>
29454
29455         * except.h (lang_eh_type_covers): Remove.
29456         * except.c (lang_eh_type_covers): Likewise.
29457
29458 2010-04-13  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
29459             Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
29460
29461         * config/s390/s390.md: Replace TARGET_64BIT with TARGET_ZARCH.
29462         * config/s390/s390.c: Replace UNTIS_PER_WORD with
29463         UNITS_PER_LONG where it is ABI relevant.
29464         (s390_return_addr_rtx): Likewise.
29465         (s390_back_chain_rtx): Likewise.
29466         (s390_frame_area): Likewise.
29467         (s390_frame_info): Likewise.
29468         (s390_initial_elimination_offset): Likewise.
29469         (save_gprs): Likewise.
29470         (s390_emit_prologue): Likewise.
29471         (s390_emit_epilogue): Likewise.
29472         (s390_function_arg_advance): Likewise.
29473         (s390_function_arg): Likewise.
29474         (s390_va_start): Likewise.
29475         (s390_gimplify_va_arg): Likewise.
29476         (s390_function_profiler): Likewise.
29477         (s390_optimize_prologue): Likewise.
29478         (s390_rtx_costs): Likewise.
29479         (s390_secondary_reload): Likewise.
29480         (s390_promote_function_mode): Likewise.
29481         (s390_hard_regno_mode_ok): Replace TARGET_64BIT with TARGET_ZARCH.
29482         (s390_scalar_mode_supported_p): Disallow TImode if no 64 bit
29483         registers available.
29484         (s390_unwind_word_mode): New function.
29485         (s390_function_value): Split 64 bit values into register pair if
29486         used as return value.
29487         (s390_call_saved_register_used): Don't use HARD_REGNO_NREGS for
29488         function call parameters.  Handle parallels.
29489         (TARGET_SCALAR_MODE_SUPPORTED_P): New macro.
29490         (HARD_REGNO_CALL_PART_CLOBBERED): New macro.
29491         (DWARF_CIE_DATA_ALIGNMENT): New macro.
29492         (s390_expand_setmem): Remove unused variable src_addr.
29493         * longlong.h: Make smul_ppmm and sdiv_qrnnd inline asms to
29494         deal with 64 bit registers.
29495         * config/s390/s390.h: Define __zarch__ predefined macro.
29496         Replace UNITS_PER_WORD with UNITS_PER_LONG where it is ABI relevant.
29497         (UNITS_PER_LONG): New macro.
29498         * libjava/include/s390-signal.h: Define extended ucontext
29499         structure containing the upper halfs of the 64 bit registers.
29500
29501 2010-04-13  Simon Baldwin  <simonb@google.com>
29502
29503         * cfgexpand.c (gimple_expand_cfg): Clarify warning message text.
29504
29505 2010-04-13  Eric Botcazou  <ebotcazou@adacore.com>
29506
29507         * gimple.c (walk_gimple_op) <GIMPLE_ASSIGN>: Do not request a pure
29508         rvalue on the RHS if the LHS is of a non-renamable type.
29509         * tree-ssa-ccp.c (maybe_fold_offset_to_component_ref): Fold result.
29510
29511 2010-04-13  Matthias Klose  <doko@ubuntu.com>
29512
29513         * gcc.c (cc1_options): Handle -iplugindir before processing
29514         the cc1 spec. Only add -iplugindir once.
29515         (cpp_unique_options): Add -iplugindir option if -fplugin* options
29516         found.
29517         * common.opt (iplugindir): Remove `Separate' property, initialize.
29518         * plugin.c (default_plugin_dir_name): Error with missing -iplugindir
29519         option.
29520         * Makefile.in (check-%, check-parallel-%): Create plugin dir.
29521         (distclean): Remove plugin dir.
29522         * doc/invoke.texi: Document -iplugindir.
29523
29524 2010-04-13  Basile Starynkevitch  <basile@starynkevitch.net>
29525
29526         * doc/plugins.texi (Loading Plugins): Document short
29527         -fplugin=foo option.
29528         (Plugin API): Mention default_plugin_dir_name function.
29529
29530         * gcc.c (find_file_spec_function): Add new declaration.
29531         (static_spec_func): Use it for "find-file".
29532         (find_file_spec_function): Add new function.
29533         (cc1_options): Add -iplugindir option if -fplugin* options found.
29534
29535         * gcc-plugin.h (default_plugin_dir_name): Added new declaration.
29536
29537         * plugin.c (add_new_plugin): Updated comment, and handle short
29538         plugin name.
29539         (default_plugin_dir_name): Added new function.
29540
29541         * common.opt (iplugindir): New option to set the plugin directory.
29542
29543 2010-04-12  Uros Bizjak  <ubizjak@gmail.com>
29544
29545         * config/i386/i386.md (any_rotate): New code iterator.
29546         (rotate_insn): New code attribute.
29547         (rotate): Ditto.
29548         (SWIM124): New mode iterator.
29549         (<rotate_insn>ti3): New expander.
29550         (<rotate_insn>di3): Macroize expander from {rotl,rotr}di3 using
29551         any_rotate code iterator.
29552         (<rotate_insn><mode>3) Macroize expander from {rotl,rotr}{qi,hi,si}3
29553         using any_rotate code iterator and SWIM124 mode iterator.
29554         (ix86_rotlti3): New insn_and_split pattern.
29555         (ix86_rotrti3): Ditto.
29556         (ix86_rotl<dwi>3_doubleword): Macroize insn_and_split pattern from
29557         ix86_rotl{di,ti}3 patterns.
29558         (ix86_rotr<dwi>3_doubleword): Ditto from ix86_rotr{di,ti}3 patterns.
29559         (*<rotate_insn><mode>3_1): Merge with *{rotl,rotr}{qi,hi,si}3_1_one_bit
29560         and *{rotl,rotr}di3_1_one_bit_rex64. Macroize insn from
29561         *{rotl,rotr}{qi,hi,si}3_1 and *{rotl,rotr}di3_1_rex64 using any_rotate
29562         code iterator and SWI mode iterator.
29563         (*<rotate_insn>si3_1_zext): Merge with *{rotl,rotr}si3_1_one_bit_zext.
29564         Macroize insn from {rotl,rotr}si3_1_zext using any_rotate
29565         code iterator.
29566         (*<rotate_insn>qi3_1_slp): Merge with *{rotl,rotr}qi3_1_one_bit_slp.
29567         Macroize insn from {rotl,rotr}qi3_1_slp using any_rotate code iterator.
29568         (bswap rotatert splitter): Add splitter.
29569         (bswap splitter): Macroize splitter using any_rotate code iterator.
29570         Add insn predicate to split only for TARGET_USE_XCHGB or when
29571         optimizing function for size.
29572
29573 2010-04-12  Steve Ellcey  <sje@cup.hp.com>
29574
29575         * config/pa/pa.c (emit_move_sequence): Remove use of
29576         deleted variable flag_argument_noalias.
29577
29578 2010-04-12  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
29579
29580         * config.gcc: Removed *-*-solaris2.7* from list of obsolete
29581         configurations.
29582         Add to unsupported targets list.
29583         * configure.ac (gcc_cv_as_tls): Removed i[34567]86-*-solaris2.[567]*,
29584         sparc*-sun-solaris2.[567]* from target lists.
29585         * configure: Regenerate.
29586         * doc/install.texi (Specific, *-*-solaris2*): Document Solaris 7
29587         removal.
29588         Remove Solaris 7 patch references.
29589         (Specific, sparc-sun-solaris2.7): Removed.
29590         (sparc-sun-solaris2*): Update Solaris 7 example.
29591         (sparc64-*-solaris2*): Likewise.
29592
29593 2010-04-12  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
29594
29595         * config.build (alpha*-dec-osf4*): Remove.
29596         * config.gcc: Remove alpha*-dec-osf4*, alpha-dec-osf5.0* from list
29597         of obsolete configurations.
29598         (alpha*-dec-osf[45]*): Remove alpha*-dec-osf4*, alpha-dec-osf5.0*
29599         support.
29600         * config/alpha/t-osf4: Renamed to ...
29601         * config/alpha/t-osf5: ... this.
29602         * config/alpha/osf.h: Renamed to ...
29603         * config/alpha/osf5.h: ... this.
29604         Merged old osf5.h contents.
29605         Update comments.
29606         (ASM_SPEC): Use ASM_OLDAS_SPEC directly.
29607         (EXTRA_SPECS): Removed.
29608         * doc/install.texi (Specific, alpha*-dec-osf5.1): Renamed to
29609         reflect removal of Tru64 UNIX V4.0/V5.0 support.
29610         Document that.
29611
29612 2010-04-12  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
29613
29614         * doc/contrib.texi (Contributors, Rainer Orth): Update.
29615
29616 2010-04-12  Kai Tietz  <kai.tietz@onevision.com>
29617
29618         PR/43702
29619         * config/i386/i386.c (x86_this_parameter): Handle aggregate for
29620         __thiscall convention.
29621
29622 2010-04-12  Steve Ellcey  <sje@cup.hp.com>
29623
29624         * config/pa/pa.c (hppa_legitimize_address): Remove unused variable
29625         orig_base.
29626         * config/pa/pa.md (call, call_value): Remove unused variable call_insn.
29627
29628 2010-04-12  Steve Ellcey  <sje@cup.hp.com>
29629
29630         * function.c (assign_parms_initialize_all): Add unused attribute
29631         to fntype.
29632
29633 2010-04-12  Richard Guenther  <rguenther@suse.de>
29634
29635         * gsstruct.def (GSS_CALL): New.
29636         * gimple.def (GIMPLE_CALL): Change to GSS_CALL.
29637         * gimple.h: Include tree-ssa-alias.h.
29638         (struct gimple_statement_call): New.
29639         (union gimple_statement_struct_d): Add gimple_call member.
29640         (gimple_call_reset_alias_info): Declare.
29641         (gimple_call_use_set): New function.
29642         (gimple_call_clobber_set): Likewise.
29643         * Makefile.in (GIMPLE_H): Add tree-ssa-alias.h.
29644         * gimple.c (gimple_call_reset_alias_info): New function.
29645         (gimple_build_call_1): Call it.
29646         * lto-streamer-in.c (input_gimple_stmt): Likewise.
29647         * tree-inline.c (remap_gimple_stmt): Likewise.
29648         (expand_call_inline): Remove callused handling.
29649         * cfgexpand.c (update_alias_info_with_stack_vars): Likewise.
29650         * tree-dfa.c (dump_variable): Likewise.
29651         * tree-parloops.c (parallelize_loops): Likewise.
29652         * tree-ssa.c (init_tree_ssa): Likewise.
29653         (delete_tree_ssa): Likewise.
29654         * tree-flow-inline.h (is_call_used): Remove.
29655         * tree-flow.h (struct gimple_df): Remove callused member.
29656         * tree-nrv.c (dest_safe_for_nrv_p): Adjust predicate.
29657         * tree-ssa-alias.c (dump_alias_info): Remove callused handling.
29658         (ref_maybe_used_by_call_p_1): Simplify.
29659         (call_may_clobber_ref_p_1): Likewise.
29660         * tree-ssa-structalias.c (compute_points_to_sets): Set
29661         the call stmt used and clobbered sets.
29662         * tree-tailcall.c (suitable_for_tail_opt_p): Adjust predicate.
29663         (find_tail_calls): Verify the tail call.
29664
29665 2010-04-12  Richard Guenther  <rguenther@suse.de>
29666
29667         * ipa.c (cgraph_postorder): Adjust postorder to guarantee
29668         single-iteration always-inline inlining.
29669         * ipa-inline.c (cgraph_mark_inline): Do not return anything.
29670         (cgraph_decide_inlining): Do not handle always-inline specially.
29671         (try_inline): Remove always-inline cycle detection special case.
29672         Do not recurse on always-inlines.
29673         (cgraph_early_inlining): Do not iterate if not optimizing.
29674         (cgraph_gate_early_inlining): remove.
29675         (pass_early_inline): Run unconditionally.
29676         (gate_cgraph_decide_inlining): New function.
29677         (pass_ipa_inline): Use it.  Do not run the IPA inliner if
29678         not inlining or optimizing.
29679         (cgraph_decide_inlining_of_small_functions): Also consider
29680         always-inline functions.
29681         (cgraph_default_inline_p): Return true for nodes which should
29682         disregard inline limits.
29683         (estimate_function_body_sizes): Assume zero size and time for
29684         nodes which are marked as disregarding inline limits.
29685         (cgraph_decide_recursive_inlining): Do not perform recursive
29686         inlining on always-inline nodes.
29687
29688 2010-04-12  Jakub Jelinek  <jakub@redhat.com>
29689
29690         PR bootstrap/43699
29691         * c-typeck.c (c_process_expr_stmt): Call mark_exp_read even
29692         for exprs satisfying handled_component_p.
29693
29694 2010-04-12  Eric Botcazou  <ebotcazou@adacore.com>
29695
29696         * expr.c (categorize_ctor_elements_1): Properly count sub-elements of
29697         non-constant aggregate elements.
29698
29699         * gimplify.c (gimplify_init_constructor): Do not pre-evaluate if this
29700         is a real initialization.
29701
29702 2010-04-12  Shujing Zhao  <pearly.zhao@oracle.com>
29703
29704         PR c/36774
29705         * c-decl.c (start_function): Move forward check for nested function.
29706
29707 2010-04-11  Kaz Kojima  <kkojima@gcc.gnu.org>
29708
29709         * config/sh/sh-protos.h (sh_legitimize_reload_address): Declare.
29710         * config/sh/sh.c: Include reload.h.
29711         (sh_legitimize_reload_address): New.
29712         * config/sh/sh.h (LEGITIMIZE_RELOAD_ADDRESS): Use
29713         sh_legitimize_reload_address.
29714
29715 2010-04-11  Kaushik Phatak  <kaushik.phatak@kpitcummins.com>
29716
29717         * config/sh/sh.md (*movqi_pop): New insn pattern.
29718         * config/sh/predicates.md (sh_no_delay_pop_operand): New predicate.
29719
29720 2010-04-11  Uros Bizjak  <ubizjak@gmail.com>
29721
29722         * config/i386/i386.md (any_shiftrt): New code iterator.
29723         (shiftrt_insn): New code attribute.
29724         (shiftrt): Ditto.
29725         (<shiftrt_insn><mode>3): Macroize expander from {ashr,lshr}<mode>3
29726         using any_shiftrt code iterator.
29727         (*<shiftrt_insn><mode>3_doubleword): Macroize insn_and_split from
29728         *{ashr,lshr}<mode>3_doubleword using any_shiftrt code iterator.
29729         (*<shiftrt_insn><mode>3_doubleword peephole2): Macroize peephole2
29730         pattern from corresponding peephole2 patterns.
29731         (*<shiftrt_insn><mode>3_1): Macroize insn from *{ashr,lshr}<mode>3_1
29732         using any_shiftrt code iterator.
29733         (*<shiftrt_insn>si3_1_zext): Ditto from *{ashr,lshr}si3_1_zext.
29734         (*<shiftrt_insn>qi3_1_slp): Ditto from *{ashr,lshr}qi3_1_slp.
29735         (*<shiftrt_insn><mode>3_cmp): Ditto from *{ashr,lshr}<mode>3_cmp.
29736         (*<shiftrt_insn><mode>3_cmp_zext): Ditto from
29737         *{ashr,lshr}<mode>3_cmp_zext.
29738         (*<shiftrt_insn><mode>3_cconly): Ditto from *{ashr,lshr}<mode>3_cconly.
29739
29740 2010-04-11  Uros Bizjak  <ubizjak@gmail.com>
29741
29742         * config/i386/i386.md (*ashr<mode>3_cconly): Fix wrong mode of
29743         scratch register.
29744         (*lshr<mode>3_cconly): Ditto.
29745
29746 2010-04-11  Uros Bizjak  <ubizjak@gmail.com>
29747
29748         * config/i386/i386.md (lshr<mode>3): Macroize expander from
29749         lshr{qi,hi,si,di,ti}3_1 using SDWIM mode iterator.
29750         (*lshr<mode>3_doubleword): New insn_and_split_pattern.  Macroize
29751         pattern from *lshr{di,ti}3_1 and corresponding splitters using
29752         DWI mode iterator.
29753         (*lshr<mode>3_doubleword peephole2): Macroize peephole2 pattern
29754         from corresponding peephole2 patterns.
29755         (*lshr<mode>3_1): Merge with *lshr{qi,hi,si}3_1_one_bit and
29756         *lshrdi3_1_one_bit_rex64. Macroize insn from *lshr{qi,hi,si}3_1
29757         and *lshrdi3_1_rex64 using SWI mode iterator.
29758         (*lshrsi3_1_zext): Merge with *lshrsi3_1_one_bit_zext.
29759         (*lshrqi3_1_slp): Merge with *lshrqi3_1_one_bit_slp.
29760         (*lshr<mode>3_cmp): Merge with *lshr{qi,hi,si}3_one_bit_cmp and
29761         *lshrdi3_one_bit_cmp_rex64. Macroize insn from *lshr{qi,hi,si}3_cmp
29762         and *lshrdi3_cmp_rex64 using SWI mode iterator.
29763         (*lshrsi3_cmp_zext): Merge with *lshrsi3_cmp_one_bit_zext.
29764         (*lshr<mode>3_cconly): Merge with *lshr{qi,hi,si}3_one_bit_cconly and
29765         *lshrdi3_one_bit_cconly_rex64. Macroize insn from
29766         *lshr{qi,hi,si}3_cconly and *lshrdi3_cconly_rex64 using
29767         SWI mode iterator.
29768
29769 2010-04-10  Uros Bizjak  <ubizjak@gmail.com>
29770
29771         * config/i386/i386.md (ashr<mode>3): Macroize expander from
29772         ashr{qi,hi,si,di,ti}3_1 using SDWIM mode iterator.
29773         (*ashr<mode>3_doubleword): New insn_and_split_pattern.  Macroize
29774         pattern from *ashr{di,ti}3_1 and corresponding splitters using
29775         DWI mode iterator.
29776         (*ashr<mode>3_doubleword peephole2): Macroize peephole2 pattern
29777         from corresponding peephole2 patterns.
29778         (ashrdi3_cvt): Rename from ashrdi3_63_rex64.
29779         (ashrsi3_cvt): Rename from ashrsi3_31.
29780         (*ashrsi3_cvt_zext): Rename from *ashrsi3_31_zext.
29781         (x86_shift<mode>_adj_3): Macroize expander from x86_shift_adj_3
29782         and x86_64_shift_adj_3 using SWI48 mode iterator.
29783         (*ashr<mode>3_1): Merge with *ashr{qi,hi,si}3_1_one_bit and
29784         *ashrdi3_1_one_bit_rex64. Macroize insn from *ashr{qi,hi,si}3_1
29785         and *ashrdi3_1_rex64 using SWI mode iterator.
29786         (*ashrsi3_1_zext): Merge with *ashrsi3_1_one_bit_zext.
29787         (*ashrqi3_1_slp): Merge with *ashrqi3_1_one_bit_slp.
29788         (*ashr<mode>3_cmp): Merge with *ashr{qi,hi,si}3_one_bit_cmp and
29789         *ashrdi3_one_bit_cmp_rex64. Macroize insn from *ashr{qi,hi,si}3_cmp
29790         and *ashrdi3_cmp_rex64 using SWI mode iterator.
29791         (*ashrsi3_cmp_zext): Merge with *ashrsi3_cmp_one_bit_zext.
29792         (*ashr<mode>3_cconly): Merge with *ashr{qi,hi,si}3_one_bit_cconly and
29793         *ashrdi3_one_bit_cconly_rex64. Macroize insn from
29794         *ashr{qi,hi,si}3_cconly and *ashrdi3_cconly_rex64 using
29795         SWI mode iterator.
29796         (sign_extend splitters): Update for renamed ashr{di,si}3_cvt patterns.
29797         * config/i386/i386.c (ix86_split_ashr): Update for renamed
29798         x86_shift<mode>_adj_3 expanders.
29799
29800 2010-04-10  Wei Guozhi  <carrot@google.com>
29801
29802         PR target/42601
29803         * config/arm/arm.c (arm_pic_static_addr): New function.
29804         (legitimize_pic_address): Call arm_pic_static_addr when it detects
29805         a static symbol.
29806         (arm_output_addr_const_extra): Output expression for new pattern.
29807         * config/arm/arm.md (UNSPEC_SYMBOL_OFFSET): New unspec symbol.
29808
29809 2010-04-10  Bernd Schmidt  <bernds@codesourcery.com>
29810
29811         * ira-costs.c (record_reg_classes): Ignore alternatives that are
29812         not enabled.
29813
29814         * Makefile.in (web.o): Depend on insn-config.h and $(RECOG_H).
29815         * web.c: Include "insn-config.h" and "recog.h".
29816         (union_match_dups): New function.
29817         (web_main): Call it.
29818         (union_defs): Don't try to recognize match_dups.
29819
29820         * reload1.c (eliminate_regs_in_insn): Don't restore an operand
29821         if doing so would replace the entire pattern.
29822
29823 2010-04-09  Uros Bizjak  <ubizjak@gmail.com>
29824
29825         PR target/43707
29826         PR target/43709
29827         * config/i386/i386.md (*ashl<mode>3_doubleword): Split to insn
29828         and splitter pattern.  Change splitter operand 1 predicate to
29829         nonmemory_operand.
29830
29831 2010-04-09  Martin Jambor  <mjambor@suse.cz>
29832
29833         * ipa-cp.c (ipcp_lats_are_equal): Return true also if the two
29834         lattices are addresses of CONST_DECLs with the same initial value.
29835         (ipcp_print_all_lattices): Print values of CONST_DECLs.
29836         * ipa-prop.c (ipa_print_node_jump_functions): Likewise.
29837
29838 2010-04-09  Eric Botcazou  <ebotcazou@adacore.com>
29839             Bernd Schmidt  <bernds@codesourcery.com>
29840
29841         * loop-invariant.c (replace_uses): New static function.
29842         (move_invariant_reg): Use it to ensure we can replace the uses.
29843
29844 2010-04-09  Hariharan Sandanagobalane  <hariharan@picochip.com>
29845
29846         * config/picochip/picochip.c (picochip_rtx_costs): Use correct
29847         function template.
29848         (picochip_override_options): Enable section anchors only above -O1.
29849         (picochip_reorg): Fixed a couple of build warnings.
29850
29851 2010-04-09  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
29852
29853         * configure.ac (plugin -rdynamic test): Log result.
29854         * configure: Regenerate.
29855         * config/sol2.h (LINK_SPEC): Handle -rdynamic.
29856         (RDYNAMIC_SPEC): Define.
29857         * config/sol2-gld.h (RDYNAMIC_SPEC): Redefine.
29858
29859 2010-04-09  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
29860
29861         * configure.ac: Determine Sun ld version numbers.
29862         (comdat_group): Restrict GNU ld version checks to gld.
29863         (comdat_group, *-*-solaris2.1[1-9]*): Enable for Sun ld > 1.1688.
29864         (enable_comdat): Support --enable-comdat.
29865         * configure: Regenerate.
29866         * doc/install.texi (Configuration): Document --enable-comdat.
29867
29868 2010-04-09  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
29869
29870         * config/sparc/sol2-gld.h: Remove SPARC reference.  Rename ...
29871         * config/sol2-gld.h: ... here.
29872         * config.gcc (sparc*-*-solaris2*): Reflect this.
29873         (i[34567]86-*-solaris2*): Use it.
29874
29875 2010-04-09  Steve Ellcey  <sje@cup.hp.com>
29876
29877         * config/ia64/ia64.c (ia64_dfa_new_cycle): Remove unused variable
29878         setup_clocks_p.
29879         (final_emit_insn_group_barriers): Remove unused variable prev_insn.
29880
29881 2010-04-09  Manuel López-Ibáñez  <manu@gcc.gnu.org>
29882
29883         PR 42965
29884         * diagnostic.c (diagnostic_initialize): Initialize
29885         some_warnings_are_errors.
29886         (diagnostic_finish): New.
29887         (diagnostic_action_after_output): Call it before exiting.
29888         (diagnostic_report_diagnostic): Do not print message here. Set
29889         some_warnings_are_errors.
29890         * diagnostic.h (diagnostic_context): Delete
29891         issue_warnings_are_errors_message. Add some_warnings_are_errors.
29892         (diagnostic_finish): Declare.
29893         * toplev.c (toplev_main): Call it before exit.
29894
29895 2010-04-09  Jason Merrill  <jason@redhat.com>
29896
29897         PR c++/42623
29898         * c-common.c (c_sizeof_or_alignof_type): Return error_mark_node
29899         for incomplete type.
29900
29901         PR c++/41788
29902         * stor-layout.c (finalize_record_size): Don't change TYPE_PACKED
29903         based on a warning flag.
29904
29905 2010-04-09  Richard Guenther  <rguenther@suse.de>
29906
29907         * tree-pretty-print.c (dump_generic_node): Dump TYPE_VECTOR_SUBPARTS.
29908
29909 2010-04-09  Iain Sandoe  <iains@gcc.gnu.org>
29910
29911         PR bootstrap/43684
29912         * varasm.c (default_assemble_visibility): Wrap vars that are
29913         set, but unused, by targets without GAS.
29914         * config/rs6000/rs6000.c (paired_emit_vector_compare):
29915         Remove set, but unused, vars.
29916         (rs6000_legitimize_tls_address): Likewise.
29917         (altivec_expand_dst_builtin): Likewise.
29918         * config/darwin.c (machopic_classify_symbol): Likewise.
29919         (machopic_indirection_name): Likewise.
29920
29921 2010-04-09  Uros Bizjak  <ubizjak@gmail.com>
29922
29923         * config/i386/i386.md (DWI): New mode iterator.
29924         (S): New mode attribute.
29925         (shift_operand): Ditto.
29926         (shift_immediate_operand): Ditto.
29927         (ashl_input_operand): Ditto.
29928         (ashl<mode>3): Macroize expander from ashl{qi,hi,si,di,ti}3_1
29929         using SDWIM mode iterator.
29930         (*ashl<mode>3_doubleword): New insn_and_split_pattern.  Macroize
29931         pattern from *ashl{di,ti}3_1 and corresponding splitters using
29932         DWI mode iterator.
29933         (*ashl<mode>3_doubleword peephole2): Macroize peephole2 pattern
29934         from corresponding peephole2 patterns.
29935         (x86_shift<mode>_adj_1): Macroize expander from x86_shift_adj_1
29936         and x86_64_shift_adj_1 using SWI48 mode iterator.
29937         (x86_shift<mode>_adj_2): Ditto.
29938         (*ashldi3_1_rex64): Split TYPE_LEA pattern.
29939         (*ashl<mode>3_1): Macroize insn from *ashlsi3_1 and *ashldi3_1_rex64
29940         using SWI48 mode iterator.
29941         (*ashl<mode>3_cmp): Macroize insn from *ashl{qi,hi,si}3_cmp and
29942         *ashldi3_cmp_rex64 using SWI mode iterator.
29943         (*ashl<mode>3_cconly): Macroize insn from *ashl{qi,hi,si}3_cconly and
29944         *ashldi3_cconly_rex64 using SWI mode iterator.
29945         * config/i386/i386.c (ix86_split_ashl): Update for renamed
29946         x86_shift<mode>_adj_{1,2}.
29947         (ix86_split_ashr): Ditto.
29948         (ix86_split_lshr): Ditto.
29949
29950 2010-04-09  Richard Guenther  <rguenther@suse.de>
29951
29952         * target.h (builtin_conversion): Pass in input and output types.
29953         * targhooks.c (default_builtin_vectorized_conversion): Adjust.
29954         * targhooks.h (default_builtin_vectorized_conversion): Likewise.
29955         * tree-vect-stmts.c (vectorizable_conversion): Adjust.
29956         * doc/tm.texi (TARGET_VECTORIZE_BUILTIN_CONVERSION): Adjust.
29957
29958         * config/i386/i386.c (ix86_vectorize_builtin_conversion): Adjust.
29959         Handle AVX modes.
29960         * config/rs6000/rs6000.c (rs6000_builtin_conversion): Adjust.
29961
29962 2010-04-09  Richard Guenther  <rguenther@suse.de>
29963
29964         PR target/43152
29965         * config/i386/sse.md (vcond<mode>): Handle AVX modes as well.
29966
29967 2010-04-09  Richard Guenther  <rguenther@suse.de>
29968
29969         * tree-vectorizer.h (struct _stmt_vec_info): Document
29970         that vectype is the type of the LHS.
29971         (supportable_widening_operation, supportable_narrowing_operation):
29972         Get both input and output vector types as arguments.
29973         (vect_is_simple_use_1): Declare.
29974         (get_same_sized_vectype): Likewise.
29975         * tree-vect-loop.c (vect_determine_vectorization_factor):
29976         Set STMT_VINFO_VECTYPE to the vector type of the def.
29977         (vectorizable_reduction): Adjust.
29978         * tree-vect-patterns.c (vect_recog_widen_mult_pattern):
29979         Adjust.  Specify the output vector type.
29980         (vect_pattern_recog_1): Adjust.
29981         * tree-vect-stmts.c (get_same_sized_vectype): New function.
29982         (vectorizable_call): Adjust.
29983         (vectorizable_conversion): Likewise.
29984         (vectorizable_operation): Likewise.
29985         (vectorizable_type_demotion): Likewise.
29986         (vectorizable_type_promotion): Likewise.
29987         (vect_analyze_stmt): Set STMT_VINFO_VECTYPE to the vector type of
29988         the def.
29989         (vect_is_simple_use_1): New function.
29990         (supportable_widening_operation): Get both input and output
29991         vector types.
29992         (supportable_narrowing_operation): Likewise.
29993         * tree-vect-slp.c (vect_schedule_slp_instance): Adjust.
29994
29995 2010-04-09  Kai Tietz  <kai.tietz@onevision.com>
29996
29997         * config/i386/cygming.h (TARGET_OS_CPP_BUILTINS): Add
29998         __thiscall and _thiscall as predefined macros.
29999         * config/i386/i386.c (ix86_handle_cconv_attribute): Add
30000         thiscall attribute handling.
30001         (ix86_comp_type_attributes): Likewise.
30002         (ix86_function_regparm): Likewise.
30003         (ix86_return_pops_args): Likewise.
30004         (init_cumulative_args): Likewise.
30005         (find_drap_reg): Likewise.
30006         (ix86_static_chain): Likewise.
30007         (x86_this_parameter): Likewise.
30008         (x86_output_mi_thunk): Likewise.
30009         (ix86_attribute_table): Add description for thiscall attribute.
30010         * config/i386/i386.h (ix86_args): Adjust comment for member fastcall.
30011         * doc/extend.texi: Add documentation for thiscall.
30012
30013 2010-04-09  Manuel López-Ibáñez  <manu@gcc.gnu.org>
30014
30015         PR c++/28584
30016         * c.opt (Wint-to-pointer-cast): Available in C++.
30017         * doc/invoke.texi (Wint-to-pointer-cast): Available in C++.
30018
30019 2010-04-08  Eric Botcazou  <ebotcazou@adacore.com>
30020
30021         * tree.h (TREE_ADDRESSABLE): Document its effect for function types.
30022         * calls.c (expand_call): Pass the function type to aggregate_value_p.
30023         * function.c (aggregate_value_p): Do not honor DECL_BY_REFERENCE on
30024         the target function of a CALL_EXPR.  Honor TREE_ADDRESSABLE on the
30025         function type instead.  Reorder and simplify checks.
30026
30027         * gimplify.c (gimplify_modify_expr_rhs) <WITH_SIZE_EXPR>: New case.
30028
30029 2010-04-08  Jing Yu  <jingyu@google.com>
30030             Zdenek Dvorak  <ook@ucw.cz>
30031
30032         PR tree-optimization/42720
30033         * tree-ssa-loop-unswitch.c (tree_ssa_unswitch_loops): Move one-time
30034         loop unswitch conditions here from ...
30035         (tree_unswitch_single_loop): ... here.
30036
30037 2010-04-08  Sebastian Pop  <sebastian.pop@amd.com>
30038
30039         * tree-if-conv.c: Fix comments and simplify logic.
30040
30041 2010-04-08  Sebastian Pop  <sebastian.pop@amd.com>
30042
30043         * tree-if-conv.c (if_convertible_loop_p): Remove unused parameter.
30044         (tree_if_conversion): Same.  Update call to if_convertible_loop_p.
30045         (main_tree_if_conversion): Update call to tree_if_conversion.
30046
30047 2010-04-08  Manuel López-Ibáñez  <manu@gcc.gnu.org>
30048
30049         PR 42485
30050         * doc/invoke.texi (-b,-V): Delete.
30051         * doc/tm.texi: Do not mention -b.
30052         * gcc.c (display_help): Delete -b and -V.
30053         (process_command): Delete -b and -V.
30054         * gcc.h (DEFAULT_SWITCH_TAKES_ARG): Delete -b and -V.
30055
30056 2010-04-08  Christian Borntraeger  <borntraeger@de.ibm.com>
30057             Wolfgang Gellerich  <gellerich@de.ibm.com>
30058
30059         Implement target hook for loop unrolling
30060         * target.h (loop_unroll_adjust): Add a new target hook function.
30061         * target-def.h (TARGET_LOOP_UNROLL_ADJUST): Likewise.
30062         * doc/tm.texi (TARGET_LOOP_UNROLL_ADJUST): Document it.
30063         * config/s390/s390.c (TARGET_LOOP_UNROLL_ADJUST): Define it.
30064         (s390_loop_unroll_adjust): Implement the new target hook for s390.
30065         * loop-unroll.c (decide_unroll_runtime_iterations): Call loop unroll
30066         target hook.
30067         (decide_unroll_stupid): Likewise.
30068
30069 2010-04-08  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
30070
30071         PR target/43643
30072         * config/i386/gmon-sol2.c [__x86_64__]: Properly restore %rcx.
30073
30074 2010-04-08  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
30075
30076         * doc/install.texi (Specific, i?86-*-solaris2.10): Fix grammar.
30077         (Specific, *-*-solaris2*): Likewise.
30078         Don't prefer Sun as over GNU as.
30079
30080 2010-04-08  Wolfgang Gellerich  <gellerich@de.ibm.com>
30081
30082         * config/s390/s390.c (override_options): Adjust the z10 defaults
30083         for max-unroll-times, max-completely-peeled-insns
30084         and max-completely-peel-times.
30085
30086 2010-04-08  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
30087
30088         * config/s390/s390.c (s390_expand_movmem): Issue prefetch
30089         instructions for z10.
30090         (s390_expand_setmem): Likewise.
30091         (s390_expand_cmpmem): Likewise.
30092
30093 2010-04-08  Richard Guenther  <rguenther@suse.de>
30094
30095         PR tree-optimization/43679
30096         * tree-ssa-pre.c (eliminate): Only propagate copies.
30097
30098 2010-04-08  Jakub Jelinek  <jakub@redhat.com>
30099
30100         PR bootstrap/43681
30101         * expr.c (block_move_libcall_safe_for_call_parm): Avoid
30102         set but not used variable warning.
30103
30104 2010-04-08  Wei Guozhi  <carrot@google.com>
30105
30106         PR target/41653
30107         * config/arm/arm.c (thumb1_size_rtx_costs): New function.
30108         (arm_size_rtx_costs): Call the new function when optimized for size.
30109
30110 2010-04-08  Jakub Jelinek  <jakub@redhat.com>
30111
30112         PR debug/43670
30113         * cfgexpand.c (expand_debug_expr): If for non-NULL offset
30114         op0 is not a MEM, just return NULL instead of assertion
30115         failure.
30116         (discover_nonconstant_array_refs): Don't walk debug stmts.
30117
30118 2010-04-08  Doug Kwan  <dougkwan@google.com>
30119
30120         * configure.ac: Recognize gold and do not use its version number
30121         to test ld features.
30122         * configure: Regenerate.
30123
30124 2010-04-08  Maxim Kuvyrkov  <maxim@codesourcery.com>
30125
30126         PR middle-end/40815
30127         * tree-ssa-reassoc.c (broken_up_substracts): Rename to plus_negates.
30128         (negate_value): Move code to push elements to broken_up_substracts ...
30129         (eliminate_plus_minus_pair): ... here.  Push operands that have no
30130         negative pair to plus_negates.
30131         (repropagate_negates, init_reassoc, fini_reassoc): Update.
30132
30133 2010-04-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30134
30135         * doc/install.texi (Configuration): Move description of
30136         --enable-lto, --with-libelf*, --enable-gold from Java section to
30137         general section.
30138
30139         * doc/generic.texi (Working with declarations)
30140         (Function Properties, C and C++ Trees): Fix typos.
30141         * doc/sourcebuild.texi (Top Level): Likewise.
30142
30143 2010-04-07  Jakub Jelinek  <jakub@redhat.com>
30144
30145         PR c/18624
30146         * tree.h (DECL_READ_P): Define.
30147         (struct tree_decl_common): Add decl_read_flag.
30148         * c-decl.c (pop_scope): If TREE_USED but !DECL_READ_P, issue
30149         a set but not used warning.
30150         (merge_decls): Merge DECL_READ_P flag.
30151         (finish_decl, build_compound_literal): Set DECL_READ_P flag.
30152         (finish_function): Issue -Wunused-but-set-parameter diagnostics.
30153         * c-common.c (handle_used_attribute, handle_unused_attribute):
30154         Likewise.
30155         * c-tree.h (default_function_array_read_conversion, mark_exp_read):
30156         New prototypes.
30157         * c-typeck.c (default_function_array_read_conversion, mark_exp_read):
30158         New functions.
30159         (default_conversion, c_process_expr_stmt): Call mark_exp_read.
30160         * c-parser.c (c_parser_initializer, c_parser_expr_no_commas,
30161         c_parser_binary_expression, c_parser_cast_expression,
30162         c_parser_expr_list, c_parser_omp_atomic, c_parser_omp_for_loop):
30163         Call default_function_array_read_conversion instead of
30164         default_function_array_conversion where needed.
30165         (c_parser_unary_expression, c_parser_conditional_expression,
30166         c_parser_postfix_expression_after_primary, c_parser_initelt):
30167         Likewise.  Call mark_exp_read where needed.
30168         (c_parser_statement_after_labels, c_parser_asm_operands,
30169         c_parser_typeof_specifier, c_parser_sizeof_expression,
30170         c_parser_alignof_expression, c_parser_initval): Call mark_exp_read
30171         where needed.
30172         * common.opt (Wunused-but-set-variable, Wunused-but-set-parameter):
30173         New.
30174         * toplev.c (warn_unused_but_set_variable): Default to warn_unused.
30175         (warn_unused_but_set_parameter): Default to warn_unused
30176         && extra_warnings.
30177         * doc/invoke.texi: Document -Wunused-but-set-variable and
30178         -Wunused-but-set-parameter.
30179
30180         * tree-ssa-pre.c (my_rev_post_order_compute): Remove set but not
30181         used count variable.
30182         * genemit.c (gen_expand, gen_split): Avoid set but not used warnings
30183         when operandN variables aren't used in the body of the expander
30184         or splitter.
30185         * tree-outof-ssa.c (FOR_EACH_ELIM_GRAPH_SUCC,
30186         FOR_EACH_ELIM_GRAPH_PRED): Avoid set but not used warnings.
30187         * tree-ssa-operands.h (FOR_EACH_SSA_TREE_OPERAND): Likewise.
30188         * tree-flow.h (FOR_EACH_IMM_USE_FAST, FOR_EACH_IMM_USE_STMT,
30189         FOR_EACH_IMM_USE_ON_STMT): Likewise.
30190         * tree.h (FOR_EACH_CONSTRUCTOR_ELT): Likewise.
30191         * tree.c (PROCESS_ARG): Likewise.
30192
30193 2010-04-07  Simon Baldwin  <simonb@google.com>
30194
30195         * diagnostic.h (diagnostic_override_option_index): New macro to
30196         set a diagnostic's option_index.
30197         * c-tree.h (c_cpp_error): Add warning reason argument.
30198         * opts.c (_warning_as_error_callback): New.
30199         (register_warning_as_error_callback): Store callback for
30200         warnings enabled via enable_warning_as_error.
30201         (enable_warning_as_error): Call callback, minor code tidy.
30202         * opts.h (register_warning_as_error_callback): Declare.
30203         * c-opts.c (warning_as_error_callback): New, set cpp_opts flag in
30204         response to -Werror=.
30205         (c_common_init_options): Register warning_as_error_callback in opts.c.
30206         * common.opt: Add -Wno-cpp option.
30207         * c-common.c (struct reason_option_codes_t): Map cpp warning
30208         reason codes to gcc option indexes.
30209         * (c_option_controlling_cpp_error): New function, lookup the gcc
30210         option index for a cpp warning reason code.
30211         * (c_cpp_error): Add warning reason argument, call
30212         c_option_controlling_cpp_error for diagnostic_override_option_index.
30213         * doc/invoke.texi: Document -Wno-cpp.
30214
30215 2010-04-07  Richard Guenther  <rguenther@suse.de>
30216
30217         * ipa-reference.c (mark_load): Use get_base_address.
30218         (mark_store): Likewise.
30219
30220         * tree-ssa-ccp.c (gimplify_and_update_call_from_tree): Avoid
30221         inserting GIMPLE_NOPs into the IL.
30222         * tree-ssa-structalias.c (get_constraint_for_component_ref):
30223         Explicitly strip handled components and indirect references.
30224
30225         * fold-const.c (fold_unary_loc): Do not strip qualifiers when
30226         folding address expressions.
30227         * gimple.c (gimple_ior_addresses_taken_1): Use get_base_address.
30228         * tree-ssa-alias.c (decl_refs_may_alias_p): Do not use
30229         operand_equal_p to compare decls.
30230         (ptr_deref_may_alias_decl_p): Likewise.
30231         * tree-ssa-operands.c (get_asm_expr_operands): Simplify
30232         * tree-ssa-forwprop.c (forward_propagate_into_gimple_cond):
30233         Handle reversed comparison ops.
30234         * tree-sra.c (asm_visit_addr): Use get_base_address.
30235         * ipa-prop.c (visit_store_addr_for_mod_analysis): Use get_base_address.
30236         * ipa-reference.c (mark_address): Use get_base_address.
30237
30238 2010-04-07  Richard Guenther  <rguenther@suse.de>
30239
30240         * tree-ssa-forwprop.c (forward_propagate_addr_expr):
30241         Propagate constants everywhere.
30242
30243 2010-04-07  Jakub Jelinek  <jakub@redhat.com>
30244
30245         PR debug/43516
30246         * tree.c (MAX_INT_CACHED_PREC): Define.
30247         (nonstandard_integer_type_cache): New array.
30248         (build_nonstandard_integer_type): Cache results for precision
30249         <= MAX_INT_CACHED_PREC.
30250
30251 2010-04-07  Richard Guenther  <rguenther@suse.de>
30252
30253         * doc/invoke.texi (-fargument-alias, -fargument-noalias,
30254         -fargument-noalias-global, -fargument-noalias-anything): Remove.
30255         * common.opt: Likewise.
30256         * tree-ssa-structalias.c (intra_create_variable_infos): Adjust comment.
30257         * alias.c (base_alias_check): Remove flag_argument_noalias handling.
30258         (nonoverlapping_memrefs_p): Likewise.
30259         * emit-rtl.c (set_mem_attributes_minus_bitpos): Likewise.
30260         * opts.c (common_handle_option): Handle OPT_fargument_alias,
30261         OPT_fargument_noalias, OPT_fargument_noalias_anything and
30262         OPT_fargument_noalias_global for backward compatibility.
30263
30264 2010-04-07  Richard Guenther  <rguenther@suse.de>
30265
30266         PR tree-optimization/43270
30267         * tree-vrp.c (check_array_ref): Fix flexible array member detection.
30268         * tree-ssa-sccvn.h (fully_constant_vn_reference_p): Declare.
30269         * tree-ssa-pre.c (phi_translate_1): Adjust.
30270         (fully_constant_expression): Split out vn_reference handling to ...
30271         * tree-ssa-sccvn.c (fully_constant_vn_reference_p): ... here.
30272         Fold reads from constant strings.
30273         (vn_reference_lookup): Handle fully constant references.
30274         (vn_reference_lookup_pieces): Likewise.
30275         * Makefile.in (expmed.o-warn): Add -Wno-error.
30276
30277 2010-04-07  Martin Jambor  <mjambor@suse.cz>
30278
30279         * tree-sra.c (find_param_candidates): Allow scalar va_list types.
30280
30281 2010-04-07  Iain Sandoe  <iains@gcc.gnu.org>
30282
30283         PR driver/41594
30284         * gcc.c: Add -static-libstdc++ to list of recognized options.
30285
30286 2010-04-07  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
30287
30288         * config.gcc (i[34567]86-*-solaris2*): Default with_tune_32 to generic.
30289
30290 2010-04-07  Richard Guenther  <rguenther@suse.de>
30291
30292         PR middle-end/42617
30293         * expr.c (expand_expr_real_1): For TARGET_MEM_REFs with pointer
30294         bases build simple mem attributes to retain points-to information.
30295
30296 2010-04-07  Richard Guenther  <rguenther@suse.de>
30297
30298         PR middle-end/42617
30299         * alias.c (ao_ref_from_mem): Without MEM_OFFSET or MEM_SIZE
30300         preserve points-to related information.
30301
30302 2010-04-07  Richard Guenther  <rguenther@suse.de>
30303
30304         PR middle-end/42617
30305         * emit-rtl.c (set_mem_attributes_minus_bitpos): Do not
30306         discard plain indirect references.
30307         * fold-const.c (operand_equal_p): Guard against NULL_TREE type.
30308         * tree.c (tree_nop_conversion): Likewise.
30309
30310 2010-04-07  Dodji Seketeli  <dodji@redhat.com>
30311
30312         PR debug/43628
30313         * dwarf2out.c (modified_type_die): Ignore artificial typedefs.
30314
30315 2010-04-06  Kai Tietz  <kai.tietz@onevision.com>
30316
30317         * config/i386/i386.c (ix86_handle_cconv_attribute): Ignore
30318         calling convention attributes on METHOD_TYPEs for w64 ABI, too.
30319
30320 2010-04-07  Sebastian Pop  <sebastian.pop@amd.com>
30321
30322         * tree-if-conv.c: Fix indentation and comments.
30323
30324 2010-04-07  Sebastian Pop  <sebastian.pop@amd.com>
30325
30326         * tree-if-conv.c: Sort static functions in topological order.
30327
30328 2010-04-07  Sebastian Pop  <sebastian.pop@amd.com>
30329
30330         * tree-if-conv.c: Fix indentation and comments.
30331
30332 2010-04-06  Sebastian Pop  <sebastian.pop@amd.com>
30333
30334         PR middle-end/43519
30335         * graphite-clast-to-gimple.c (max_signed_precision_type): Use
30336         lang_hooks.types.type_for_size instead of
30337         build_nonstandard_integer_type.
30338         When converting an unsigned type to signed, double its precision.
30339         (gcc_type_for_interval): Use lang_hooks.types.type_for_size.
30340         (gcc_type_for_iv_of_clast_loop): Call max_signed_precision_type.
30341         (graphite_create_new_loop_guard): When ub + 1 wraps around,
30342         use lb <= ub.
30343
30344 2010-04-06  Sebastian Pop  <sebastian.pop@amd.com>
30345
30346         PR middle-end/43519
30347         * graphite-clast-to-gimple.c (graphite_create_new_loop_guard): Use
30348         POINTER_PLUS_EXPR for pointer types.
30349
30350 2010-04-06  Sebastian Pop  <sebastian.pop@amd.com>
30351
30352         PR middle-end/43519
30353         * Makefile.in (graphite-clast-to-gimple.o): Depends on langhooks.h.
30354         * graphite-clast-to-gimple.c: Include langhooks.h.
30355         (max_signed_precision_type): New.
30356         (max_precision_type): Takes two types as arguments.
30357         (precision_for_value): New.
30358         (precision_for_interval): New.
30359         (gcc_type_for_interval): New.
30360         (gcc_type_for_value): New.
30361         (gcc_type_for_clast_term): New.
30362         (gcc_type_for_clast_red): New.
30363         (gcc_type_for_clast_bin): New.
30364         (gcc_type_for_clast_expr): Split up into several functions.
30365         (gcc_type_for_clast_eq): Rewritten.
30366         (compute_bounds_for_level): New.
30367         (compute_type_for_level_1): New.
30368         (compute_type_for_level): New.
30369         (gcc_type_for_cloog_iv): Removed.
30370         (gcc_type_for_iv_of_clast_loop): Rewritten.
30371         (graphite_create_new_loop): Compute the lower and upper bound types
30372         with gcc_type_for_clast_expr.
30373         (graphite_create_new_loop_guard): Same.
30374         (find_cloog_iv_in_expr): Removed.
30375         (compute_cloog_iv_types_1): Removed.
30376         (compute_cloog_iv_types): Removed.
30377         (gloog): Do not call compute_cloog_iv_types.
30378         * graphite-sese-to-poly.c (new_gimple_bb): Do not initialize
30379         GBB_CLOOG_IV_TYPES.
30380         (free_data_refs_aux): Do not free GBB_CLOOG_IV_TYPES.
30381         * sese.h (struct gimple_bb): Removed field cloog_iv_types.
30382         (GBB_CLOOG_IV_TYPES): Removed.
30383
30384 2010-04-06  Sebastian Pop  <sebastian.pop@amd.com>
30385
30386         * graphite-sese-to-poly.c (rewrite_close_phi_out_of_ssa): Assert that
30387         gimple_phi_num_args of the loop close SSA phi node is equal to 1.
30388         (detect_commutative_reduction): Same.
30389
30390 2010-04-06  Sebastian Pop  <sebastian.pop@amd.com>
30391
30392         * graphite-clast-to-gimple.c (graphite_verify): Remove redundant
30393         call to verify_ssa.  Invoke verify_loop_closed_ssa with an extra
30394         argument.
30395         * graphite-scop-detection.c (canonicalize_loop_closed_ssa_form): Same.
30396         * graphite-sese-to-poly.c (rewrite_reductions_out_of_ssa): Same.
30397         (rewrite_commutative_reductions_out_of_ssa): Same.
30398         * passes.c (execute_function_todo): Call verify_ssa for every pass
30399         in the LNO.  Invoke verify_loop_closed_ssa with an extra argument.
30400         * tree-flow.h (verify_loop_closed_ssa): Update declaration.
30401         * tree-parloops.c (parallelize_loops): Invoke verify_loop_closed_ssa
30402         with an extra argument.
30403         * tree-ssa-loop-manip.c (check_loop_closed_ssa_stmt): Same.  Call
30404         verify_ssa only when the extra argument is true.
30405         (gimple_duplicate_loop_to_header_edge): Invoke verify_loop_closed_ssa
30406         with an extra argument.
30407         (tree_transform_and_unroll_loop): Same.
30408
30409 2010-04-06  Sebastian Pop  <sebastian.pop@amd.com>
30410
30411         * passes.c (execute_function_todo): Call verify_loop_closed_ssa
30412         for all the passes of the LNO having LOOP_CLOSED_SSA.
30413         * tree-if-conv.c (pass_if_conversion): Remove TODO_verify_loops.
30414         * tree-loop-distribution.c (pass_loop_distribution): Same.
30415         * tree-pass.h (TODO_verify_loops): Removed.
30416         * tree-ssa-loop.c (pass_tree_loop_init): Same.
30417         (pass_lim): Same.
30418         (pass_tree_unswitch): Same.
30419         (pass_predcom): Same.
30420         (pass_vectorize): Same.
30421         (pass_linear_transform): Same.
30422         (pass_graphite_transforms): Same.
30423         (pass_iv_canon): Same.
30424         (pass_complete_unroll): Same.
30425         (pass_complete_unrolli): Same.
30426         (pass_parallelize_loops): Same.
30427         (pass_loop_prefetch): Same.
30428         (pass_iv_optimize): Same.
30429
30430 2010-04-06  Changpeng Fang  <changpeng.fang@amd.com>
30431
30432         PR middle-end/32824
30433         * passes.c (init_optimization_passes): Move pass_lim before
30434         pass_copy_prop and pass_dce_loop.
30435
30436 2010-04-06  Jakub Jelinek  <jakub@redhat.com>
30437
30438         PR target/43667
30439         * config/i386/i386.c (bdesc_multi_arg): Use OPTION_MASK_ISA_XOP
30440         instead of OPTION_MASK_ISA_AVX for __builtin_ia32_vpermil2p*.
30441         (ix86_expand_args_builtin): Use V*_FTYPE_* enum codes instead of
30442         MULTI_* defines for 4 argument vpermil2p* builtins.
30443
30444 2010-04-06  Uros Bizjak  <ubizjak@gmail.com>
30445
30446         * config/i386/i386-protos.h (x86_maybe_negate_const_int): Declare.
30447         * config/i386/i386.c (x86_maybe_negate_const_int): New.
30448         (x86_output_mi_thunk): Use x86_maybe_negate_const_int.
30449         * config/i386/i386.md (*add<mode>_1, *addsi_1_zext, *addhi_1,
30450         *addhi_1_lea, *addqi_1, *addqi_1_lea, *addqi_1_slp, *add<mode>_2,
30451         *addsi_2_zext, *addhi_2, *addqi_2, *add<mode>_3, *addsi_3_zext,
30452         *addhi_3, *addqi_3,*add<mode>_5, *addhi_5, *addqi_5):
30453         Use x86_maybe_negate_const_int to output insn mnemonic.
30454         (*adddi_4, *addsi_4, *addhi_4, *addqi_4): Ditto.  Remove overflow
30455         check from instruction predicate.  Update comments.
30456         * config/i386/sync.md (sync_add<mode>): Use
30457         x86_maybe_negate_const_int to output insn mnemonic.
30458
30459 2010-04-06  Jan Hubicka  <jh@suse.cz>
30460
30461         PR tree-optimization/42906
30462         * tree-ssa-dce.c (mark_control_dependent_edges_necessary): Add
30463         IGNORE_SELF argument.  Set visited_control_parents for fully
30464         processed BBs.
30465         (find_obviously_necessary_stmts): Update call of
30466         mark_control_dependent_edges_necessary.
30467         (propagate_necessity): Likewise.  Handle PHI edges more curefully.
30468
30469 2010-04-06  Uros Bizjak  <ubizjak@gmail.com>
30470
30471         * config/i386/i386.md: Remove comment about 'e' and 'E'
30472         operand modifier.
30473
30474 2010-04-06  Richard Guenther  <rguenther@suse.de>
30475
30476         PR tree-optimization/43627
30477         * tree-vrp.c (extract_range_from_unary_expr): Widenings
30478         of [1, +INF(OVF)] go to [1, +INF(OVF)] of the wider type,
30479         not varying.
30480
30481 2010-04-06  Jakub Jelinek  <jakub@redhat.com>
30482
30483         * BASE-VER: Change to 4.6.0.
30484
30485         PR target/43638
30486         * config/i386/i386.c (print_operand): Remove 'e' and 'E' code
30487         handling.
30488
30489 2010-04-06  Richard Guenther  <rguenther@suse.de>
30490
30491         PR middle-end/43661
30492         * fold-const.c (fold_comparison): Handle X * 0 CMP 0.
30493
30494 2010-04-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30495
30496         * doc/invoke.texi (Optimize Options): Document that LTO
30497         won't remove object access purely due to incompatible
30498         declarations.
30499
30500 2010-04-04  Matthias Klose  <doko@ubuntu.com>
30501
30502         * graphite-sese-to-poly.c (translate_scalar_reduction_to_array):
30503         Initialize variable.
30504
30505 2010-04-03  Richard Guenther  <rguenther@suse.de>
30506
30507         PR middle-end/42509
30508         * alias.c (nonoverlapping_memrefs_p): For spill-slot accesses
30509         require a non-NULL MEM_OFFSET.
30510
30511 2010-04-02  Steven Bosscher  <steven@gcc.gnu.org>
30512
30513         * ada/gcc-interface/Make-lang.in, alias.c, attribs.c, auto-inc-dec.c,
30514         basic-block.h, bb-reorder.c, calls.c, c-common.c, cgraph.h,
30515         collect2.h, config/alpha/alpha.c, config/alpha/alpha.md,
30516         config/alpha/predicates.md, config/arm/arm.md,
30517         config/arm/lib1funcs.asm, config/arm/neon-schedgen.ml,
30518         config/avr/avr.c, config/avr/avr.md, config/bfin/bfin.c,
30519         config/darwin9.h, config/darwin.c, config/darwin.h,
30520         config/h8300/h8300.c, config/i386/cpuid.h, config/i386/cygming.h,
30521         config/i386/cygwin.h, config/i386/mingw32.h, config/i386/msformat-c.c,
30522         config/i386/sol2-10.h, config/i386/xopintrin.h, config/ia64/ia64.c,
30523         config/ia64/ia64.md, config/ia64/sync.md, config/mep/mep.c,
30524         config/mips/mips.md, config/mn10300/mn10300.c,
30525         config/mn10300/mn10300.h, config/pa/pa.c, config/pa/pa.md,
30526         config/rs6000/aix.h, config/rs6000/dfp.md,
30527         config/rs6000/rs6000-builtin.def, config/rs6000/rs6000-c.c,
30528         config/rs6000/vector.md, config/rtems.h, config/rx/rx.md,
30529         config/s390/s390.md, config/sol2-c.c, config/sparc/sol2-bi.h,
30530         config/sparc/sol2-gas.h, config/sparc/sparc.h, config/sparc/sparc.md,
30531         config/sparc/sparc-protos.h, config/spu/spu.c, config/spu/spu-c.c,
30532         config/t-darwin, convert.c, c.opt, c-opts.c, cp/Make-lang.in,
30533         c-pretty-print.c, c-typeck.c, df-core.c, df-scan.c, diagnostic.c,
30534         diagnostic.h, doc/cppopts.texi, doc/cpp.texi, doc/extend.texi,
30535         doc/gimple.texi, doc/languages.texi, doc/plugins.texi, doc/rtl.texi,
30536         doc/standards.texi, doc/tree-ssa.texi, doc/trouble.texi, dominance.c,
30537         fold-const.c, fortran/Make-lang.in, fwprop.c, gcc-plugin.h,
30538         gensupport.c, gimple.h, gimple-iterator.c, graphite.c,
30539         graphite-clast-to-gimple.c, graphite-clast-to-gimple.h,
30540         graphite-dependences.c, graphite-poly.c, graphite-poly.h,
30541         graphite-ppl.c, graphite-ppl.h, graphite-scop-detection.c,
30542         graphite-sese-to-poly.c, graphite-sese-to-poly.h, ifcvt.c, intl.c,
30543         intl.h, ipa.c, ipa-cp.c, ipa-inline.c, ipa-prop.c, ipa-prop.h,
30544         ipa-pure-const.c, ipa-reference.c, ipa-type-escape.c, ira-color.c,
30545         ira-conflicts.c, ira-lives.c, java/Make-lang.in, lambda-code.c,
30546         loop-invariant.c, lto/Make-lang.in, lto-streamer.h, lto-streamer-in.c,
30547         objc/Make-lang.in, objcp/Make-lang.in, omp-low.c, optc-gen.awk,
30548         opt-functions.awk, opth-gen.awk, params.def, passes.c,
30549         postreload-gcse.c, print-tree.c, recog.c, regrename.c, reload.h,
30550         rtl.def, sched-int.h, sched-rgn.c, sel-sched-dump.c, sese.c, sese.h,
30551         store-motion.c, stor-layout.c, tree-cfgcleanup.c, tree-chrec.c,
30552         tree-complex.c, tree-data-ref.c, tree.def, tree-eh.c, tree-flow.h,
30553         tree-flow-inline.h, tree.h, tree-loop-distribution.c, tree-outof-ssa.c,
30554         tree-parloops.c, tree-pass.h, tree-predcom.c, tree-profile.c,
30555         tree-scalar-evolution.c, tree-ssa-address.c, tree-ssa-alias.c,
30556         tree-ssa-coalesce.c, tree-ssa-copy.c, tree-ssa-dce.c, tree-ssa-dom.c,
30557         tree-ssa-dse.c, tree-ssa-loop-im.c, tree-ssa-loop-ivcanon.c,
30558         tree-ssa-loop-manip.c, tree-ssa-math-opts.c, tree-ssa-operands.c,
30559         tree-ssa-pre.c, tree-ssa-sccvn.c, tree-ssa-structalias.c,
30560         tree-ssa-uncprop.c, tree-tailcall.c, tree-vect-data-refs.c,
30561         tree-vect-loop.c, tree-vectorizer.h, tree-vect-slp.c, tree-vrp.c,
30562         unwind-dw2-fde-darwin.c, varpool.c: Update copyright years.
30563
30564 2010-04-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30565
30566         PR other/43620
30567         * doc/install.texi (Prerequisites): Bump Automake version to 1.11.1.
30568         * aclocal.m4: Regenerate.
30569
30570 2010-04-02  Richard Guenther  <rguenther@suse.de>
30571
30572         PR tree-optimization/43629
30573         * tree-ssa-ccp.c (likely_value): Reset all_undefined_operands
30574         if we have seen a constant value.
30575
30576 2010-04-02  Joseph Myers  <joseph@codesourcery.com>
30577
30578         * read-rtl.c (read_rtx_1): Give an error for EOF while looking for ']'.
30579
30580 2010-04-02  Richard Earnshaw  <rearnsha@arm.com>
30581
30582         PR target/43469
30583         * arm.c (legitimize_tls_address): Adjust call to
30584         gen_tls_load_dot_plus_four.
30585         (arm_note_pic_base): New function.
30586         (arm_cannot_copy_insn_p): Use it.
30587         * thumb2.md (tls_load_dot_plus_four): Rework to avoid use of '+' in
30588         constraint.
30589
30590 2010-04-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30591
30592         PR bootstrap/43531
30593
30594         Revert:
30595         2009-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30596
30597         * Makefile.in ($(out_object_file)): Depend on
30598         gt-$(basename $(notdir $(out_file))).h.
30599
30600 2010-04-01  Ralf Corsépius  <ralf.corsepius@rtems.org>
30601
30602         * config.gcc (lm32-*-rtems*): Add t-lm32.
30603
30604 2010-04-01  Joel Sherrill  <joel.sherrill@oarcorp.com>
30605
30606         * config.gcc: Add lm32-*-rtems*.
30607         * config/lm32/rtems.h: New file.
30608
30609 2010-04-01  Dave Korn  <dave.korn.cygwin@gmail.com>
30610
30611         PR target/42609
30612         * config/i386/cygwin.h (CXX_WRAP_SPEC): Disable spec when -mno-cygwin.
30613
30614 2010-04-01  Jakub Jelinek  <jakub@redhat.com>
30615
30616         * dwarf2out.c (output_compilation_unit_header): For
30617         -gdwarf-4 use version 4 instead of version 3.
30618         (output_line_info): For version 4 and above emit additional
30619         maximum ops per insn header field.
30620         (DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN): Define.
30621
30622         * dwarf2out.c (is_c_family, is_java): Remove.
30623         (lower_bound_default): New function.
30624         (add_bound_info, gen_descr_array_type_die): Use it.
30625
30626 2010-04-01  Dodji Seketeli  <dodji@redhat.com>
30627
30628         PR debug/43325
30629         * dwarf2out.c (gen_variable_die): Allow debug info for variable
30630         re-declaration when it happens in a function.
30631
30632 2010-04-01  Aldy Hernandez  <aldyh@redhat.com>
30633
30634         * cgraph.c (cgraph_add_function_insertion_hook): Update comment.
30635         (cgraph_remove_function_insertion_hook): Same.
30636         (cgraph_call_function_insertion_hooks): Same.
30637
30638 2010-04-01  Richard Guenther  <rguenther@suse.de>
30639
30640         PR middle-end/43614
30641         * tree-ssa-address.c (copy_mem_ref_info): Copy TREE_SIDE_EFFECTS
30642         and TREE_THIS_VOLATILE.
30643         (copy_ref_info): Likewise.
30644         * tree-ssa-operands.c (get_tmr_operands): Check TREE_THIS_VOLATILE.
30645         * tree.c (build6_stat): Ignore side-effects of all but arg5
30646         for TARGET_MEM_REF.  Set TREE_THIS_VOLATILE from arg5 of
30647         TARGET_MEM_REF.
30648
30649 2010-04-01  Richard Guenther  <rguenther@suse.de>
30650
30651         PR tree-optimization/43607
30652         * ipa-type-escape.c (check_call): Do not access non-existing
30653         arguments.
30654
30655 2010-04-01  Richard Guenther  <rguenther@suse.de>
30656
30657         PR middle-end/43602
30658         Revert
30659         2010-03-30  Seongbae Park  <seongbae.park@gmail.com>
30660                     Jack Howarth  <howarth@bromo.med.uc.edu>
30661
30662         * tree-profile.c (tree_init_ic_make_global_vars): Make static
30663         variables TLS.
30664
30665 2010-04-01  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
30666
30667         * doc/install.texi (Prerequisites): Document libelf usability on
30668         IRIX 5/6 and Solaris 2.
30669         (Specific, i?86-*-solaris2.10): No 64-bit default configuration.
30670         Update GNU as, GNU ld requirements.
30671         (Specific, *-*-solaris2*): Document Solaris 7 obsoletion, removal.
30672         Document Sun Studio compiler download.
30673         Update and simplify as, ld recommendations.
30674         (Specific, *-*-solaris2.7): Note obsoletion, removal.
30675
30676 2010-04-01  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
30677
30678         * config.gcc (i[34567]86-*-solaris2*): Default with_arch_32,
30679         with_tune_32 to pentium4.
30680
30681 2010-04-01  Uros Bizjak  <ubizjak@gmail.com>
30682
30683         * config/i386/cpuid.h (__get_cpuid_max): Move misplaced comment.
30684
30685 2010-04-01  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
30686
30687         * doc/install.texi (Specific, mips-sgi-irix5): Document IRIX 5
30688         obsoletion, removal.
30689         Update IDO URL.
30690         Document GNU as requirement.
30691         Update configure requirements.
30692         (Specific, mips-sgi-irix6): Document IRIX 6 < 6.5 obsoletion, removal.
30693         Recomment IRIX 6.5.18+.
30694         Document IDF/IDL requirement.
30695         Document GNU as requirement.
30696         Document GNU ld bootstrap failure.
30697         Remove freeware.sgi.com reference.
30698
30699 2010-04-01  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
30700
30701         * doc/install.texi (Specific, alpha*-dec-osf*): Document Tru64
30702         UNIX V4.0, V5.0 obsoletion, removal.
30703         Remove --with-gc=simple reference.
30704         Update VM requirements during bootstrap.
30705         Remove -oldas bootstrap description.
30706         Update binutils reference.
30707         Remove comparison failure note.
30708
30709 2010-03-31  Richard Guenther  <rguenther@suse.de>
30710             Zdenek Dvorak  <ook@ucw.cz>
30711             Sebastian Pop  <sebastian.pop@amd.com>
30712
30713         PR middle-end/43464
30714         * tree-ssa-copy.c (init_copy_prop): Handle loop close phi nodes
30715         with multiple arguments.
30716         (execute_copy_prop): Remove call to rewrite_into_loop_closed_ssa.
30717
30718 2010-03-31  Sebastian Pop  <sebastian.pop@amd.com>
30719
30720         * graphite-dependences.c (print_pddr): Call print_pdr with an
30721         extra argument.
30722         * graphite-poly.c (debug_pdr): Add an extra argument for the
30723         verbosity level.
30724         (print_pdr): Same.
30725         (print_pbb_domain): Same.
30726         (print_pbb): Same.
30727         (print_scop_context): Same.
30728         (print_scop): Same.
30729         (print_cloog): Same.
30730         (debug_pbb_domain): Same.
30731         (debug_pbb): Same.
30732         (print_pdrs): Same.
30733         (debug_pdrs): Same.
30734         (debug_scop_context): Same.
30735         (debug_scop): Same.
30736         (debug_cloog): Same.
30737         (print_scop_params): Same.
30738         (debug_scop_params): Same.
30739         (print_iteration_domain): Same.
30740         (print_iteration_domains): Same.
30741         (debug_iteration_domain): Same.
30742         (debug_iteration_domains): Same.
30743         (print_scattering_function): Same.
30744         (print_scattering_functions): Same.
30745         (debug_scattering_function): Same.
30746         (debug_scattering_functions): Same.
30747         * graphite-poly.h (debug_pdr): Update declaration.
30748         (print_pdr): Same.
30749         (print_pbb_domain): Same.
30750         (print_pbb): Same.
30751         (print_scop_context): Same.
30752         (print_scop): Same.
30753         (print_cloog): Same.
30754         (debug_pbb_domain): Same.
30755         (debug_pbb): Same.
30756         (print_pdrs): Same.
30757         (debug_pdrs): Same.
30758         (debug_scop_context): Same.
30759         (debug_scop): Same.
30760         (debug_cloog): Same.
30761         (print_scop_params): Same.
30762         (debug_scop_params): Same.
30763         (print_iteration_domain): Same.
30764         (print_iteration_domains): Same.
30765         (debug_iteration_domain): Same.
30766         (debug_iteration_domains): Same.
30767         (print_scattering_function): Same.
30768         (print_scattering_functions): Same.
30769         (debug_scattering_function): Same.
30770         (debug_scattering_functions): Same.
30771
30772 2010-03-31  Sebastian Pop  <sebastian.pop@amd.com>
30773
30774         * graphite-poly.c (print_scattering_function_1): New.
30775         (print_scattering_function): Call it.
30776         (print_scop_params): Remove spaces at the end of lines.
30777         (print_cloog): New.
30778         (debug_cloog): New.
30779         * graphite-poly.h (print_cloog): Declared.
30780         (debug_cloog): Declared.
30781
30782 2010-03-31  Sebastian Pop  <sebastian.pop@amd.com>
30783
30784         * graphite-sese-to-poly.c (graphite_loop_normal_form): Add the IV bump
30785         in loop->header.
30786         * tree-flow.h (canonicalize_loop_ivs): Updated declaration.
30787         * tree-parloops.c (gen_parallel_loop): Add the IV bump in loop->latch.
30788         * tree-ssa-loop-manip.c (canonicalize_loop_ivs): Add a new parameter
30789         to switch between adding the IV bump in loop->latch or in loop->header.
30790
30791 2010-03-31  Sebastian Pop  <sebastian.pop@amd.com>
30792
30793         * graphite-poly.c (print_scattering_function): Pretty print following
30794         the scoplib format.
30795         (print_pdr): Same.
30796         (print_pbb_domain): Same.
30797         (dump_gbb_cases): Same.
30798         (dump_gbb_conditions): Same.
30799         (print_pdrs): Same.
30800         (print_pbb): Same.
30801         (print_scop_params): Same.
30802         (print_scop_context): Same.
30803         (print_scop): Same.
30804         (print_pbb_body): New.
30805         (lst_indent_to): New.
30806         (print_lst): Start new lines with a #.
30807         * graphite-poly.h (pbb_bb): New.
30808         (pbb_index): Use pbb_bb.
30809         * graphite-ppl.c (ppl_print_powerset_matrix): Print the number of
30810         disjuncts.
30811         * tree-data-ref.c (dump_data_reference): Start new lines with a #.
30812
30813 2010-03-31  Jakub Jelinek  <jakub@redhat.com>
30814
30815         * dwarf2out.c (size_of_die): For -gdwarf-4 use
30816         uleb128 size instead of fixed 1 or 2 for dw_val_class_loc
30817         and 0 instead of 1 for dw_val_class_flag.
30818         (value_format): For -gdwarf-4 use DW_FORM_sec_offset for
30819         dw_val_class_range_list, dw_val_class_loc_list,
30820         dw_val_class_lineptr and dw_val_class_macptr, use
30821         DW_FORM_flag_present for dw_val_class_flag and
30822         DW_FORM_exprloc for dw_val_class_loc.
30823         (output_die): For -gdwarf-4 print dw_val_class_loc
30824         size as uleb128 instead of 1 or 2 bytes and don't print
30825         anything for dw_val_class_flag.
30826
30827         * var-tracking.c (vt_init_cfa_base): Use cselib_lookup_from_insn
30828         instead of cselib_lookup following by tweaking locs->setting_insn.
30829
30830         PR bootstrap/43596
30831         * cselib.c (cselib_process_insn): Clear cselib_current_insn
30832         even before returning from label, setjmp call or volatile asm
30833         handling.
30834
30835 2010-03-31  Richard Guenther  <rguenther@suse.de>
30836
30837         PR middle-end/43600
30838         * cgraphunit.c (cgraph_output_in_order): Do not allocate
30839         temporary data on stack.
30840
30841 2010-03-31  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
30842
30843         * config/sparc/sysv4.h (PUSHSECTION_FORMAT): Remove undef.
30844         (PUSHSECTION_ASM_OP): Remove.
30845         (POPSECTION_ASM_OP): Remove.
30846         (PUSHSECTION_FORMAT): Remove.
30847         * config/sol2.h (PUSHSECTION_FORMAT): Define.
30848         * config/sparc/sol2.h [!USE_GAS] (PUSHSECTION_FORMAT): Redefine.
30849         * config/sol2.c (solaris_output_init_fini): Use it.
30850
30851 2010-03-31  Jie Zhang  <jie@codesourcery.com>
30852
30853         PR 43574
30854         * opt-functions.awk (var_type_struct): Use signed char type
30855         for simple variables.
30856
30857 2010-03-31  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
30858
30859         * config/sol2.c: Include output.h.
30860         (solaris_assemble_visibility): New function.
30861         * config/t-sol2 (sol2.o): Add output.h dependency.
30862         * config/sol2-protos.h (solaris_assemble_visibility): Declare.
30863         * config/sol2.h [!USE_GAS] (TARGET_ASM_ASSEMBLE_VISIBILITY):
30864         Redefine.
30865
30866 2010-03-31  Jakub Jelinek  <jakub@redhat.com>
30867
30868         PR target/43580
30869         * config/arm/arm.c (arm_save_coproc_regs): Use Pmode instead of
30870         V2SImode or XFmode on PRE_DEC.
30871
30872         PR debug/43557
30873         * cfgexpand.c (expand_debug_expr): Handle VOIDmode mode like
30874         BLKmode.
30875
30876 2010-03-31  Jie Zhang  <jie@codesourcery.com>
30877
30878         PR 43562
30879         * reload.h (caller_save_initialized_p): Declare.
30880         * toplev.c (backend_init_target): Don't call
30881         init_caller_save but set caller_save_initialized_p to false.
30882         * caller-save.c (caller_save_initialized_p): Define.
30883         (init_caller_save): Check caller_save_initialized_p.
30884         * ira.c (ira): Call init_caller_save if flag_caller_saves.
30885
30886 2010-03-31  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
30887
30888         PR target/39048
30889         * config.gcc (i[34567]86-*-solaris2*): Add i386/t-fprules-softfp
30890         and soft-fp/t-softfp to tmake_file.
30891         * config/i386/sol2.h (LIBGCC2_HAS_TF_MODE): Redefine.
30892         (LIBGCC2_TF_CEXT): Define.
30893         (TF_SIZE): Define.
30894
30895 2010-03-30  Alexandre Oliva  <aoliva@redhat.com>
30896
30897         PR debug/42977
30898         * cselib.c (n_useless_values): Document handling of debug locs.
30899         (n_useless_debug_values, n_debug_values): New variables.
30900         (new_elt_loc_list): Don't add to debug values, keep count.
30901         (promote_debug_loc): New.
30902         (cselib_reset_table): Zero new variables.
30903         (entry_and_rtx_equal_p): Promote debug locs.
30904         (discard_useless_locs): Increment n_useless_debug_values for
30905         debug values.
30906         (remove_useless_values): Adjust n_useless_values and n_debug_values
30907         with n_useless_debug_values.
30908         (add_mem_for_addr): Promote debug locs.
30909         (cselib_lookup_mem): Likewise.
30910         (cselib_lookup_addr): Renamed to...
30911         (cselib_lookup_addr_1): ... this.  Promote debug locs.  Don't call...
30912         (cselib_log_lookup): ... this.  Turn into...
30913         (cselib_lookup_addr): ... new wrapper.
30914         (cselib_lookup_from_insn): New.
30915         (cselib_invalidate_regno): Increment n_useless_debug_values for
30916         debug values.
30917         (cselib_invalidate_mem): Likewise.
30918         (cselib_process_insn): Take n_deleted and n_debug_values into
30919         account to guard remove_useless_value call.
30920         (cselib_finish): Zero n_useless_debug_values.
30921         * cselib.h (cselib_lookup_from_insn): Declare.
30922         * sched-deps.c (sched_analyze_1): Use cselib_lookup_from_insn.
30923         (sched_analyze_2): Likewise.
30924
30925 2010-03-30  Jakub Jelinek  <jakub@redhat.com>
30926
30927         * var-tracking.c (use_narrower_mode_test, use_narrower_mode): New
30928         functions.
30929         (adjust_mems): Replace narrowing SUBREG of expression containing
30930         just PLUS, MINUS, MULT and ASHIFT of registers and constants
30931         with operations in the narrower mode.
30932
30933         PR debug/43593
30934         * var-tracking.c (dataflow_set_clear_at_call): Invalidate just
30935         regs_invalidated_by_call instead all call_used_reg_set registers.
30936
30937 2010-03-30  Sebastian Pop  <sebastian.pop@amd.com>
30938
30939         PR middle-end/43430
30940         * tree-vect-slp.c (vect_get_and_check_slp_defs): Replace type
30941         pointer comparisons with types_compatible_p.
30942         * tree-vect-stmts.c (vectorizable_call): Same.
30943         (vectorizable_condition): Same.
30944
30945 2010-03-30  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
30946
30947         * config/s390/s390.c (s390_emit_prologue): Omit issuing a dynamic
30948         stack check if the mask would be zero.
30949
30950 2010-03-30  Seongbae Park  <seongbae.park@gmail.com>
30951             Jack Howarth  <howarth@bromo.med.uc.edu>
30952
30953         * tree-profile.c (tree_init_ic_make_global_vars): Make static
30954         variables TLS.
30955
30956 2010-03-30  Joseph Myers  <joseph@codesourcery.com>
30957
30958         PR other/25232
30959         * libgcc-std.ver (GCC_4.5.0): Define version.  Include __unordxf2
30960         and __unordtf2.
30961         * config/bfin/libgcc-bfin.ver (GCC_4.5.0): Define version.
30962         Include ___unordxf2 and ___unordtf2.
30963         * config/i386/libgcc-glibc.ver: Do not define inheritance from
30964         GCC_4.4.0 here.
30965
30966 2010-03-30  Tarik Graba  <tarik.graba@telecom-paristech.fr>
30967
30968         * config/lm32/t-lm32: New file.
30969         * config.gcc: Use the above file when targetting lm32.
30970
30971 2010-03-28  Duncan Sands  <baldrick@free.fr>
30972
30973         * Makefile.in (PLUGIN_HEADERS): Add except.h.
30974
30975 2010-03-29  Sebastian Pop  <sebastian.pop@amd.com>
30976
30977         PR middle-end/43431
30978         * tree-vect-loop.c (vect_estimate_min_profitable_iters):
30979         Improve vectorization cost model diagnostic.
30980
30981 2010-03-29  Sebastian Pop  <sebastian.pop@amd.com>
30982
30983         PR middle-end/43436
30984         * tree-vect-data-refs.c (vect_analyze_data_refs): When
30985         compute_data_dependences_for_loop returns false, early exit
30986         and output an extra diagnostic for the failed data reference
30987         analysis.
30988
30989 2010-03-29  Richard Guenther  <rguenther@suse.de>
30990
30991         PR tree-optimization/43560
30992         * tree-ssa-loop-im.c (ref_always_accessed_p): Add store_p parameter.
30993         (can_sm_ref_p): Treat stores to readonly locations as trapping.
30994
30995 2010-03-29  Jie Zhang  <jie@codesourcery.com>
30996
30997         PR 43564
30998         * toplev.c (process_options): Set optimization_default_node
30999         and optimization_current_node.
31000         * opts.c (decode_options): Don't set optimization_default_node
31001         and optimization_current_node.
31002
31003 2010-03-29  Ralf Corsépius  <ralf.corsepius@rtems.org>
31004
31005         * config/rtems.h: Abandon -qrtems_debug.
31006
31007 2010-03-28  Jan Hubicka  <jh@suse.cz>
31008
31009         PR tree-optimization/43505
31010         * cgraph.c (cgraph_clone_node): When clonning a clone, replacement
31011         map should not be copied.
31012
31013 2010-03-27  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
31014
31015         PR middle-end/41674
31016         * cgraphunit.c (cgraph_build_static_cdtor): If target doesn't have
31017         cdtors, set DECL_PRESERVE_P.
31018         * ipa.c (cgraph_externally_visible_p): Return true if declaration
31019         should be preseved.
31020
31021 2010-03-27  Uros Bizjak  <ubizjak@gmail.com>
31022
31023         PR tree-optimization/43528
31024         * stor-layout.c (place_field): Check that constant fits into
31025         unsigned HWI when skipping calculation of MS bitfield layout.
31026
31027 2010-03-27  Jan Hubicka  <jh@suse.cz>
31028
31029         PR middle-end/43391
31030         * varasm.c (make_decl_rtl): Deal with COMMON flag to make
31031         notice_global_symbol work.
31032
31033 2010-03-27  Jakub Jelinek  <jakub@redhat.com>
31034
31035         * dwarf2out.c (dwarf2_debug_hooks): Use dwarf2out_function_decl
31036         instead of dwarf2out_decl.
31037         (struct var_loc_node): Remove section_label field.
31038         (dwarf2out_function_decl): New function.
31039         (dwarf2out_var_location): Don't set section_label field.
31040         (dwarf2out_begin_function): Don't empty decl_loc_table here.
31041
31042 2010-03-26  Michael Meissner  <meissner@linux.vnet.ibm.com>
31043
31044         PR tree-optimization/43544
31045         * doc/tm.texi (TARGET_VECTORIZE_BUILTIN_VECTORIZED_FUNCTION):
31046         First argument for builtin vectorized function hook is now a
31047         tree to be able to distinguish between machine specific and
31048         standard builtins.
31049         * targhooks.c (default_builtin_vectorized_function): Ditto.
31050         * targhooks.h (default_builtin_vectorized_function): Ditto.
31051         * target.h (struct gcc_target): Ditto.
31052         * tree-vect-stmts.c (vectorizable_function): Ditto.
31053         * config/i386/i386.c (ix86_builtin_vectorized_function): Ditto.
31054         * config/rs6000/rs6000.c (rs6000_builtin_vectorized_function):
31055         Ditto.
31056
31057 2010-03-26  Joseph Myers  <joseph@codesourcery.com>
31058
31059         PR c/43381
31060         * c-decl.c (get_parm_info): Assert that decl going in OTHERS has a
31061         nested binding iff it is a FUNCTION_DECL.
31062         (store_parm_decls_newstyle): Pass nested=true to bind for
31063         FUNCTION_DECLs amongst parameters.
31064
31065 2010-03-26  Jakub Jelinek  <jakub@redhat.com>
31066
31067         * var-tracking.c (vt_expand_loc_callback): Don't run
31068         cselib_expand_value_rtx_cb in dummy mode if
31069         cselib_dummy_expand_value_rtx_cb returned false.
31070
31071         * var-tracking.c (emit_note_insn_var_location): For one part
31072         notes with offset 0, don't add EXPR_LIST around the location.
31073         * dwarf2out.c (loc_descriptor, dw_loc_list_1,
31074         add_location_or_const_value_attribute): Adjust for that change.
31075
31076         PR debug/43540
31077         * dwarf2out.c (reg_save): For DW_CFA_expression put regnum
31078         into first operand and location into second.
31079         (dw_cfi_oprnd1_desc): Return dw_cfi_oprnd_reg_num instead of
31080         dw_cfi_oprnd_loc for DW_CFA_expression.
31081         (dw_cfi_oprnd2_desc): Return dw_cfi_oprnd_loc for DW_CFA_expression.
31082         (output_cfa_loc, output_cfa_loc_raw): For DW_CFA_expression
31083         assume first argument is regnum and second argument is location.
31084
31085 2010-03-26  Uros Bizjak  <ubizjak@gmail.com>
31086
31087         PR target/42113
31088         * config/alpha/alpha.md (*cmp_sadd_si): Change mode
31089         of scratch register to DImode.  Split to DImode comparison operator.
31090         Use SImode subreg of scratch register in the multiplication.
31091         (*cmp_sadd_sidi): Ditto.
31092         (*cmp_ssub_si): Ditto.
31093         (*cmp_ssub_sidi): Ditto.
31094
31095 2010-03-26  Uros Bizjak  <ubizjak@gmail.com>
31096
31097         PR target/43524
31098         * config/i386/i386.c (ix86_expand_prologue) [TARGET_STACK_PROBE]:
31099         Remove invalid assert and wrong comment.
31100
31101 2010-03-26  Jakub Jelinek  <jakub@redhat.com>
31102
31103         PR debug/43516
31104         * flags.h (final_insns_dump_p): New extern.
31105         * final.c (final_insns_dump_p): New variable.
31106         (rest_of_clean_state): Set it before -fdump-final-insns=
31107         dumping, clear afterwards.
31108         * print-rtl.c (print_rtx): If final_insns_dump_p don't dump
31109         MEM_ALIAS_SET on MEMs.
31110
31111 2010-03-26  David S. Miller  <davem@davemloft.net>
31112
31113         * configure.ac: Fix sparc GOTDATA_OP bug check.
31114         * configure: Rebuild.
31115
31116 2010-03-26  Alan Modra  <amodra@gmail.com>
31117
31118         * config/rs6000/rs6000.md (cmptf_internal2): Correct comparison.
31119
31120 2010-03-25  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
31121
31122         * doc/tm.texi (Sections): Document TLS_COMMON_ASM_OP,
31123         TLS_SECTION_ASM_FLAG.
31124
31125 2010-03-25  Jakub Jelinek  <jakub@redhat.com>
31126
31127         PR bootstrap/43511
31128         * config/i386/i386.c (ix86_code_end): Set DECL_WEAK if TARGET_MACHO.
31129         Clear first_function_block_is_cold.
31130
31131         PR c/43385
31132         * gimplify.c (gimple_boolify): Only recurse on __builtin_expect
31133         argument if the argument is truth_value_p.
31134
31135 2010-03-24  Michael Meissner  <meissner@linux.vnet.ibm.com>
31136
31137         * config/rs6000/constraints.md: Update copyright year for my changes.
31138
31139         PR target/43484
31140         * config/rs6000/rs6000.c (rs6000_split_multireg_move): If r0 is
31141         used in reg+reg addressing, swap registers.
31142
31143 2010-03-24  Jakub Jelinek  <jakub@redhat.com>
31144
31145         PR debug/43293
31146         * target.h (struct gcc_target): Add code_end hook.
31147         * target-def.h (TARGET_ASM_CODE_END): Define to hook_void_void
31148         if not yet defined.
31149         (TARGET_ASM_OUT): Add TARGET_ASM_CODE_END.
31150         * toplev.c (compile_file): Call targetm.asm_out.code_end
31151         hook before unwind info/debug info output.
31152         * config/i386/winnt.c (i386_pe_file_end): Don't call ix86_file_end.
31153         * config/i386/linux.h (NEED_INDICATE_EXEC_STACK): Don't define.
31154         (TARGET_ASM_FILE_END): Define to file_end_indicate_exec_stack.
31155         * config/i386/linux64.h (NEED_INDICATE_EXEC_STACK): Don't define.
31156         (TARGET_ASM_FILE_END): Define to file_end_indicate_exec_stack.
31157         * config/i386/i386.c (ix86_file_end): Renamed to...
31158         (ix86_code_end): ... this.  Make static.  Don't call
31159         file_end_indicate_exec_stack.  Emit unwind info using
31160         final_start_function/final_end_function.
31161         (darwin_x86_file_end): Remove.
31162         (TARGET_ASM_CODE_END): Define.
31163         * config/i386/i386.h (TARGET_ASM_FILE_END,
31164         NEED_INDICATE_EXEC_STACK): Don't define.
31165         * config/i386/darwin.h (darwin_x86_file_end): Remove prototype.
31166         (TARGET_ASM_FILE_END): Define to darwin_file_end.
31167         * config/i386/i386-protos.h (ix86_file_end): Remove prototype.
31168         * doc/tm.texi (TARGET_ASM_CODE_END): Document.
31169
31170         PR target/43498
31171         * config/i386/i386.c (x86_output_mi_thunk): Call final_start_function
31172         at the beginning and final_end_function at the end.
31173         * config/s390/s390.c (s390_output_mi_thunk): Likewise.
31174
31175 2010-03-24  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
31176
31177         * configure.ac (i[34567]86-*-*): Handle Solaris 2/x86 TLS support
31178         and Sun as TLS syntax.
31179         (TLS_SECTION_ASM_FLAG) [on_solaris && !gas_flag]: Define.
31180         * configure: Regenerate.
31181         * config.in: Regenerate.
31182         * varasm.c (TLS_SECTION_ASM_FLAG): Define default.
31183         (default_elf_asm_named_section): Use it.
31184         * config/i386/i386.c (output_pic_addr_const): Lowercase @DTPOFF.
31185         (i386_output_dwarf_dtprel): Likewise.
31186         (output_addr_const_extra): Likewise.
31187         (output_pic_addr_const): Lowercase @GOTTPOFF.
31188         (output_addr_const_extra): Likewise.
31189         (output_pic_addr_const): Lowercase @GOTNTPOFF.
31190         (output_addr_const_extra): Likewise.
31191         (output_pic_addr_const): Lowercase @INDNTPOFF.
31192         (output_addr_const_extra): Likewise.
31193         (output_pic_addr_const): Lowercase @NTPOFF.
31194         (output_addr_const_extra): Likewise.
31195         (output_pic_addr_const): Lowercase @TPOFF.
31196         (output_addr_const_extra): Likewise.
31197         * config/i386/i386.md (*tls_global_dynamic_32_gnu): Lowercase @TLSGD.
31198         (*tls_global_dynamic_64): Likewise.
31199         (*tls_local_dynamic_base_32_gnu): Lowercase @TLSLDM.
31200         (*tls_local_dynamic_base_64): Lowercase @TLSLD.
31201
31202         * defaults.h (TLS_COMMON_ASM_OP): Provide default.
31203         (ASM_OUTPUT_TLS_COMMON): Use it.
31204         * config/i386/sol2-gas.h (TLS_COMMON_ASM_OP): Undef.
31205
31206         PR target/38118
31207         * config.gcc (sparc*-*-solaris2*) [$gas=yes]: Add usegas.h to tm_file.
31208         * config/sparc/sol2.h (ASM_OUTPUT_ALIGNED_COMMON): Move ...
31209         * config/sol2.h (ASM_OUTPUT_ALIGNED_COMMON): ... here.
31210         * config/i386/sol2-10.h (ASM_OUTPUT_ALIGNED_COMMON): Redefine.
31211         * config/i386/sol2.h (TARGET_SUN_TLS): Redefine.
31212         (ASM_DECLARE_OBJECT_NAME) [!USE_GAS]: Redefine.
31213
31214 2010-03-24  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
31215
31216         * config/i386/i386.c (override_options): Don't accept
31217         -mtls-dialect=sun any longer.
31218         * config/i386/i386.h (TARGET_SUN_TLS): Define as 0.
31219         * config/i386/i386.md (*tls_global_dynamic_32_sun): Remove.
31220         (*tls_local_dynamic_base_32_sun): Likewise.
31221         * config/i386/sol2.h (TARGET_SUN_TLS): Redefine.
31222
31223 2010-03-24  Jakub Jelinek  <jakub@redhat.com>
31224
31225         PR debug/43508
31226         * dwarf2out.c (mem_loc_descriptor): Don't ICE on
31227         VEC_{MERGE,SELECT,CONCAT,DUPLICATE}.
31228
31229         PR debug/43479
31230         * ira.c (adjust_cleared_regs): New function.
31231         (update_equiv_regs): Adjust cleared_regs in DEBUG_INSNs.
31232
31233         PR debug/19192
31234         PR debug/43479
31235         * cfgexpand.c (gimple_assign_rhs_to_tree): Also set TREE_BLOCK
31236         from gimple_block.
31237         * expr.c (expand_expr_real): Restore previous
31238         curr_insn_source_location and curr_insn_block after
31239         expand_expr_real_1 call.
31240         (expand_expr_real_1) <case SSA_NAME>: Call expand_expr_real
31241         instead of expand_expr_real_1.
31242
31243 2010-03-23  Vladimir Makarov  <vmakarov@redhat.com>
31244
31245         PR rtl-optimization/43413
31246         * ira-color.c (setup_allocno_available_regs_num): Count prohibited
31247         hard regs too.
31248
31249 2010-03-22  James E. Wilson  <wilson@codesourcery.com>
31250
31251         PR target/43348
31252         * ia64.md (call_nogp, call_value_nogp, sibcall_nogp, call_gp,
31253         call_value_gp, sibcall_gp): Use 's' constraint not 'i'.
31254
31255 2010-03-22  H.J. Lu  <hongjiu.lu@intel.com>
31256
31257         * config/i386/i386.c (ix86_target_string): Add -mfma.
31258         Fix a typo in comment.
31259
31260 2010-03-22  Mike Stump  <mikestump@comcast.net>
31261
31262         PR target/23071
31263         * config/rs6000/rs6000.c (darwin_rs6000_special_round_type_align):
31264         Don't overly align based upon packed packed fields.
31265
31266 2010-03-22  Jason Merrill  <jason@redhat.com>
31267
31268         * c-pretty-print.c (pp_c_specifier_qualifier_list) [VECTOR_TYPE]:
31269         Use () rather than [], and move before the element type.
31270
31271 2010-03-22  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
31272
31273         * doc/configfiles.texi (Configuration Files): Removed
31274         fixinc/Makefile*, intl/Makefile.*.
31275         * doc/makefile.texi: Fixed markup. Abstract from version
31276         control system used.
31277         (Makefile): Removed obsolete java/parse.y example.
31278         * doc/sourcebuild.texi: Likewise.
31279         (Top Level): Added config, gnattools, libdecnumber, libgcc,
31280         libgomp, libssp.  Removed fastjar.
31281         (Miscellaneous Docs): Clarify location.
31282         Added COPYING3, COPYING3.LIB.
31283         (Front End Directory): Moved Make-lang.in entry to new subsubsection.
31284
31285 2010-03-22  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
31286
31287         PR target/38085
31288         * config/i386/i386.c (x86_function_profiler)
31289         [!NO_PROFILE_COUNTERS]: Fix typo.
31290         * config/i386/gmon-sol2.c (_mcleanup) [__x86_64__]: Use call
31291         instead of callq.
31292
31293 2010-03-22  Janis Johnson  <janis187@us.ibm.com>
31294             Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
31295
31296         * doc/sourcebuild.texi (Test Directives): Split into six
31297         subsections, with most of the current text in new subsections
31298         Directives, Selectors, and Final Actions.
31299         (Directives): Split list of test directives into multiple
31300         subsubsections.
31301         (Selectors): Describe use and syntax of selectors.
31302         (Effective-Target Keywords): Describe all existing keywords.
31303         (Add Options): Describe features for dg-add-options.
31304         (Require Support): Describe variants of dg-require-support.
31305         (Final Actions): Describe commands to use in dg-final.
31306
31307 2010-03-22  Michael Matz  <matz@suse.de>
31308
31309         PR middle-end/43475
31310         * recog.c (validate_replace_rtx_group): Replace also in
31311         REG_EQUAL and REG_EQUIV notes.
31312
31313 2010-03-22  Richard Guenther  <rguenther@suse.de>
31314
31315         PR tree-optimization/43390
31316         * tree-vect-stmts.c (get_vectype_for_scalar_type): Make
31317         sure vector extracts are type correct.
31318
31319 2010-03-22  Richard Guenther  <rguenther@suse.de>
31320
31321         PR middle-end/40106
31322         * builtins.c (expand_builtin_pow): Expand pow (x, 1.5) as
31323         x * sqrt (x) even when optimizing for size if the target
31324         has native support for sqrt.
31325
31326 2010-03-22  Jakub Jelinek  <jakub@redhat.com>
31327
31328         * varasm.c (make_decl_rtl_for_debug): Also clear
31329         flag_mudflap for the duration of make_decl_rtl call.
31330
31331         PR debug/43443
31332         * var-tracking.c (add_cselib_value_chains): Remove ASM_OPERANDS
31333         locs from preserved VALUEs.
31334
31335 2010-03-21  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
31336
31337         PR middle-end/42718
31338         * pa.md (movmemsi): Set align to one if zero.
31339         (movmemdi): Likewise.
31340
31341 2010-03-21  Richard Earnshaw  <rearnsha@arm.com>
31342
31343         PR target/42321
31344         * arm.c (arm_output_epilogue): Correctly match VFP pop instructions
31345         with their corresponding prologue pushes.
31346
31347 2010-03-20  Andrew Pinski  <pinskia@gmail.com>
31348
31349         PR target/43156
31350         * config/spu/spu.c (spu_expand_prologue): Don't emit NOTE_INSN_DELETED
31351         at the begining or end.
31352         (spu_expand_epilogue): Likewise.
31353
31354 2010-03-20  Richard Guenther  <rguenther@suse.de>
31355
31356         PR rtl-optimization/43438
31357         * combine.c (make_extraction): Properly zero-/sign-extend an
31358         extraction of the low part of a CONST_INT.  Also handle
31359         CONST_DOUBLE.
31360
31361 2010-03-19  Mike Stump  <mikestump@comcast.net>
31362
31363         * config/i386/darwin.h (SUBTARGET32_DEFAULT_CPU): Add.
31364         * config/i386/i386.c (SUBTARGET32_DEFAULT_CPU): Add.
31365         (override_options): Use SUBTARGET32_DEFAULT_CPU.
31366
31367 2010-03-19  Andrew Pinski  <andrew_pinski@caviumnetworks.com>
31368
31369         PR c/43211
31370         * c-decl.c (grokparms): Set arg_types to NULL_TREE if there was
31371         an error.
31372
31373 2010-03-19  Bernd Schmidt  <bernds@codesourcery.com>
31374
31375         PR rtl-optimization/42258
31376         * ira-lives.c (check_and_make_def_conflict): Ignore conflict for a
31377         use that may match DEF.
31378
31379         PR target/40697
31380         * optabs.c (avoid_expensive_constant): Use rtx_cost to find out
31381         the cost of loading the constant rather than assuming
31382         COSTS_N_INSNS (1).
31383         * config/arm/arm.c (thumb1_rtx_costs) <case CONST_INT>: If the
31384         outer code is AND, do the same tests as the andsi3 expander and
31385         return COSTS_N_INSNS (1) if and is cheap.
31386
31387         * optabs.c (avoid_expensive_constant): Fix formatting.
31388
31389 2010-03-19  Michael Matz  <matz@suse.de>
31390
31391         PR c++/43116
31392         * attribs.c (decl_attributes): When rebuilding a function pointer
31393         type use the same qualifiers as the original pointer type.
31394
31395 2010-03-19  Martin Jambor  <mjambor@suse.cz>
31396
31397         * doc/gimple.texi (Logical Operators): Describe is_gimple_ip_invariant
31398         and is_gimple_ip_invariant_address.
31399
31400 2010-03-19  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
31401
31402         Revert
31403         2009-10-01  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
31404
31405         * config/arm/arm.c (arm_override_options): Turn off
31406         flag_dwarf2_cfi_asm for AAPCS variants.
31407
31408 2010-03-19  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
31409
31410         PR target/43399
31411         * config/arm/arm.c (emit_multi_reg_push): Update comments.
31412         Use PRE_MODIFY instead of PRE_DEC.
31413         (emit_sfm): Use PRE_MODIFY instead of PRE_DEC.
31414         (vfp_emit_fstmd): Likewise.
31415
31416 2010-03-19  Michael Matz  <matz@suse.de>
31417
31418         PR target/43305
31419         * builtins.c (expand_builtin_interclass_mathfn,
31420         expand_builtin_signbit): Use maybe_emit_unop_insn, emit libcalls
31421         if that fails.
31422
31423 2010-03-19  Richard Guenther  <rguenther@suse.de>
31424
31425         PR tree-optimization/43415
31426         * tree-ssa-pre.c (phi_translate): Split out worker to ...
31427         (phi_translate_1): ... this.
31428         (phi_translate): Move all caching here.  Cache all NARY
31429         and REFERENCE translations.
31430
31431 2010-03-19  David S. Miller  <davem@davemloft.net>
31432
31433         With help from Eric Botcazou.
31434         * config/sparc/sparc.c: Include dwarf2out.h.
31435         (emit_pic_helper): Delete.
31436         (pic_helper_symbol_name): Delete.
31437         (pic_helper_emitted_p): Delete.
31438         (pic_helper_needed): New.
31439         (USE_HIDDEN_LINKONCE): Define to '1' if HAVE_GAS_HIDDEN else '0'.
31440         (get_pc_thunk_name): New.
31441         (load_pic_register): Remove 'delay_pic_helper' arg.  Use
31442         get_thunk_pc_name and ggc_strdup to generate PIC thunk symbol.
31443         Set pic_helper_needed to true.  Don't call emit_pic_helper.
31444         (sparc_expand_prologue): Update load_pic_register call.
31445         (sparc_output_mi_thunk): Likewise.
31446         (sparc_file_end): Emit a hidden comdat symbol for the PIC
31447         thunk if possible.  Output CFI information as needed.
31448
31449 2010-03-18  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
31450             Jack Howarth  <howarth@bromo.med.uc.edu>
31451
31452         PR target/36399
31453         * config/i386/i386.h: Fix ABI on darwin x86-32.
31454
31455 2010-03-18  Aldy Hernandez  <aldyh@redhat.com>
31456
31457         * tree.h: Declare make_decl_rtl_for_debug.
31458         * varasm.c (make_decl_rtl_for_debug): New.
31459         * dwarf2out.c (rtl_for_decl_location): Call it.
31460         * cfgexpand.c (expand_debug_expr): Call it.
31461
31462 2010-03-18  Jakub Jelinek  <jakub@redhat.com>
31463
31464         PR bootstrap/43399
31465         * var-tracking.c (adjust_mems) <case POST_MODIFY>: Allow BLKmode
31466         mem_mode.
31467
31468         PR bootstrap/43403
31469         * var-tracking.c (vt_init_cfa_base): Do nothing if
31470         cfa_base_rtx would be hard_frame_pointer_rtx or non-fixed register.
31471
31472 2010-03-18  Alexandre Oliva  <aoliva@redhat.com>
31473
31474         PR debug/42873
31475         * var-tracking.c (canonicalize_vars_star): New.
31476         (dataflow_post_merge_adjust): Use it.
31477
31478 2010-03-18  Jakub Jelinek  <jakub@redhat.com>
31479
31480         PR debug/43058
31481         * var-tracking.c (non_suitable_const): New function.
31482         (add_uses): For DEBUG_INSNs with constants, don't record any
31483         value, instead just the constant value itself.
31484         (compute_bb_dataflow) <case MO_VAL_LOC>: If PAT_VAR_LOCATION_LOC
31485         is not VAR_LOC_UNKNOWN_P, set var to the constant.
31486         (emit_notes_in_bb): Likewise.
31487         (emit_note_insn_var_location): For onepart variables if
31488         cur_loc is a VOIDmode constant, use DECL_MODE.
31489
31490 2010-03-18  Martin Jambor  <mjambor@suse.cz>
31491
31492         PR middle-end/42450
31493         * cgraph.h (cgraph_redirect_edge_call_stmt_to_callee): Declare.
31494         * cgraphunit.c (cgraph_materialize_all_clones): Update calls in
31495         all non-clones.  Moved call redirection...
31496         (cgraph_redirect_edge_call_stmt_to_callee): ...to this new function.
31497         (cgraph_materialize_all_clones): Dispose of all
31498         combined_args_to_skip bitmaps.
31499         (verify_cgraph_node): Do not check for edges pointing to wrong
31500         nodes in inline clones.
31501         * tree-inline.c (copy_bb): Call
31502         cgraph_redirect_edge_call_stmt_to_callee.
31503         * ipa.c (cgraph_remove_unreachable_nodes): Call
31504         cgraph_node_remove_callees even when there are used clones.
31505
31506 2010-03-18  H.J. Lu  <hongjiu.lu@intel.com>
31507
31508         * config/i386/libgcc-glibc.ver: Make GCC_4.5.0 inherit GCC_4.4.0.
31509
31510 2010-03-18  H.J. Lu  <hongjiu.lu@intel.com>
31511
31512         PR target/43383
31513         * config/i386/libgcc-glibc.ver: Add __extendxftf2 to GCC_4.5.0
31514         for 32bit.
31515
31516 2010-03-18  Michael Matz  <matz@suse.de>
31517
31518         PR middle-end/43419
31519         * builtins.c (expand_builtin_pow): Don't transform pow(x, 0.5)
31520         into sqrt(x) if we need to preserve signed zeros.
31521
31522 2010-03-18  Steven Bosscher  <steven@gcc.gnu.org>
31523             Eric Botcazou  <ebotcazou@adacore.com>
31524
31525         PR rtl-optimization/43360
31526         * loop-invariant.c (move_invariant_reg): Remove the REG_EQUAL
31527         note if we don't know its invariant status.
31528
31529 2010-03-18  Michael Matz  <matz@suse.de>
31530
31531         PR tree-optimization/43402
31532         * tree-cfgcleanup.c (cleanup_control_expr_graph): Don't follow
31533         PHI chains of ssa names registered for update.
31534
31535 2010-03-17  Peter Bergner  <bergner@vnet.ibm.com>
31536
31537         PR target/42427
31538         * config/rs6000/rs6000.c (rs6000_split_multireg_move): Add support for
31539         non-offsettable and pre_modify update addressing.
31540         * config/rs6000/dfp.md (*movdd_hardfloat32): Make the "0", "1"
31541         and "2" alternatives "#".
31542         (*movdd_softfloat32): Make all alternatives "#";
31543         * config/rs6000/rs6000.md (DIFD): New define_mode_iterator.
31544         (*movdf_hardfloat32): Make the "0", "1" and "2" alternatives "#".
31545         (*movdf_softfloat32): Make all alternatives "#";
31546         (movdi): Use the new DIFD mode iterator to create a common splitter
31547         for movdi, movdf and movdd patterns.
31548
31549 2010-03-18  Shujing Zhao  <pearly.zhao@oracle.com>
31550
31551         * common.opt (dumpdir): Remove redundant tab.
31552
31553 2010-03-17  Martin Jambor  <mjambor@suse.cz>
31554
31555         PR tree-optimization/43347
31556         * tree-sra.c (create_access_replacement): Set TREE_NO_WARNING when the
31557         original base is DECL_ARTIFICIAL or DECL_IGNORED_P.
31558
31559 2010-03-17  Bernd Schmidt  <bernd.schmidt@analog.com>
31560
31561         PR rtl-optimization/42216
31562         * regrename.c (create_new_chain): New function, broken out from...
31563         (scan_rtx_reg): ... here.  Call it.  Handle the case where we are
31564         appending a use to an empty chain.
31565         (build_def_use): Remove previous changes that convert OP_INOUT to
31566         OP_OUT operands; instead detect the case where an OP_INOUT operand
31567         uses a previously untracked register and create an empty chain for it.
31568
31569 2010-03-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31570
31571         * doc/extend.texi (Function Attributes): Rewrite unfinished
31572         sentence in ms_abi documentation.
31573
31574 2010-03-17  Alan Modra  <amodra@gmail.com>
31575
31576         * config/rs6000/linux64.opt (mprofile-kernel): Use profile_kernel var.
31577         * config/rs6000/linux64.h (TARGET_PROFILE_KERNEL): Define.
31578         (SUBSUBTARGET_OVERRIDE_OPTIONS): Don't use SET_PROFILE_KERNEL.
31579         * config/rs6000/rs6000.c (SET_PROFILE_KERNEL): Don't define.
31580
31581 2010-03-16  Richard Henderson  <rth@redhat.com>
31582
31583         PR middle-end/43365
31584         * tree-eh.c (replace_goto_queue): Also replace in the eh_seq.
31585         (lower_try_finally): Save and restore eh_seq around the expansion
31586         of the try-finally.
31587
31588 2010-03-16  Aldy Hernandez  <aldyh@redhat.com>
31589
31590         * graphite-sese-to-poly.c (split_reduction_stmt): Skip debug
31591         statements before splitting block.
31592
31593 2010-03-16  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
31594
31595         * doc/sourcebuild.texi (Testsuites): Fix markup.
31596         Use pathnames relative to gcc/testsuite.
31597         (Test Directives): Move description of how timeout is determined.
31598         (Ada Tests): Favor gnat.exp over ada/acats/tests/gcc.
31599         (C Tests): Correct gcc.misc-tests directory.
31600         Framework tests now live in gcc.test-framework.
31601
31602 2010-03-16  Richard Guenther  <rguenther@suse.de>
31603
31604         PR middle-end/43379
31605         * tree-cfg.c (gimple_merge_blocks): When propagating virtual PHI
31606         operands make sure to merge SSA_NAME_OCCURS_IN_ABNORMAL_PHI properly.
31607
31608 2010-03-16  Aldy Hernandez  <aldyh@redhat.com>
31609             Alexandre Oliva  <aoliva@redhat.com>
31610
31611         PR tree-optimization/42917
31612         * lambda-code.c (remove_iv): Skip debug statements.
31613         (lambda_loopnest_to_gcc_loopnest): Likewise.
31614         (not_interesting_stmt): Debug statements are not interesting.
31615
31616 2010-03-16  Jakub Jelinek  <jakub@redhat.com>
31617
31618         PR debug/43051
31619         PR debug/43092
31620         * cselib.c (cselib_preserve_constants,
31621         cfa_base_preserved_val): New static variables.
31622         (preserve_only_constants): New function.
31623         (cselib_reset_table): If cfa_base_preserved_val is non-NULL, don't
31624         clear its REG_VALUES.  If cselib_preserve_constants, don't
31625         empty the whole hash table, but preserve there VALUEs with constants,
31626         cfa_base_preserved_val and cfa_base_preserved_val plus constant.
31627         (cselib_preserve_cfa_base_value): New function.
31628         (cselib_invalidate_regno): Don't invalidate cfa_base_preserved_val.
31629         (cselib_init): Change argument to int bitfield.  Set
31630         cselib_preserve_constants to whether CSELIB_PRESERVE_CONSTANTS
31631         is in it.
31632         (cselib_finish): Clear cselib_preserve_constants and
31633         cfa_base_preserved_val.
31634         * cselib.h (enum cselib_record_what): New enum.
31635         (cselib_init): Change argument to int.
31636         (cselib_preserve_cfa_base_value): New prototype.
31637         * postreload.c (reload_cse_regs_1): Adjust cselib_init caller.
31638         * dse.c (dse_step1): Likewise.
31639         * cfgcleanup.c (thread_jump): Likewise.
31640         * sched-deps.c (sched_analyze): Likewise.
31641         * gcse.c (local_cprop_pass): Likewise.
31642         * simplify-rtx.c (simplify_replace_fn_rtx): Add argument to callback.
31643         If FN is non-NULL, call the callback always and whenever it returns
31644         non-NULL just return that.  Only do rtx_equal_p if FN is NULL.
31645         * rtl.h (simplify_replace_fn_rtx): Add argument to callback.
31646         * combine.c (propagate_for_debug_subst): Add old_rtx argument,
31647         compare from with old_rtx and if it isn't rtx_equal_p, return NULL.
31648         * Makefile.in (var-tracking.o): Depend on $(RECOG_H).
31649         * var-tracking.c: Include recog.h.
31650         (bb_stack_adjust_offset): Remove.
31651         (vt_stack_adjustments): Don't call it, instead just gather the
31652         adjustments using insn_stack_adjust_offset_pre_post on each bb insn.
31653         (adjust_stack_reference): Remove.
31654         (compute_cfa_pointer): New function.
31655         (hard_frame_pointer_adjustment, cfa_base_rtx): New static variables.
31656         (struct adjust_mem_data): New type.
31657         (adjust_mems, adjust_mem_uses, adjust_mem_stores, adjust_insn): New
31658         functions.
31659         (get_address_mode): New function.
31660         (replace_expr_with_values): Use it.
31661         (use_type): Don't do cselib_lookup for VAR_LOC_UNKNOWN_P.
31662         Use get_address_mode.  For cfa_base_rtx return MO_CLOBBER.
31663         (adjust_sets): Remove.
31664         (add_uses): Don't add extra MO_VAL_USE for cfa_base_rtx plus constant.
31665         Use get_address_mode.
31666         (get_adjusted_src): Remove.
31667         (add_stores): Don't call it.  Never reuse expr SET.  Don't add extra
31668         MO_VAL_USE for cfa_base_rtx plus constant.  Use get_address_mode.
31669         (add_with_sets): Don't call adjust_sets.
31670         (fp_setter, vt_init_cfa_base): New functions.
31671         (vt_initialize): Change return type to bool.  Move most of pool etc.
31672         initialization to the beginning of the function from end.  Pass
31673         CSELIB_RECORD_MEMORY | CSELIB_PRESERVE_CONSTANTS to cselib_init.
31674         If !frame_pointer_needed, call vt_stack_adjustment before mos
31675         vector is filled, call vt_init_cfa_base if argp/framep has been
31676         eliminated to sp.  If frame_pointer_needed and argp/framep has
31677         been eliminated to hard frame pointer, set
31678         hard_frame_pointer_adjustment and call vt_init_cfa_base after
31679         encountering fp setter in the prologue.  For MO_ADJUST, call
31680         log_op_type before pusing the op into mos vector, not afterwards.
31681         Call adjust_insn before cselib_process_insn/add_with_sets,
31682         call cancel_changes (0) afterwards.
31683         (variable_tracking_main_1): Adjust for vt_initialize calling
31684         vt_stack_adjustments and returning whether it succeeded or not.
31685
31686 2010-03-15  Aldy Hernandez  <aldyh@redhat.com>
31687
31688         * graphite-sese-to-poly.c (rewrite_cross_bb_scalar_deps): Skip
31689         debug statements.
31690
31691 2010-03-15  Jakub Jelinek  <jakub@redhat.com>
31692
31693         * dwarf2out.c (dwarf2out_frame_debug): Don't assert drap_reg
31694         has been set.
31695         (based_loc_descr): Use DW_OP_fbreg for vdrap_reg even when
31696         drap_reg has not been set.
31697
31698 2010-03-15  Michael Matz  <matz@suse.de>
31699
31700         PR middle-end/43300
31701         * tree-outof-ssa.c (emit_partition_copy): New argument sizeexp,
31702         use it to expand block copies.
31703         (insert_partition_copy_on_edge, insert_rtx_to_part_on_edge,
31704         insert_part_to_rtx_on_edge): Adjust callers of emit_partition_copy.
31705         (insert_value_copy_on_edge): Use store_expr for BLKmode values.
31706
31707 2010-03-15  Richard Guenther  <rguenther@suse.de>
31708
31709         PR tree-optimization/43367
31710         * tree-cfg.c (gimple_can_merge_blocks_p): Simplify PHI
31711         elimination check.
31712
31713 2010-03-15  Richard Guenther  <rguenther@suse.de>
31714
31715         PR tree-optimization/43317
31716         * ipa-struct-reorg.c (create_new_general_access): Update stmt.
31717
31718 2010-03-15  Martin Jambor  <mjambor@suse.cz>
31719
31720         PR tree-optimization/43141
31721         * tree-sra.c (create_abstract_origin): New function.
31722         (modify_function): Call create_abstract_origin.
31723
31724 2010-03-15  Chris Demetriou  <cgd@google.com>
31725
31726         * Makefile.in (stmp-int-hdrs): Don't chmod include/stdint.h if it
31727         wasn't copied.
31728
31729 2010-03-13  Sebastian Pop  <sebastian.pop@amd.com>
31730
31731         PR middle-end/43354
31732         * graphite-sese-to-poly.c (rewrite_close_phi_out_of_ssa): Do not
31733         call insert_out_of_ssa_copy for default definitions.
31734
31735 2010-03-13  Sebastian Pop  <sebastian.pop@amd.com>
31736
31737         * graphite-clast-to-gimple.c (my_long_long): Defined.
31738         (gcc_type_for_cloog_iv): Use it instead of long_long_integer_type_node.
31739         * graphite-sese-to-poly.c (my_long_long): Defined.
31740         (scop_ivs_can_be_represented): Use it.
31741
31742 2010-03-13  Sebastian Pop  <sebastian.pop@amd.com>
31743
31744         * doc/invoke.texi: Fix documentation of graphite-max-nb-scop-params,
31745         graphite-max-bbs-per-function, and loop-block-tile-size.
31746         * params.def (PARAM_GRAPHITE_MAX_NB_SCOP_PARAMS): Replace "maximal"
31747         with "maximum".
31748         (PARAM_GRAPHITE_MAX_BBS_PER_FUNCTION): Same.
31749
31750 2010-03-13  Sebastian Pop  <sebastian.pop@amd.com>
31751
31752         * graphite-clast-to-gimple.c (gcc_type_for_iv_of_clast_loop): Remove
31753         forward declaration.
31754         * graphite-sese-to-poly.c (reduction_phi_p): Remove FIXME comment.
31755         (add_upper_bounds_from_estimated_nit): New.
31756         (build_loop_iteration_domains): Use it.
31757
31758 2010-03-13  Sebastian Pop  <sebastian.pop@amd.com>
31759
31760         * doc/invoke.texi (PARAM_LOOP_BLOCK_TILE_SIZE): Document.
31761
31762 2010-03-13  Sebastian Pop  <sebastian.pop@amd.com>
31763
31764         PR middle-end/43306
31765         * tree-chrec.c (evolution_function_right_is_integer_cst): CHREC_RIGHT
31766         should be an INTEGER_CST.  Also handle CASE_CONVERT.
31767
31768 2010-03-13  Sebastian Pop  <sebastian.pop@amd.com>
31769
31770         * graphite.c (graphite_initialize): To bound the number of bbs per
31771         function, use PARAM_GRAPHITE_MAX_BBS_PER_FUNCTION.
31772         * params.def (PARAM_GRAPHITE_MAX_BBS_PER_FUNCTION): Declared.
31773         * doc/invoke.texi: Document it.
31774
31775 2010-03-13  Sebastian Pop  <sebastian.pop@amd.com>
31776
31777         * graphite-sese-to-poly.c (build_poly_scop): Do not return bool.
31778         * graphite-sese-to-poly.h (build_poly_scop): Same.
31779
31780 2010-03-13  Sebastian Pop  <sebastian.pop@amd.com>
31781
31782         * graphite-sese-to-poly.c (build_poly_scop): Limit scops following
31783         the number of parameters in the scop.  Use as an upper bound
31784         PARAM_GRAPHITE_MAX_NB_SCOP_PARAMS.
31785         * params.def (PARAM_GRAPHITE_MAX_NB_SCOP_PARAMS): Declared.
31786         * doc/invoke.texi: Document it.
31787
31788 2010-03-13  Jerry Quinn  <jlquinn@optonline.net>
31789
31790         * Makefile.in (TEXI_GCCINT_FILES): Remove c-tree.texi.
31791         * doc/c-tree.texi: Remove.
31792         * doc/generic.texi: Merge c-tree.texi here.
31793         * doc/gccint.texi (Trees): Remove menu entry.
31794         (c-tree.texi): Remove @include.
31795         * doc/rtl.texi (Reading RTL): Update pxref from Trees to GENERIC.
31796         * doc/languages.texi (Reading RTL): Ditto.
31797
31798 2010-03-12  Steve Ellcey  <sje@cup.hp.com>
31799
31800         PR target/42869
31801         * config/ia64/sync.md (sync_compare_and_swap): Move memory fence.
31802
31803 2010-03-12  Michael Meissner  <meissner@linux.vnet.ibm.com>
31804
31805         PR middle-end/42431
31806         * config/rs6000/rs6000.c (rs6000_emit_move): Delete band-aid
31807         code added to work around reload clobbering CONST insns.
31808
31809 2010-03-12  Jakub Jelinek  <jakub@redhat.com>
31810
31811         * cselib.c (LONG_TERM_PRESERVED_VALUE_P): Remove.
31812         (cselib_preserve_definitely, cselib_clear_preserve): Remove.
31813         (cselib_preserve_only_values): Remove retain argument, don't
31814         traverse hash table with cselib_{preserve_definitely,clear_preserve}.
31815         * cselib.h (cselib_preserve_only_values): Remove retain argument.
31816         * var-tracking.c (micro_operation): Move insn field before union.
31817         Add DEF_VEC_O and DEF_VEC_ALLOC_O for this type.
31818         (struct variable_tracking_info_def): Remove n_mos field, change
31819         mos into a vector of micro_operations.
31820         (count_uses, count_uses_1, count_stores, count_with_sets): Remove.
31821         (bb_stack_adjust_offset, log_op_type, add_uses, add_stores,
31822         compute_bb_dataflow, emit_notes_in_bb): Adjust for VTI (bb)->mos
31823         changing into a vector.
31824         (add_with_sets): Likewise.  Ensure MO_VAL_USE uops from add_stores
31825         come before all other uops generated by add_stores.
31826         (vt_add_function_parameters): Adjust for cselib_preserve_only_values
31827         argument removal.
31828         (vt_initialize): Likewise.  Adjust for VTI (bb)->mos changing into
31829         a vector.  Run just one pass over the bbs instead of separate counting
31830         and computation phase.
31831         (vt_finalize): Free VTI (bb)->mos vector instead of array.
31832
31833         PR debug/43329
31834         * tree-inline.c (remap_decls): Put old_var rather than origin_var
31835         into *nonlocalized_list vector.
31836         * dwarf2out.c (gen_formal_parameter_die): Call decl_ultimate_origin
31837         even if origin is non-NULL.
31838         (gen_variable_die): Likewise.
31839         (process_scope_var): Don't change origin.
31840         (gen_decl_die): Likewise.
31841         * tree-cfgcleanup.c (remove_forwarder_block): Check single_pred_p
31842         before adding new edges instead of after it, fix moving over
31843         debug stmts.
31844
31845 2010-03-11  David S. Miller  <davem@davemloft.net>
31846
31847         * configure.ac (gcc_cv_as_cfi_advance_working): Skip a multiple
31848         of four.
31849         * configure: Rebuild.
31850
31851 2010-03-11  Martin Jambor  <mjambor@suse.cz>
31852
31853         PR tree-optimization/43257
31854         * tree.c (assign_assembler_name_if_neeeded): New function.
31855         (free_lang_data_in_cgraph): Assembler name assignment moved to the
31856         above new function.
31857         * tree.h (assign_assembler_name_if_neeeded): Declare.
31858         * cgraphunit.c (cgraph_analyze_function): Create an assembler name for
31859         the function if needed.
31860
31861 2010-03-11  Chris Demetriou  <cgd@google.com>
31862
31863         * Makefile.in (stmp-int-hdrs): Make include/unwind.h,
31864         include/stdint-gcc.h, and include/stdint.h world-readable.
31865
31866 2010-03-11  Richard Guenther  <rguenther@suse.de>
31867
31868         PR tree-optimization/43255
31869         * tree-vrp.c (process_assert_insertions_for): Do not insert
31870         asserts for trivial conditions.
31871
31872 2010-03-11  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
31873
31874         PR tree-optimization/43280
31875         * tree-ssa-math-opts.c (find_bswap_1): Modify symbolic number
31876         generation.  Move calculation of size out of the if branch.
31877         (find_bswap): Modify compare number generation.
31878
31879 2010-03-11  Richard Guenther  <rguenther@suse.de>
31880
31881         PR lto/43200
31882         * lto-streamer-in.c (maybe_fixup_decls): Simplify.
31883         (input_gimple_stmt): Fixup handled component types during
31884         operand read.  Also fix up decls in ADDR_EXPRs.
31885
31886 2010-03-10  Eric Botcazou  <ebotcazou@adacore.com>
31887
31888         * config/sparc/sol2-bi.h (CC1_SPEC): Default to -mcpu=v9 for -m32.
31889         * config/sparc/t-sol2-64 (MULTILIB_DIRNAMES): Use sparcv8plus.
31890
31891 2010-03-10  Jan Hubicka  <jh@suse.cz>
31892
31893         PR c/43288
31894         * ipa.c (function_and_variable_visibility) Normalize COMMON bits.
31895         * varasm.c (get_variable_section): Don't do that here...
31896         (make_decl_rtl): ... and here.
31897         (do_assemble_alias): Produce decl RTL.
31898         (assemble_alias): Likewise.
31899
31900 2010-03-10  Jakub Jelinek  <jakub@redhat.com>
31901
31902         PR debug/43290
31903         * reg-notes.def (REG_CFA_SET_VDRAP): New note.
31904         * dwarf2out.c (dwarf2out_frame_debug_expr): Remove rule 20 - setting
31905         of fde->vdrap_reg.
31906         (dwarf2out_frame_debug): Handle REG_CFA_SET_VDRAP note.
31907         (based_loc_descr): Only express drap or vdrap regno based expressions
31908         using DW_OP_fbreg when not optimizing.
31909         * config/i386/i386.c (ix86_get_drap_rtx): When not optimizing,
31910         make the vDRAP = DRAP assignment RTX_FRAME_RELATED_P and add
31911         REG_CFA_SET_VDRAP note.
31912
31913 2010-03-10  Alexander Monakov  <amonakov@ispras.ru>
31914
31915         PR tree-optimization/43236
31916         * tree-loop-distribution.c (generate_memset_zero): Fix off-by-one
31917         error in calculation of base address in reverse iteration case.
31918         (generate_builtin): Take number of latch executions if the statement
31919         is in the latch.
31920
31921 2010-03-10  Andrey Belevantsev  <abel@ispras.ru>
31922
31923         PR middle-end/42859
31924         * tree-eh.c: Include pointer-set.h.
31925         (lower_eh_dispatch): Filter out duplicate case labels and
31926         remove the unneeded edge when the label is unused.  Return
31927         true when some edges are removed.
31928         (execute_lower_eh_dispatch): When any lowering resulted in
31929         removing an edge, also delete unreachable blocks.
31930
31931 2010-03-10  Jakub Jelinek  <jakub@redhat.com>
31932
31933         PR bootstrap/43287
31934         * config/rs6000/rs6000.c (rs6000_delegitimize_address): Handle
31935         UNSPEC_MACHOPIC_OFFSET.
31936
31937 2010-03-09  Andreas Schwab  <schwab@linux-m68k.org>
31938
31939         PR target/43294
31940         * config/m68k/m68k.c (TARGET_DELEGITIMIZE_ADDRESS): Define.
31941         (m68k_delegitimize_address): New function.
31942
31943 2010-03-09  Jakub Jelinek  <jakub@redhat.com>
31944
31945         PR debug/43299
31946         * dwarf2out.c (const_ok_for_output_1): Return 1 for UNSPECs.
31947
31948         PR debug/43299
31949         * var-tracking.c (adjust_sets): New function.
31950         (count_with_sets, add_with_sets): Use it.
31951         (get_adjusted_src): New inline function.
31952         (add_stores): Use it.
31953
31954         PR debug/43304
31955         * var-tracking.c (vt_expand_loc_callback) <case SUBREG>: If dummy,
31956         call cselib_dummy_expand_value_rtx_cb instead of
31957         cselib_expand_value_rtx_cb.
31958
31959         PR debug/43293
31960         * config/i386/t-i386 (i386.o): Depend on debug.h and dwarf2out.h.
31961         * config/i386/i386.c: Include debug.h and dwarf2out.h.
31962         (ix86_file_end): If dwarf2out_do_cfi_asm (), emit .cfi_startproc
31963         and .cfi_endproc around the pic thunks.
31964         (output_set_got): For TARGET_DEEP_BRANCH_PREDICTION pic, ensure
31965         all queued unwind info register saves are saved before the call.
31966         For !TARGET_DEEP_BRANCH_PREDICTION pic, ensure the call is
31967         considered as sp-=4 for unwind info and the pop as sp+=4 which
31968         also clobbers dest, but doesn't actually restore it.
31969
31970         PR debug/43290
31971         * config/i386/i386.c (ix86_get_drap_rtx): Don't set
31972         RTX_FRAME_RELATED_P.
31973
31974 2010-03-09  Jie Zhang  <jie@codesourcery.com>
31975
31976         * config/arm/arm.md (thumb_mulsi3_v6): Remove trailing
31977         whitespaces in output template.
31978
31979 2010-03-09  Jie Zhang  <jie@codesourcery.com>
31980
31981         * ira-lives.c (check_and_make_def_use_conflict): Don't fall
31982         out array boundary.
31983
31984 2010-03-08  Jakub Jelinek  <jakub@redhat.com>
31985
31986         * Makefile.in (check_gcc_parallelize): Run dg-torture.exp and
31987         builtins.exp in a separate job.
31988
31989 2010-03-08  Sebastian Pop  <sebastian.pop@amd.com>
31990
31991         * graphite-sese-to-poly.c (add_param_constraints): Use
31992         lower_bound_in_type and upper_bound_in_type.
31993
31994 2010-03-08  Sebastian Pop  <sebastian.pop@amd.com>
31995
31996         * graphite-sese-to-poly.c (add_param_constraints): Use sizetype
31997         instead of unsigned_type_node.
31998
31999 2010-03-08  Sebastian Pop  <sebastian.pop@amd.com>
32000             Reza Yazdani  <reza.yazdani@amd.com>
32001
32002         PR middle-end/43065
32003         * graphite-sese-to-poly.c (add_param_constraints): Insert bounds
32004         on pointer type parameters.
32005
32006 2010-03-08  Tobias Grosser  <grosser@fim.uni-passau.de>
32007
32008         PR middle-end/42644
32009         PR middle-end/42130
32010         * graphite-clast-to-gimple.c (clast_to_gcc_expression): Also
32011         handle conversions from pointer to integers.
32012         (gcc_type_for_cloog_iv): Choose the smalles signed integer as an
32013         induction variable, to be able to work with code generated by CLooG.
32014         * graphite-sese-to-poly.c (scop_ivs_can_be_represented): New.
32015         (build_poly_scop): Bail out if we cannot codegen a loop.
32016
32017 2010-03-08  Tobias Grosser  <grosser@fim.uni-passau.de>
32018
32019         * graphite-clast-to-gimple.c (translate_clast): Do not short-cut
32020         code generation with gloog_error.
32021
32022 2010-03-08  Sebastian Pop  <sebastian.pop@amd.com>
32023
32024         * sese.c (expand_scalar_variables_ssa_name): Add new argument for type.
32025         Call fold_convert on all the returned values.
32026         (expand_scalar_variables_expr): Pass to
32027         expand_scalar_variables_ssa_name the type of the resulting expression.
32028
32029 2010-03-08  Sebastian Pop  <sebastian.pop@amd.com>
32030
32031         * graphite-ppl.c (ppl_min_for_le_polyhedron): Renamed
32032         ppl_min_for_le_pointset.
32033         Use ppl_Pointset_Powerset_C_Polyhedron_minimize.
32034         * graphite-ppl.h (ppl_min_for_le_polyhedron): Update declaration.
32035
32036 2010-03-08  Sebastian Pop  <sebastian.pop@amd.com>
32037
32038         * graphite-dependences.c (map_into_dep_poly): Removed.
32039         (dependence_polyhedron_1): Use combine_context_id_scat.
32040
32041 2010-03-08  Sebastian Pop  <sebastian.pop@amd.com>
32042
32043         * graphite-poly.h (struct poly_scattering): Add layout documentation.
32044         (struct poly_bb): Same.
32045         (combine_context_id_scat): New.
32046
32047 2010-03-08  Sebastian Pop  <sebastian.pop@amd.com>
32048
32049         PR middle-end/42326
32050         * sese.c (name_defined_in_loop_p): Return false for default
32051         definitions.
32052
32053 2010-03-08  Sebastian Pop  <sebastian.pop@amd.com>
32054
32055         * graphite-clast-to-gimple.c (find_cloog_iv_in_expr): Simplify
32056         and clean up the logic.
32057
32058 2010-03-08  Sebastian Pop  <sebastian.pop@amd.com>
32059
32060         * graphite-sese-to-poly.c (add_param_constraints): Enabled: remove
32061         early return.
32062
32063 2010-03-08  Jakub Jelinek  <jakub@redhat.com>
32064
32065         * var-tracking.c (remove_cselib_value_chains): Define only for
32066         ENABLE_CHECKING.
32067         (dataflow_set_preserve_mem_locs, dataflow_set_remove_mem_locs,
32068         delete_slot_part, emit_notes_for_differences_1): Don't call
32069         remove_cselib_value_chains here.
32070         (set_slot_part, emit_notes_for_differences_2): Don't call
32071         add_cselib_value_chains here.
32072         (preserved_values): New vector.
32073         (preserve_value): New function.
32074         (add_uses, add_stores, vt_add_function_parameters): Use it
32075         instead of cselib_preserve_value.
32076         (changed_values_stack): New vector.
32077         (check_changed_vars_0): New function.
32078         (check_changed_vars_1, check_changed_vars_2): Use it.
32079         (emit_notes_for_changes): Call set_dv_changed (*, false) on all
32080         changed_values_stack VALUEs.
32081         (vt_emit_notes): For all preserved_values call
32082         add_cselib_value_chains.  If ENABLE_CHECKING call
32083         remove_cselib_value_chains before verifying value_chains is empty.
32084         Initialize and free changed_values_stack.
32085         (vt_initialize): Initialize preserved_values.
32086         (vt_finalize): Free preserved_values.
32087
32088 2010-03-08  Richard Guenther  <rguenther@suse.de>
32089
32090         PR tree-optimization/43269
32091         * tree-ssa-dse.c (dse_possible_dead_store_p): Fix post-dom
32092         region detection.
32093
32094 2010-03-08  Martin Jambor  <mjambor@suse.cz>
32095
32096         * ipa-prop.h (struct ipa_param_descriptor): Removed the called field.
32097         (ipa_is_param_called): Removed.
32098         * ipa-prop.c (ipa_note_param_call): Do not set the called flag.
32099         (ipa_print_node_params): Do not print the called flag.
32100         (ipa_write_node_info): Do not stream the called flag.
32101         (ipa_read_node_info): Likewise.
32102
32103 2010-03-07  Jakub Jelinek  <jakub@redhat.com>
32104
32105         PR debug/43176
32106         * Makefile.in (var-tracking.o): Depend on pointer-set.h.
32107         * cselib.c (struct expand_value_data): Add dummy field.
32108         (cselib_expand_value_rtx, cselib_expand_value_rtx_cb): Initialize
32109         dummy to false.
32110         (cselib_dummy_expand_value_rtx_cb): New function.
32111         (cselib_expand_value_rtx_1): If evd->dummy is true, don't allocate
32112         any rtl.
32113         * cselib.h (cselib_dummy_expand_value_rtx_cb): New prototype.
32114         * var-tracking.c: Include pointer-set.h.
32115         (variable): Change n_var_parts to char from int.  Add
32116         cur_loc_changed and in_changed_variables fields.
32117         (variable_canonicalize): Remove.
32118         (shared_var_p): New inline function.
32119         (unshare_variable): Maintain cur_loc_changed and
32120         in_changed_variables fields.  If var was in changed_variables,
32121         replace it there with new_var.  Just copy cur_loc instead of
32122         resetting it to something else.
32123         (variable_union): Don't recompute cur_loc.  Use shared_var_p.
32124         (dataflow_set_union): Don't call variable_canonicalize.
32125         (loc_cmp): If both x and y are DEBUG_EXPRs, compare uids
32126         of their DEBUG_EXPR_TREE_DECLs.
32127         (canonicalize_loc_order_check): Verify that cur_loc is NULL
32128         and in_changed_variables and cur_loc_changed is false.
32129         (variable_merge_over_cur): Clear cur_loc, in_changed_variables
32130         and cur_loc_changed.  Don't update cur_loc here.
32131         (variable_merge_over_src): Don't call variable_canonicalize.
32132         (dataflow_set_preserve_mem_locs): Use shared_var_p.  When
32133         removing loc that is equal to cur_loc, clear cur_loc,
32134         set cur_loc_changed and ensure variable_was_changed is called.
32135         (dataflow_set_remove_mem_locs): Use shared_var_p.  Only
32136         compare pointers in cur_loc check, if it is equal to loc,
32137         clear cur_loc and set cur_loc_changed.  Don't recompute cur_loc here.
32138         (variable_different_p): Remove compare_current_location argument,
32139         don't compare cur_loc.
32140         (dataflow_set_different_1): Adjust variable_different_p caller.
32141         (variable_was_changed): If dv had some var in changed_variables
32142         already, reset in_changed_variables flag for it and propagate
32143         cur_loc_changed over to the new variable.  On empty var
32144         always set cur_loc_changed.  Set in_changed_variables on whatever
32145         var is added to changed_variables.
32146         (set_slot_part): Clear cur_loc_changed and in_changed_variables.
32147         Use shared_var_p.  When removing loc that is equal to cur_loc,
32148         clear cur_loc and set cur_loc_changed.  If cur_loc is NULL at the
32149         end, don't set it to something else, just call variable_was_changed.
32150         (delete_slot_part): Use shared_var_p.  When cur_loc equals to
32151         loc being removed, clear cur_loc and set cur_loc_changed.
32152         Set cur_loc_changed if all locations have been removed.
32153         (struct expand_loc_callback_data): New type.
32154         (vt_expand_loc_callback): Add dummy mode in which no rtxes are
32155         allocated.  Always create SUBREGs if simplify_subreg failed.
32156         Prefer to use cur_loc, when that fails and still in
32157         changed_variables (and seen first time) recompute it.  Set
32158         cur_loc_changed of variables which had to change cur_loc and
32159         compute elcd->cur_loc_changed if any of the subexpressions used
32160         had to change cur_loc.
32161         (vt_expand_loc): Adjust to pass arguments in
32162         expand_loc_callback_data structure.
32163         (vt_expand_loc_dummy): New function.
32164         (emitted_notes): New variable.
32165         (emit_note_insn_var_location): For VALUEs and DEBUG_EXPR_DECLs
32166         that weren't used for any other decl in current
32167         emit_notes_for_changes call call vt_expand_loc_dummy to update
32168         cur_loc.  For -fno-var-tracking-assignments, set cur_loc to
32169         first loc_chain location if NULL before.  Always use just
32170         cur_loc instead of first loc_chain location.  When cur_loc_changed
32171         is false, when not --enable-checking=rtl just don't emit any note.
32172         When rtl checking, compute the note and assert it is the same
32173         as previous note.  Clear cur_loc_changed and in_changed_variables
32174         at the end before removing from changed_variables.
32175         (check_changed_vars_3): New function.
32176         (emit_notes_for_changes): Traverse changed_vars to call
32177         check_changed_vars_3 on each changed var.
32178         (emit_notes_for_differences_1): Clear cur_loc_changed and
32179         in_changed_variables.  Recompute cur_loc of new_var.
32180         (emit_notes_for_differences_2): Clear cur_loc if new variable appears.
32181         (vt_emit_notes): Initialize and destroy emitted_notes.
32182
32183 2010-03-07  Bernd Schmidt  <bernd.schmidt@analog.com>
32184
32185         PR rtl-optimization/42220
32186         * regrename.c (scan_rtx) <case STRICT_LOW_PART, ZERO_EXTRACT>:
32187         Use verify_reg_tracked to determine if we should use OP_OUT rather
32188         than OP_INOUT.
32189         (build_def_use): If we see an in-out operand for a register that we
32190         know nothing about, treat is an output if possible, fail the block if
32191         not.
32192
32193 2010-03-06  Alexandre Oliva  <aoliva@redhat.com>
32194
32195         PR debug/42897
32196         * gimple-iterator.c (gsi_remove): Propagate only PHI DEFs removed
32197         permanently.
32198
32199 2010-03-06  Alexandre Oliva  <aoliva@redhat.com>
32200
32201         PR debug/42897
32202         * tree-vect-loop.c (vect_transform_loop): Kill out-of-loop debug
32203         uses of relevant DEFs that are dead outside the loop too.
32204
32205 2010-03-06  Alexandre Oliva  <aoliva@redhat.com>
32206
32207         * var-tracking.c (dataflow_set_merge): Swap src and src2.
32208         Reverted:
32209         2010-01-13  Jakub Jelinek  <jakub@redhat.com>
32210         PR debug/41371
32211         * var-tracking.c (values_to_unmark): New variable.
32212         (find_loc_in_1pdv): Clear VALUE_RECURSED_INTO of values in
32213         values_to_unmark vector.  Moved body to...
32214         (find_loc_in_1pdv_1): ... this.  Don't clear VALUE_RECURSED_INTO,
32215         instead queue it into values_to_unmark vector.
32216         (vt_find_locations): Free values_to_unmark vector.
32217
32218 2010-03-05  Eric Botcazou  <ebotcazou@adacore.com>
32219
32220         * Makefile.in (PLUGINCC, PLUGINCFLAGS): New variables.
32221         (site.exp): Export them when plugins are enabled.
32222
32223 2010-03-05  Sebastian Pop  <sebastian.pop@amd.com>
32224
32225         PR middle-end/42326
32226         * tree-chrec.c (chrec_fold_plus_1): Do not handle convert expressions
32227         that contain scevs.
32228         (chrec_fold_multiply): Same.
32229
32230 2010-03-04  Andrew Pinski  <andrew_pinski@caviumnetworks.com>
32231
32232         PR c/43248
32233         * c-decl.c (build_compound_literal): Return early if init is
32234         an error_mark_node.
32235
32236 2010-03-04  Martin Jambor  <mjambor@suse.cz>
32237
32238         PR tree-optimization/43164
32239         PR tree-optimization/43191
32240         * tree-sra.c (type_consists_of_records_p): Reject records with
32241         zero-size bit-fields at the end.
32242
32243 2010-03-04  Mike Stump  <mikestump@comcast.net>
32244
32245         * Makefile.in (TAGS): Remove *.y.
32246
32247 2010-03-04  Richard Guenther  <rguenther@suse.de>
32248
32249         PR tree-optimization/40761
32250         * tree-ssa-pre.c (compute_antic): Walk reverse postorder
32251         in reverse order.
32252         (my_rev_post_order_compute): New function.
32253         (init_pre): Call it.
32254
32255 2010-03-04  Changpeng Fang  <changpeng.fang@amd.com>
32256
32257         PR middle-end/43209
32258         * tree-ssa-loop-ivopts.c (determine_use_iv_cost_condition): Do not
32259         decrease the cost of an IV candidate when the cost is infinite.
32260
32261 2010-03-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32262
32263         * doc/extend.texi (Vector Extensions, X86 Built-in Functions):
32264         Use '3DNow!' for the extension of that name, ensure normal space
32265         after the string.
32266         * doc/invoke.texi (i386 and x86-64 Options): Likewise.
32267
32268 2010-03-03  Jeff Law  <law@redhat.com>
32269
32270         * PR middle-end/32693
32271         * expmed.c (store_bit_field_1): Use gen_lowpart_SUBREG rather
32272         than gen_rtx_SUBREG.
32273         (extract_bit_field_1): Likewise.
32274
32275 2010-03-03  Janis Johnson  <janis187@us.ibm.com>
32276
32277         * doc/sourcebuild.texi (Test directives): Document that arguments
32278         include-opts and exclude-opts are now optional for dg-skip-if,
32279         dg-xfail-if, dg-xfail-run-if, and dg-shouldfail.
32280
32281 2010-03-03  Jason Merrill  <jason@redhat.com>
32282
32283         PR c++/12909
32284         * cgraph.h (varpool_node): Add extra_name field.
32285         * varpool.c (varpool_extra_name_alias): New.
32286         (varpool_assemble_decl): Emit extra name aliases.
32287         (varpool_mark_needed_node): Look past an extra name alias.
32288         * lto-streamer.h (LTO_tags): Add LTO_var_decl_alias.
32289         * lto-streamer-in.c (lto_input_tree): Read it.
32290         * lto-streamer-out.c (output_unreferenced_globals): Write it.
32291
32292 2010-03-03  Eric Botcazou  <ebotcazou@adacore.com>
32293
32294         * config.gcc (sparc64-*-solaris2*, sparc-*-solaris2*): Merge into...
32295         (sparc*-*-solaris2*): ...this.
32296
32297 2010-03-03  Jakub Jelinek  <jakub@redhat.com>
32298
32299         PR debug/43229
32300         * cfgexpand.c (expand_debug_expr): Handle DOT_PROD_EXPR,
32301         WIDEN_MULT_EXPR and WIDEN_SUM_EXPR.  Return NULL without
32302         ICE for vector expressions, ADDR_SPACE_CONVERT_EXPR,
32303         FIXED_CONVERT_EXPR, OBJ_TYPE_REF and WITH_SIZE_EXPR.
32304
32305         PR debug/43237
32306         * dwarf2out.c (add_bound_info): If a decl bound doesn't have decl_die,
32307         fallthrough to default handling, just with want_address 0 instead of 2.
32308         For single element lists, add_AT_loc directly, otherwise create an
32309         artificial variable DIE and stick location list to it.
32310
32311         PR debug/43177
32312         * var-tracking.c (loc_cmp): Don't assert VALUEs have the same mode.
32313         (VAL_EXPR_HAS_REVERSE): Define.
32314         (reverse_op): New function.
32315         (add_stores): For reversible operations add an extra MO_VAL_USE.
32316
32317 2010-03-02  Jason Merrill  <jason@redhat.com>
32318
32319         * c-pretty-print.c (pp_c_specifier_qualifier_list): Print vector size.
32320
32321 2010-03-02  Eric Botcazou  <ebotcazou@adacore.com>
32322
32323         * config.gcc (sparc-*-linux*): Do not include sparc/gas.h.
32324         (sparc64-*-linux*): Likewise.
32325         (sparc64-*-solaris2*): Include assembler files before linker ones.
32326         (sparc-*-solaris2*): Simplify and reorder to match previous case.
32327         * config/sparc/gas.h: Delete.
32328         * config/sparc/sol2-64.h: Add copyright notice.
32329         * config/sparc/sol2-gas-bi.h: Likewise.
32330         * config/sparc/sol2-gld.h: Likewise.
32331         * config/sparc/sysv4.h (TARGET_ASM_NAMED_SECTION): Delete.
32332         * config/sparc/sol2.h (TARGET_ASM_NAMED_SECTION): Redefine.
32333         * config/sparc/sol2-gas.h (TARGET_ASM_NAMED_SECTION): Likewise.
32334         * config/sparc/sparc.c (TARGET_ASM_ALIGNED_SI_OP): Never redefine.
32335         (sparc_elf_asm_named_section): Rename into...
32336         (sparc_solaris_elf_asm_named_section): ...this.  Always define.
32337
32338 2010-03-02  Uros Bizjak  <ubizjak@gmail.com>
32339
32340         * config/alpha/alpha.c (override_options): Fix -mtune error message.
32341
32342 2010-03-02  Jeff Law  <law@redhat.com>
32343
32344         PR middle-end/42431
32345         * reload1.c (rtx_p, substitute_stack): Declare.
32346         (substitute): Record addresses of changed rtxs.
32347         (gen_reload_chain_without_interm_reg_p): Don't use copy_rtx anymore.
32348         Restore the original rtx when complete.
32349         (reload): Free subsitute_stack when complete.
32350
32351 2010-03-02  Janis Johnson  <janis187@us.ibm.com>
32352
32353         * doc/gccint.texi (menu): Add Testsuites as a chapter.
32354         * doc/sourcebuild.texi (Testsuites): Move up a level to be a
32355         new chapter.
32356         (Test Idioms, Test Directives, Ada Tests, C Tests, libgcj Tests,
32357         LTO Testing, gcov Testing, profopt Testing, compat Testing,
32358         Torture Tests): Change from subsection to section.
32359
32360 2010-03-02  Jakub Jelinek  <jakub@redhat.com>
32361             Steven Bosscher  <steven@gcc.gnu.org>
32362
32363         * var-tracking.c (vt_initialize): Scan insns in ebb chunks
32364         instead of bb.
32365
32366 2010-03-02  Reza Yazdani  <reza.yazdani@amd.com>
32367
32368         PR middle-end/42640
32369         * tree-loop-distribution.c (update_phis_for_loop_copy): Replaced
32370         the assignment from the new induction variable to the assignment
32371         of the value from the original loop PHI function.
32372
32373 2010-03-01  Janis Johnson  <janis187@us.ibm.com>
32374             Daniel Jacobowitz  <dan@codesourcery.com>
32375
32376         * doc/sourcebuild.texi (Test directives): Clarify options to
32377         dg-skip-if.
32378
32379 2010-03-01  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
32380
32381         * configure.ac (gcc_cv_as_cfi_directive) [i?86-*-solaris*]:
32382         Disable cfi directives unless GCC and gas agree on using read-only
32383         .eh_frame sections for 64-bit.
32384         * configure: Regenerate.
32385
32386 2010-03-01  Richard Guenther  <rguenther@suse.de>
32387
32388         PR tree-optimization/43220
32389         * tree-ssa-ccp.c (optimize_stack_restore): Do not optimize
32390         BUILT_IN_STACK_{SAVE,RESTORE} around alloca.
32391
32392 2010-03-01  Richard Guenther  <rguenther@suse.de>
32393             Martin Jambor  <mjambor@suse.cz>
32394
32395         PR middle-end/41250
32396         * gimplify.c (gimplify_body): Unset DECL_HAS_VALUE_EXPR_P on
32397         gimplified parameters.
32398
32399 2010-03-01  Christian Bruel  <christian.bruel@st.com>
32400
32401         * except.c (dw2_build_landing_pads): set LABEL_PRESERVE_P.
32402
32403 2010-03-01  H.J. Lu  <hongjiu.lu@intel.com>
32404
32405         * config/i386/linux64.h (ASM_SPEC): Use SPEC_32 and SPEC_64.
32406
32407 2010-03-01  Richard Guenther  <rguenther@suse.de>
32408
32409         PR middle-end/43213
32410         * expr.c (expand_assignment): Use the alias-oracle to tell
32411         if the rhs aliases the result decl.
32412
32413 2010-03-01  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
32414
32415         PR pch/14940
32416         * config/host-solaris.c (HOST_HOOKS_GT_PCH_GET_ADDRESS): Redefine
32417         to sol_gt_pch_get_address.
32418         (TRY_EMPTY_VM_SPACE): Define for all combinations of 32 and
32419         64-bit, SPARC and x86.
32420         (sol_gt_pch_get_address): New function.
32421
32422 2010-03-01  Marco Poletti  <poletti.marco@gmail.com>
32423
32424         * toplev.h (inform_n, error_n): Declare.
32425         * diagnostic.c (inform_n, error_n): New function.
32426
32427 2010-03-01  Jakub Jelinek  <jakub@redhat.com>
32428
32429         * cfgexpand.c (expand_used_vars): If an artificial non-ignored var
32430         has no rtl yet when processing local_decls, queue it and recheck
32431         if deferred stack allocation hasn't assigned it rtl.
32432
32433 2010-02-28  Kaz Kojima  <kkojima@gcc.gnu.org>
32434
32435         * config/sh/sh.c (unspec_bbr_uid): New.
32436         (gen_block_redirect): Use it instead of INSN_UID.
32437         (gen_far_branch): Likewise.
32438
32439 2010-02-28  H.J. Lu  <hongjiu.lu@intel.com>
32440
32441         * config/i386/darwin.h (TARGET_SUBTARGET32_ISA_DEFAULT): Make
32442         it the same as TARGET_SUBTARGET64_ISA_DEFAULT.
32443
32444 2010-02-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32445
32446         * doc/invoke.texi (Warning Options, RX Options): Fix typos.
32447         (Warning Options): -Wno-conversion-null is valid for
32448         Objective-C++ as well.
32449         * doc/tm.texi (Named Address Spaces): Likewise.
32450         * doc/plugins.texi (Plugins): Replace TABs with spaces.
32451         * doc/tree-ssa.texi (Tree SSA): Likewise.
32452
32453 2010-02-27  H.J. Lu  <hongjiu.lu@intel.com>
32454
32455         PR bootstrap/43202
32456         * config.gcc: Don't enable SSE math for i[34567]86-*-darwin*
32457         by default.  Don't set the default arch for
32458         i[34567]86-*-darwin*|x86_64-*-darwin*.
32459
32460 2010-02-27  H.J. Lu  <hongjiu.lu@intel.com>
32461
32462         PR bootstrap/43202
32463         * config.gcc: Enable SSE math for i[34567]86-*-darwin* by
32464         default.  Set the default 32bit/64bit archs with $with_arch
32465         instead of $arch for i[34567]86-*-*|x86_64-*-* targets.
32466
32467 2010-02-27  Richard Guenther  <rguenther@suse.de>
32468
32469         PR tree-optimization/43186
32470         * params.def (PARAM_MAX_UNROLL_ITERATIONS): New param.
32471         * doc/invoke.texi (max-completely-peel-loop-nest-depth): Document.
32472         * tree-ssa-loop-ivcanon.c (tree_unroll_loops_completely): Limit
32473         unroller iterations.
32474
32475 2010-02-27  H.J. Lu  <hongjiu.lu@intel.com>
32476
32477         * config.gcc: Set the default 32bit/64bit archs if 64bit ISA is
32478         required and i[34567]86-*-* targets don't support 64bit ISA.
32479
32480 2010-02-26  Eric Botcazou  <ebotcazou@adacore.com>
32481
32482         PR ada/43096
32483         * tree-ssa-alias.c (same_type_for_tbaa): Return -1 if the types have
32484         the same alias set.
32485
32486 2010-02-26  H.J. Lu  <hongjiu.lu@intel.com>
32487
32488         * config.gcc: Set the default arch at least to Prescott for
32489         i[34567]86-*-darwin* and Pentium 4 for i[34567]86-*-* targets
32490         if SSE math is enabled.
32491
32492 2010-02-26  Manuel López-Ibáñez  <manu@gcc.gnu.org>
32493
32494         * diagnostic.c (diagnostic_initialize): Update.
32495         (diagnostic_report_diagnostic): Test inhibit_notes_p for
32496         informative notes.
32497         * diagnostic.h (diagnostic_context): New bool inhibit_notes_p.
32498         (diagnostic_inhibit_notes): New.
32499         * toplev.c (process_options): inhibit notes with -fcompare-debug.
32500
32501 2010-02-26  Manuel López-Ibáñez  <manu@gcc.gnu.org>
32502
32503         PR c/20631
32504         * doc/cpp.texi: Use c90 instead of c89 and gnu90 instead of gnu89.
32505         * doc/standards.texi: Likewise.
32506         * doc/extend.texi: Likewise.
32507         * doc/trouble.texi: Likewise.
32508         * doc/cppopts.texi: Likewise.
32509         * doc/install.texi: Likewise.
32510         * c.opt (std=c90,std=gnu90): New options.
32511         * c-opts.c (c_common_handle_option): Handle them.
32512
32513 2010-02-26  Manuel López-Ibáñez  <manu@gcc.gnu.org>
32514
32515         PR c/24577
32516         * c-decl.c (undeclared_variable): Use an informative note.
32517
32518 2010-02-26  Richard Guenther  <rguenther@suse.de>
32519
32520         PR tree-optimization/43186
32521         * gimple.h (gimple_fold): Remove.
32522         * gimple.c (gimple_fold): Remove.  Inline into single user ...
32523         * tree-cfgcleanup.c (cleanup_control_expr_graph): ... here.
32524         Try harder for conditions.
32525
32526 2010-02-26  Jakub Jelinek  <jakub@redhat.com>
32527
32528         PR debug/43190
32529         * function.c (used_types_insert): Don't skip through named pointer
32530         types.  Don't use TYPE_MAIN_VARIANT if the original type has a name
32531         and it is different from the main variant's type.
32532
32533 2010-02-26  Nick Clifton  <nickc@redhat.com>
32534
32535         * config/rx/rx.md (sminsi3): Remove bogus alternative.
32536
32537 2010-02-26  H.J. Lu  <hongjiu.lu@intel.com>
32538
32539         * config.gcc: Support --with-fpmath=sse for x86.
32540
32541         * config/i386/ssemath.h: New.
32542
32543         * doc/install.texi (--with-fpmath=sse): Documented.
32544
32545 2010-02-26  Richard Guenther  <rguenther@suse.de>
32546
32547         PR tree-optimization/43188
32548         * tree-vect-stmts.c (get_vectype_for_scalar_type): Do not build
32549         vector types of over-aligned element type.
32550
32551 2010-02-26  Uros Bizjak  <ubizjak@gmail.com>
32552
32553         PR target/43175
32554         * config/i386/i386.c (expand_vec_perm_blend): Use correct
32555         operands in V8HImode subregs.  Fix operand order in VEC_MERGE rtx.
32556
32557 2010-02-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
32558
32559         * doc/invoke.texi (-fvar-tracking-assignments): Fix typo.
32560
32561 2010-02-26  Jakub Jelinek  <jakub@redhat.com>
32562
32563         * Makefile.in (var-tracking.o): Depend on $(DIAGNOSTIC_H).
32564         * var-tracking.c: Include diagnostic.h.
32565         (debug_dv): New function.
32566         (dump_var): Print DEBUG_EXPR_DECLs as D#N instead of D.-N.
32567
32568         PR debug/43160
32569         * var-tracking.c (dv_onepart_p): Return true for DEBUG_EXPR_DECLs.
32570         (add_value_chain, add_value_chains, remove_value_chain,
32571         remove_value_chains): Handle DEBUG_EXPRs.
32572         (check_changed_vars_1, check_changed_vars_2): Handle DEBUG_EXPR_DECLs.
32573
32574         PR debug/43161
32575         * regcprop.c (struct queued_debug_insn_change): New type.
32576         (struct value_data_entry): Add debug_insn_changes field.
32577         (struct value_data): Add n_debug_insn_changes field.
32578         (debug_insn_changes_pool): New variable.
32579         (free_debug_insn_changes, apply_debug_insn_changes,
32580         cprop_find_used_regs_1, cprop_find_used_regs): New functions.
32581         (kill_value_one_regno): Call free_debug_insn_changes if needed.
32582         (init_value_data): Clear debug_insn_changes and n_debug_insn_changes
32583         fields.
32584         (replace_oldest_value_reg): Don't change DEBUG_INSNs, instead queue
32585         changes for them.
32586         (copyprop_hardreg_forward_1): Don't call apply_change_group for
32587         DEBUG_INSNs.  For a real insn, if there are queued DEBUG_INSN
32588         changes, call cprop_find_used_regs via note_stores.
32589         (copyprop_hardreg_forward): When copying vd from predecessor
32590         which has any queued DEBUG_INSN changes, make sure the pointers are
32591         cleared.  At the end call df_analyze and then if there are any
32592         DEBUG_INSN changes queued at the end of some basic block for still
32593         live registers, apply them.
32594         (pass_cprop_hardreg): Set TODO_df_finish in todo_flags_finish.
32595
32596 2010-02-25  Uros Bizjak  <ubizjak@gmail.com>
32597
32598         * config.gcc (i[34567]86-*-* | x86_64-*-*): Split long line.
32599         (arm*-*-*): Ditto.
32600
32601 2010-02-25  H.J. Lu  <hongjiu.lu@intel.com>
32602
32603         * config.gcc: Set arch/cpu for i[34567]86-*-*|x86_64-*-*
32604         targets.  Set the default with_cpu/with_arch from arch/cpu.
32605         Allow x86-64 and native for with_cpu/with_arch.
32606
32607 2010-02-25  Nicolas Benoit  <nbenoit@tuxfamily.org>
32608
32609         * ebitmap.c: Change calls to verify_popcount with calls to
32610         sbitmap_verify_popcount.
32611         (ebitmap_clear_bit): Fixed map->cacheindex test and
32612         map>cache update when bit clearing results in an empty
32613         element.
32614
32615 2010-02-25  Michael Meissner  <meissner@linux.vnet.ibm.com>
32616
32617         PR target/43154
32618         * config/rs6000/vector.md (VEC_64): New iterator for V2DF, V2DI.
32619         (vec_interleave_high<mode>): Rename from vec_interleave_highv2df
32620         and support both V2DF and V2DI modes.
32621         (vec_interleave_low<mode>): Rename from vec_interleave_lowv2df and
32622         support both V2DF and V2DI modes.
32623         (general): Delete trailing whitespace from a few patterns.
32624
32625         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
32626         V2DF/V2DI interleave high/low builtins.
32627
32628         * config/rs6000/rs6000-builtin.def (VSX_BUILTIN_VEC_MERGE*): Add
32629         new VSX builtins.
32630
32631         * config/rs6000/rs6000.c (bdesc_2arg): Add support for V2DF/V2DI
32632         interleave high/low functions.
32633
32634 2010-02-25  Gerald Pfeifer  <gerald@pfeifer.com>
32635
32636         * doc/extend.texi (Symbol-Renaming Pragmas): Fix spelling of
32637         #pragma extern_prefix.
32638
32639 2010-02-25  Jakub Jelinek  <jakub@redhat.com>
32640
32641         PR debug/43166
32642         * cfgexpand.c (expand_debug_expr) <case VAR_DECL>: If mode is
32643         BLKmode, assert op0 is a MEM and just adjust its mode.
32644
32645         PR debug/43165
32646         * cfgexpand.c (expand_debug_expr): Don't call simplify_gen_subreg
32647         if bitpos isn't multiple of mode's bitsize.
32648
32649 2010-02-24  Manuel López-Ibáñez  <manu@gcc.gnu.org>
32650
32651         * c.opt (-ftemplate-depth=): New.
32652         (-ftemplate-depth-): Deprecate.
32653         * optc-gen.awk: Handle -ftemplate-depth=.
32654         * opth-gen.awk: Likewise.
32655         * c-opts.c (c_common_handle_option): Likewise.
32656         * doc/invoke.texi (-ftemplate-depth-): Replace with -ftemplate-depth=.
32657
32658 2010-02-24  Jason Merrill  <jason@redhat.com>
32659
32660         * doc/invoke.texi: Improve -Wabi and -fabi-version docs.
32661
32662 2010-02-24  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
32663
32664         * cfg.c (alloc_aux_for_block): Remove inline.
32665         (alloc_aux_for_edge): Likewise.
32666
32667 2010-02-24  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
32668
32669         * config.gcc: Fix typo in mips-sgi-irix6.[0-4]* obsoletion.
32670
32671 2010-02-24  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
32672
32673         * config/i386/sol2.h (NO_DBX_BNSYM_ENSYM): Define.
32674         * config/i386/sol2-gas.h: New file.
32675         * config.gcc (i[34567]86-*-solaris2*): Use it.
32676
32677 2010-02-24  Manuel López-Ibáñez  <manu@gcc.gnu.org>
32678
32679         PR c/43128
32680         * c-typeck.c (ep_convert_and_check): New.
32681         (build_conditional_expr): Use it.
32682         (build_binary_op): Likewise.
32683
32684 2010-02-24  Jakub Jelinek  <jakub@redhat.com>
32685
32686         * regcprop.c (copyprop_hardreg_forward_1): Don't call df_insn_rescan.
32687
32688         PR debug/43150
32689         * gimplify.c (gimplify_type_sizes): Clear DECL_IGNORED_P for VLA
32690         bounds even for -O+.
32691         * var-tracking.c (track_expr_p): If !need_rtl, don't mandate
32692         expr needs to have DECL_NAME set.
32693
32694 2010-02-24  Nick Clifton  <nickc@redhat.com>
32695
32696         * config/mep/mep.c: Include gimple.h.
32697         (mep_function_uses_sp): Delete unused function.
32698         (mep_gimplify_va_arg_expr): Change types of pre_p and post_p
32699         parameters.  Use unsigned integers to count args.  Return a
32700         NULL_RTX instead of an error_mark_node.  Toidy up formatting.
32701
32702 2010-02-23  Jakub Jelinek  <jakub@redhat.com>
32703
32704         PR target/43107
32705         * config/i386/i386.c (avx_vpermilp_parallel): Reject indexes
32706         greater or equal to nelt instead of 2 * nelt.
32707         (expand_vec_perm_1): When op0 and op1 are equal, mask indexes
32708         with nelt - 1.
32709
32710 2010-02-23  Jason Merrill  <jason@redhat.com>
32711
32712         PR debug/42800
32713         * cfgexpand.c (expand_used_vars): Keep artificial non-ignored vars
32714         in cfun->local_decls even if they have register types.
32715
32716         PR c++/42837
32717         * stor-layout.c (place_field): Don't warn about unnecessary
32718         DECL_PACKED if the type is packed.
32719
32720 2010-02-23  Jakub Jelinek  <jakub@redhat.com>
32721
32722         PR target/43139
32723         * config/i386/i386.c (ix86_delegitimize_address): Delegitimize all
32724         GOTOFF relocs, even when the base reg isn't pic pointer.
32725
32726 2010-02-23  Michael Matz  <matz@suse.de>
32727
32728         PR debug/43077
32729         * cfgexpand (expand_debug_expr): Expand TERed ssa names in place.
32730         (expand_gimple_basic_block): Generate and use debug temps if there
32731         are debug uses left after the last real use of TERed ssa names.
32732         Unlink debug immediate uses when they are expanded.
32733
32734 2010-02-23  Manuel López-Ibáñez  <manu@gcc.gnu.org>
32735
32736         PR 43123
32737         * config/i386/i386.c (override_options): Reorganise to provide
32738         better error messages.
32739
32740 2010-02-22  Sebastian Pop  <sebastian.pop@amd.com>
32741
32742         PR middle-end/43083
32743         * graphite-scop-detection.c (create_single_exit_edge): Move
32744         the call to find_single_exit_edge to....
32745         (create_sese_edges): ...here.  Don't handle multiple edges
32746         exiting the function.
32747         (build_graphite_scops): Don't handle multiple edges
32748         exiting the function.
32749
32750 2010-02-22  Sebastian Pop  <sebastian.pop@amd.com>
32751
32752         PR middle-end/43097
32753         * sese.c (get_rename): Assert that old_name is an SSA_NAME.
32754         (rename_variables_in_stmt): Continue when the use is not an SSA_NAME.
32755
32756 2010-02-22  Sebastian Pop  <sebastian.pop@amd.com>
32757
32758         PR middle-end/43026
32759         * sese.c (expand_scalar_variables_expr): Handle COMPONENT_REF.
32760
32761 2010-02-22  Manuel López-Ibáñez  <manu@gcc.gnu.org>
32762
32763         PR c++/43126
32764         * c-typeck.c (convert_arguments): Print declaration location.
32765         * c-common.c (validate_nargs): Rename as
32766         builtin_function_validate_nargs.
32767         (check_builtin_function_arguments): Update.
32768
32769 2010-02-22  Richard Guenther  <rguenther@suse.de>
32770
32771         PR lto/43045
32772         * tree-inline.c (declare_return_variable): Use the type of
32773         the call stmt lhs if available.
32774
32775 2010-02-22  Duncan Sands  <baldrick@free.fr>
32776
32777         * passes.c (register_pass): Always consider all pass lists when
32778         ref_pass_instance_number is zero.
32779
32780 2010-02-22  Richard Guenther  <rguenther@suse.de>
32781
32782         PR tree-optimization/42749
32783         * tree-tailcall.c (adjust_return_value_with_ops): Drop update
32784         parameter.  Do arithmetic in the original type.
32785         (update_accumulator_with_ops): Likewise.
32786         (adjust_accumulator_values): Adjust.
32787
32788 2010-02-22  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
32789
32790         * config/s390/s390.md ("movqi"): Re-add the mem->mem alternative.
32791         (QI to BLKmode splitter): New splitter.
32792
32793 2010-02-22  H.J. Lu  <hongjiu.lu@intel.com>
32794
32795         * config/i386/i386.c (initial_ix86_tune_features): Turn on
32796         X86_TUNE_INTER_UNIT_MOVES for m_ATOM.
32797
32798 2010-02-22  Richard Guenther  <rguenther@suse.de>
32799
32800         * tree-vect-slp.c (vect_slp_analyze_bb): Fix typo.
32801
32802 2010-02-22  Hans-Peter Nilsson  <hp@bitrange.com>
32803
32804         Migrate crti, crtn, crtbegin, crtend build rules to libgcc.
32805         * config/mmix/t-mmix (EXTRA_MULTILIB_PARTS): Don't set.
32806         ($(T)crti.o, $(T)crtn.o): Remove rules.
32807
32808 2010-02-21  Tobias Burnus  <burnus@net-b.de>
32809
32810         PR fortran/35259
32811         * doc/invoke.texi (-fassociative-math): Document that this
32812         option is automatically enabled for Fortran.
32813
32814 2010-02-20  David S. Miller  <davem@davemloft.net>
32815
32816         * configure.ac: Test if linker and assembler properly support
32817         GOTDATA_OP relocations.
32818         * configure: Rebuild.
32819         * config.in: Likewise.
32820         * config/sparc/sparc.md (UNSPEC_MOVE_GOTDATA): New.
32821         (movsi_lo_sum_pic): Use %gdop_*() relocs if available.
32822         (movsi_high_pic): Likewise.
32823         (movdi_lo_sum_pic): Likewise.
32824         (movdi_high_pic): Likewise.
32825         (movsi_pic_gotdata_op): New pattern.
32826         (movdi_pic_gotdata_op): Likewise.
32827         * config/sparc/sparc.c (legitimize_pic_address): If flag_pic is 2,
32828         emit gen_mov{si,di}_pic_gotdata_op for the GOT slot load.
32829
32830 2010-02-20  Uros Bizjak  <ubizjak@gmail.com>
32831
32832         PR target/43067
32833         * config/i386/sse.md (xop_mulv2div2di3_low): Change type
32834         attribute to ssemul.
32835         (xop_mulv2div2di3_high): Ditto.
32836
32837 2010-02-20  Manuel López-Ibáñez  <manu@gcc.gnu.org>
32838
32839         PR c++/35669
32840         * c.opt (Wconversion-null): New option.
32841         * doc/invoke.texi (Wconversion-null): Document.
32842
32843 2010-02-20  Manuel López-Ibáñez  <manu@gcc.gnu.org>
32844
32845         * common.opt (Wlarger-than-): Add Undocumented.
32846
32847 2010-02-19  Mike Stump  <mikestump@comcast.net>
32848
32849         * config/t-darwin (gt-darwin.h): Remove as Makefile now handles it.
32850
32851 2010-02-19  Jason Merrill  <jason@redhat.com>
32852
32853         PR target/40332
32854         * configure.ac (gcc_cv_as_cfi_advance_working): Check 32-bit advance.
32855         * configure: Likewise.
32856
32857 2010-02-20  Alan Modra  <amodra@gmail.com>
32858
32859         PR middle-end/42344
32860         * cgraph.h (cgraph_make_decl_local): Declare.
32861         * cgraph.c (cgraph_make_decl_local): New function.
32862         (cgraph_make_node_local): Use it.
32863         * cgraphunit.c (cgraph_function_versioning): Likewise.
32864         * ipa.c (function_and_variable_visibility): Likewise.
32865
32866 2010-02-19  Jakub Jelinek  <jakub@redhat.com>
32867
32868         PR bootstrap/43121
32869         * except.c (sjlj_emit_function_enter): Don't call
32870         add_reg_br_prob_note, instead add REG_BR_PROB note to the last insn
32871         directly.
32872         * rtl.h (add_reg_br_prob_note): Remove prototype.
32873
32874 2010-02-19  Manuel López-Ibáñez  <manu@gcc.gnu.org>
32875
32876         PR 41779
32877         * c-common.c (conversion_warning): Remove widening conversions
32878         before checking the conversion of integers to reals.
32879
32880 2010-02-19  Mike Stump  <mikestump@comcast.net>
32881
32882         PR middle-end/43125
32883         * c-decl.c (merge_decls): Merge DECL_PRESERVE_P.
32884
32885         PR objc/43061
32886         * cgraphunit.c (process_function_and_variable_attributes): Check
32887         DECL_PRESERVE_P instead of looking up attribute "used".
32888         * ipa-pure-const.c (check_decl): Likewise.
32889         * ipa-reference.c (has_proper_scope_for_analysis): Likewise.
32890         * ipa-type-escape.c (has_proper_scope_for_analysis): Likewise.
32891         * config/sol2.c (solaris_insert_attributes): Set DECL_PRESERVE_P
32892         instead of attribute "used".
32893         * config/sol2-c.c (solaris_pragma_init): Likewise.
32894         (solaris_pragma_fini): Likewise.
32895
32896 2010-02-19  Jakub Jelinek  <jakub@redhat.com>
32897
32898         * ipa-struct-reorg.c (make_field_acc_node, gen_cluster, peel_field):
32899         Use XCNEW instead of xcalloc.
32900         (add_access_to_acc_sites, create_new_var_node, add_alloc_site): Use
32901         XNEW instead of xmalloc.
32902         (get_fields): Use XNEWVEC instead of xmalloc.
32903
32904         PR debug/43084
32905         * ipa-struct-reorg.c (add_access_to_acc_sites): For debug stmts don't
32906         populate vars array.
32907         (create_new_general_access): For debug stmts just reset value.
32908         (get_stmt_accesses): For accesses within debug stmts just record them
32909         using add_access_to_acc_sites instead of preventing the peeling or
32910         counting them as accesses.
32911
32912         PR middle-end/42233
32913         * dojump.c (do_jump) <case TRUTH_NOT_EXPR>: Invert priority.
32914
32915 2010-02-19  Richard Guenther  <rguenther@suse.de>
32916
32917         PR tree-optimization/42916
32918         * tree-vect-slp.c (vect_slp_analyze_bb): Count only real
32919         instructions.
32920
32921 2010-02-19  Andreas Schwab  <schwab@linux-m68k.org>
32922
32923         * configure.ac: Replace all uses of changequote in macro arguments
32924         with proper quoting.
32925
32926 2010-02-19  Jakub Jelinek  <jakub@redhat.com>
32927
32928         PR middle-end/42233
32929         * loop-doloop.c (add_test): Adjust do_compare_rtx_and_jump caller.
32930
32931 2010-02-19  Richard Guenther  <rguenther@suse.de>
32932
32933         PR tree-optimization/42944
32934         * tree-ssa-alias.c (call_may_clobber_ref_p_1): Massage
32935         test for aliasing with errno.
32936
32937 2010-02-19  Jakub Jelinek  <jakub@redhat.com>
32938
32939         PR middle-end/42233
32940         * expr.h (jumpifnot, jumpifnot_1, jumpif, jumpif_1, do_jump,
32941         do_jump_1, do_compare_rtx_and_jump): Add PROB argument.
32942         * dojump.c: Include output.h.
32943         (inv): New inline function.
32944         (jumpifnot, jumpifnot_1, jumpif, jumpif_1, do_jump_1, do_jump,
32945         do_jump_by_parts_greater_rtx, do_jump_by_parts_greater,
32946         do_jump_by_parts_zero_rtx, do_jump_by_parts_equality_rtx,
32947         do_jump_by_parts_equality, do_compare_and_jump): Add PROB
32948         argument, pass it down to other calls.
32949         (do_compare_rtx_and_jump): Likewise.  If PROB is not -1,
32950         add REG_BR_PROB note to the conditional jump.
32951         * cfgexpand.c (add_reg_br_prob_note): Removed.
32952         (expand_gimple_cond): Don't call it, add the probability
32953         as last argument to jumpif_1/jumpifnot_1.
32954         * Makefile.in (dojump.o): Depend on output.h.
32955         * builtins.c (expand_errno_check): Adjust do_compare_rtx_and_jump
32956         callers.
32957         * expmed.c (emit_store_flag_force, do_cmp_and_jump): Likewise.
32958         * stmt.c (do_jump_if_equal): Likewise.
32959         * cfgrtl.c (rtl_lv_add_condition_to_bb): Likewise.
32960         * loop-unswitch.c (compare_and_jump_seq): Likewise.
32961         * config/rs6000/rs6000.c (rs6000_aix_emit_builtin_unwind_init):
32962         Likewise.
32963         * optabs.c (expand_doubleword_shift, expand_abs): Likewise.
32964         * expr.c (expand_expr_real_1): Adjust do_jump, jumpifnot and
32965         jumpifnot_1 callers.
32966         (expand_expr_real_2): Adjust jumpifnot_1 and do_compare_rtx_and_jump
32967         callers.
32968         (store_expr): Adjust jumpifnot caller.
32969         (store_constructor): Adjust jumpif caller.
32970
32971         PR middle-end/42233
32972         * gimplify.c (gimple_boolify): For __builtin_expect call
32973         gimple_boolify also on its first argument.
32974
32975 2010-02-18  Uros Bizjak  <ubizjak@gmail.com>
32976
32977         * configure.ac (gnu-unique-object): Wrap regexps using [] in
32978         changequote block.
32979         (__stack_chk_fail): Ditto.  Remove quadrigraphs.
32980         * configure: Regenerated.
32981
32982 2010-02-18  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
32983
32984         * config/spu/spu-c.c (spu_resolve_overloaded_builtin): Call
32985         lang_hooks.types_compatible_p instead of comptypes.
32986
32987 2010-02-18  Sebastian Huber  <sebastian.huber@embedded-brains.de>
32988
32989         * config/arm/lib1funcs.asm (__prefer_thumb__): New define.
32990         (udivsi3, aeabi_uidivmod, divsi3, aeabi_idivmod): Use Thumb-1 variant
32991         if __prefer_thumb__ is defined.
32992
32993 2010-02-18  Martin Jambor  <mjambor@suse.cz>
32994
32995         PR tree-optimization/43066
32996         * tree-sra.c (build_ref_for_offset_1): Return false on encountering an
32997         array with zero-sized element type.
32998
32999 2010-02-18  Jakub Jelinek  <jakub@redhat.com>
33000
33001         * dwarf2out.c (add_var_loc_to_decl): Change last argument to
33002         rtx, allocate struct var_loc_node here and return it to the
33003         caller, and only if it is actually needed.
33004         (dwarf2out_var_location): Adjust add_var_loc_to_decl caller,
33005         move it earlier and return immediately if it returns NULL.
33006
33007 2010-02-17  Mikael Pettersson  <mikpe@it.uu.se>
33008
33009         * config/sparc/gas.h: New file.  Restore
33010         TARGET_ASM_NAMED_SECTION to its ELF default.
33011         * config/sparc/sysv4.h (TARGET_ASM_NAMED_SECTION): Do not
33012         check !HAVE_GNU_AS.
33013         * config/sparc/sparc.c (sparc_elf_asm_named_section):
33014         Likewise.  Add ATTRIBUTE_UNUSED to prototype.
33015         * config.gcc (sparc*-*-linux*): Include sparc/gas.h
33016         after sparc/sysv4.h.
33017
33018 2010-02-17  Dave Korn  <dave.korn.cygwin@gmail.com>
33019
33020         * config/i386/mingw32.h (LIBGCJ_SONAME): Fix cut'n'pasto in DLL name.
33021
33022 2010-02-17  Steven Bosscher  <steven@gcc.gnu.org>
33023
33024         * gensupport.c (process_one_cond_exec): Derive name for COND_EXEC
33025         patterns from predicated pattern.
33026
33027 2010-02-17  Uros Bizjak  <ubizjak@gmail.com>
33028
33029         PR target/43103
33030         * config/i386/sse.md (xop_vpermil2<mode>3): Use avxmodesuffixf2c
33031         for insn mnemonic suffix.
33032
33033 2010-02-17  Richard Guenther  <rguenther@suse.de>
33034
33035         * tree-vrp.c (vrp_visit_phi_node): Restrict SCEV analysis
33036         to loop PHI nodes.
33037
33038 2010-02-17  Jakub Jelinek  <jakub@redhat.com>
33039
33040         PR debug/42918
33041         * caller-save.c (save_call_clobbered_regs): If BB ends with
33042         a DEBUG_INSN, move any notes in between last real insn and the last
33043         DEBUG_INSN after the last DEBUG_INSN.
33044
33045 2010-02-16  Joern Rennecke  <joern.rennecke@embecosm.com>
33046
33047         * tm.texi (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD_SPEC):
33048         Fix return type.  Fix argument type.  Explain meaning of return value.
33049
33050 2010-02-16  Richard Guenther  <rguenther@suse.de>
33051
33052         PR tree-optimization/41043
33053         * tree-vrp.c (vrp_var_may_overflow): Only ask SCEV for real loops.
33054         (vrp_visit_assignment_or_call): Do not ask SCEV for regular
33055         statements ...
33056         (vrp_visit_phi_node): ... but only for loop PHI nodes.
33057
33058 2010-02-16  Ira Rosen  <irar@il.ibm.com>
33059
33060         PR tree-optimization/43074
33061         * tree-vectorizer.h (VECTORIZABLE_CYCLE_DEF): New.
33062         * tree-vect-loop.c (vect_analyze_loop_operations): Add
33063         vectorizable cycles in hybrid SLP check.
33064         * tree-vect-slp.c (vect_detect_hybrid_slp_stmts): Likewise.
33065
33066 2010-02-16  Richard Guenther  <rguenther@suse.de>
33067
33068         * alias.c (memrefs_conflict_p): Distinguish must-alias from don't know.
33069         (true_dependence): If memrefs_conflict_p computes must-alias
33070         trust it.  Move TBAA check after offset-based disambiguation.
33071         (canon_true_dependence): Likewise.
33072
33073 2010-02-16  Alexandre Oliva  <aoliva@redhat.com>
33074
33075         * params.def (PARAM_MAX_VARTRACK_SIZE): New.
33076         * doc/invoke.texi: Document it.
33077         * var-tracking.c: Include toplev.h and params.h.
33078         (vt_find_locations): Return bool indicating success.  Compute
33079         hash sizes unconditionally.  Check new parameter, report.
33080         (variable_tracking_main_1): Check vt_find_locations results and
33081         retry.  Renamed from...
33082         (variable_tracking_main): ... this.  New wrapper to preserve
33083         flag_var_tracking_assignments.
33084         * Makefile.in (var-tracking.o): Adjust dependencies.
33085
33086 2010-02-16  Jack Howarth  <howarth@bromo.med.uc.edu>
33087             Jakub Jelinek  <jakub@redhat.com>
33088
33089         PR target/42854
33090         * config/darwin.h (ASM_WEAKEN_DECL): Don't check weak attribute
33091         if weak_import attribute is present.
33092         * config/darwin.c (machopic_select_section): Likewise.
33093
33094 2010-02-15  Joern Rennecke  <joern.rennecke@embecosm.com>
33095
33096         * doc/tm.texi (TARGET_VECTORIZE_BUILTIN_VECTORIZATION_COST): Document.
33097         (TARGET_VECTORIZE_VECTOR_ALIGNMENT_REACHABLE): Likewise.
33098         (TARGET_VECTORIZE_BUILTIN_VEC_PERM): Likewise.
33099         (TARGET_VECTORIZE_BUILTIN_VEC_PERM_OK): Likewise.
33100
33101         * doc/tm.texi (TARGET_VECTORIZE_BUILTIN_CONVERSION): Fix argument
33102         types.
33103
33104         * doc/tm.texi (TARGET_VECTORIZE_BUILTIN_VECTORIZED_FUNCTION):
33105         Fix argument types.
33106
33107         * doc/tm.texi (TARGET_SCHED_DFA_NEW_CYCLE): Add argument names.
33108         Rewrite text to refer to the names.
33109
33110 2010-02-15  Sebastian Pop  <sebastian.pop@amd.com>
33111
33112         * config/i386/i386-builtin-types.def
33113         (V2DF_FTYPE_V2DF_V2DF_V2DI_INT): Declared.
33114         (V4DF_FTYPE_V4DF_V4DF_V4DI_INT): Declared.
33115         (V4SF_FTYPE_V4SF_V4SF_V4SI_INT): Declared.
33116         (V8SF_FTYPE_V8SF_V8SF_V8SI_INT): Declared.
33117         * config/i386/i386.c (enum ix86_builtins): Add IX86_BUILTIN_VPERMIL2PD,
33118         IX86_BUILTIN_VPERMIL2PS, IX86_BUILTIN_VPERMIL2PD256, and
33119         IX86_BUILTIN_VPERMIL2PS256.
33120         (MULTI_ARG_4_DF2_DI_I): Defined.
33121         (MULTI_ARG_4_DF2_DI_I1): Defined.
33122         (MULTI_ARG_4_SF2_SI_I): Defined.
33123         (MULTI_ARG_4_SF2_SI_I1): Defined.
33124         (bdesc_multi_arg): Add __builtin_ia32_vpermil2pd,
33125         __builtin_ia32_vpermil2ps, __builtin_ia32_vpermil2pd256, and
33126         __builtin_ia32_vpermil2ps256.
33127         (ix86_expand_multi_arg_builtin): Handle MULTI_ARG_4_DF2_DI_I,
33128         MULTI_ARG_4_DF2_DI_I1, MULTI_ARG_4_SF2_SI_I, and
33129         MULTI_ARG_4_SF2_SI_I1.  Handle builtins with 4 arguments.
33130         (ix86_expand_args_builtin): Handle MULTI_ARG_4_DF2_DI_I,
33131         MULTI_ARG_4_DF2_DI_I1, MULTI_ARG_4_SF2_SI_I, and
33132         MULTI_ARG_4_SF2_SI_I1.  Handle CODE_FOR_xop_vpermil2v2df3,
33133         CODE_FOR_xop_vpermil2v4sf3, CODE_FOR_xop_vpermil2v4df3, and
33134         CODE_FOR_xop_vpermil2v8sf3.
33135         * config/i386/i386.md (UNSPEC_VPERMIL2): Declared.
33136         * config/i386/sse.md (xop_vpermil2<mode>3): New insn pattern.
33137         * config/i386/xopintrin.h (_mm_permute2_pd): New.
33138         (_mm256_permute2_pd): New.
33139         (_mm_permute2_ps): New.
33140         (_mm256_permute2_ps): New.
33141
33142 2010-02-15  Nick Clifton  <nickc@redhat.com>
33143
33144         * config/h8300/h8300.c (h8300_push_pop): Use bool type for
33145         boolean parameters.  Use emit_jump_insn when emitting a pop
33146         instruction containing a return insn.
33147         (push): Use 'true' rather than '1' as second parameter to F.
33148         (h8300_expand_prologue): Likewise.
33149         Use 'true' and 'false' for boolean parameters to h8300_push_pop.
33150         (h8300_expand_epilogue): Likewise.
33151
33152 2010-02-15  Richard Guenther  <rguenther@suse.de>
33153
33154         PR middle-end/43068
33155         * cgraphunit.c (thunk_adjust): Skip adjusting by fixed_offset
33156         if that is zero.
33157
33158 2010-02-15  Nick Clifton  <nickc@redhat.com>
33159
33160         * config/mn10300/mn10300.h (FUNCTION_ARG_REGNO_P): Revert previous
33161         delta.
33162
33163 2010-02-14  Marco Poletti  <poletti.marco@gmail.com>
33164
33165         * intl.c (fake_ngettext): New function.
33166         * intl.h (fake_ngettext): Declare.
33167         (ngettext): Define macro.
33168         * collect2.c (notice_translated): New function.
33169         (main): Use notice_translated and ngettext.
33170         * collect2.h (notice_translated): Declare.
33171
33172 2010-02-14  Steven Bosscher  <steven@gcc.gnu.org>
33173
33174         * reorg.c (delete_computation): Comment fixes.
33175         * caller-save.c (setup_save_areas): Idem.
33176         * sel-sched-dump.c (dump_lv_set): Idem.
33177         * rtl.def: Idem.
33178
33179 2010-02-14  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
33180
33181         * config/s390/s390.c (s390_sched_init): New function.
33182         (TARGET_SCHED_INIT): Target hook defined.
33183
33184 2010-02-12  Dave Korn  <dave.korn.cygwin@gmail.com>
33185             Jack Howarth  <howarth@bromo.med.uc.edu>
33186             Iain Sandoe  <iain.sandoe@sandoe-acoustics.co.uk>
33187
33188         PR target/42982
33189         Partial revert of unintended change in fix for PR41605.
33190         * config/darwin.h: Fix typo.
33191         * config/darwin9.h: Same.
33192
33193 2010-02-11  Jakub Jelinek  <jakub@redhat.com>
33194
33195         * c-pch.c (pch_init): Clear v.
33196
33197 2010-02-11  Sebastian Pop  <sebastian.pop@amd.com>
33198
33199         PR middle-end/42930
33200         * graphite-scop-detection.c (graphite_can_represent_scev): Call
33201         graphite_can_represent_init for MULT_EXPR.
33202
33203 2010-02-11  Sebastian Pop  <sebastian.pop@amd.com>
33204
33205         PR middle-end/42914
33206         PR middle-end/42530
33207         * graphite-sese-to-poly.c (remove_phi): New.
33208         (translate_scalar_reduction_to_array): Call remove_phi.
33209
33210 2010-02-11  Sebastian Pop  <sebastian.pop@amd.com>
33211
33212         PR middle-end/42771
33213         * graphite-clast-to-gimple.c (gloog): Call rename_sese_parameters.
33214         * graphite-clast-to-gimple.h (gloog): Update declaration.
33215         * graphite-poly.c (new_scop): Clear POLY_SCOP_P.
33216         * graphite-poly.h (struct poly_bb): Add missing comments.
33217         (struct scop): Add poly_scop_p field.
33218         (POLY_SCOP_P): New.
33219         * graphite-sese-to-poly.c (build_poly_scop): Set POLY_SCOP_P.
33220         * graphite.c (graphite_transform_loops): Build the polyhedral
33221         representation for each scop before code generation.
33222         * sese.c (rename_variables_in_operand): Removed.
33223         (rename_variables_in_expr): Return the renamed expression.
33224         (rename_sese_parameters): New.
33225         * sese.h (rename_sese_parameters): Declared.
33226
33227 2010-02-11  Richard Guenther  <rguenther@suse.de>
33228
33229         PR tree-optimization/42998
33230         * tree-ssa-pre.c (create_expression_by_pieces): Treat
33231         POINTER_PLUS_EXPR properly.
33232
33233 2010-02-11  Sebastian Pop  <sebastian.pop@amd.com>
33234             Changpeng Fang  <changpeng.fang@amd.com>
33235
33236         PR middle-end/40886
33237         * tree-ssa-loop-ivopts.c (determine_use_iv_cost_condition): Decrement
33238         the cost of an IV candidate when the IV is used in a test against zero.
33239
33240         * gcc.dg/tree-ssa/ivopts-3.c: New.
33241
33242 2010-02-11  Richard Guenther  <rguenther@suse.de>
33243
33244         PR lto/41664
33245         * tree-ssa-alias.c (refs_may_alias_p_1): Canonicalize
33246         pointer-vs-decl case by swapping refs.  Handle some cases
33247         of pointer-vs-decl disambiguations more conservatively.
33248         * cfgexpand.c (gimple_expand_cfg): Set gimple_df->in_ssa_p
33249         to false after expanding.
33250
33251 2010-02-11  Richard Guenther  <rguenther@suse.de>
33252
33253         PR driver/43021
33254         * gcc.c (process_command): Handle LTO file@offset case more
33255         appropriately.
33256
33257 2010-02-11  Jakub Jelinek  <jakub@redhat.com>
33258
33259         * reload1.c (eliminate_regs_1): If insn is DEBUG_INSN, avoid any
33260         modifications outside of the DEBUG_INSN.  Accept CLOBBERs inside
33261         of DEBUG_INSNs.
33262         (eliminate_regs_in_insn): Eliminate regs even in DEBUG_INSNs.
33263
33264         * dwarf2out.c (mem_loc_descriptor) <case MEM>: Use DW_OP_deref_size
33265         if MEM's mode size isn't DWARF2_ADDR_SIZE.
33266         (mem_loc_descriptor) <do_scompare>: Allow also VOIDmode arguments.
33267         Optimize eq/ne comparisons when both arguments are known to be
33268         zero-extended.
33269         (mem_loc_descriptor) <do_ucompare>: Allow also VOIDmode arguments.
33270         Don't mask operands unnecessarily if they are known to be already
33271         zero-extended.
33272
33273 2010-02-10  Vladimir Makarov  <vmakarov@redhat.com>
33274
33275         * ira-conflicts.c (add_insn_allocno_copies): Use find_reg_note
33276         instead of loop.
33277
33278 2010-02-10  Richard Guenther  <rguenther@suse.de>
33279
33280         PR tree-optimization/43017
33281         * tree-vrp.c (vrp_int_const_binop): Trust int_const_binop
33282         for wrapping signed arithmetic.
33283
33284 2010-02-10  Jakub Jelinek  <jakub@redhat.com>
33285
33286         PR debug/43010
33287         * dwarf2out.c (retry_incomplete_types): Don't call gen_type_die
33288         if no debug info should be emitted for it.
33289
33290 2010-02-10  Kaz Kojima  <kkojima@gcc.gnu.org>
33291
33292         * config/sh/sh.c (find_barrier): Skip call insn with a REG_EH_REGION
33293         note when flag_exceptions is set.
33294
33295 2010-02-10  Duncan Sands  <baldrick@free.fr>
33296
33297         * Makefile.in (PLUGIN_HEADERS): Add debug.h.
33298
33299 2010-02-10  Richard Guenther  <rguenther@suse.de>
33300
33301         PR c/43007
33302         * tree.c (get_unwidened): Handle constants.
33303         * convert.c (convert_to_integer): Handle TRUNC_DIV_EXPR.
33304
33305 2010-02-10  Martin Jambor  <mjambor@suse.cz>
33306
33307         PR lto/42985
33308         * ipa-prop.c (ipa_update_after_lto_read): Count parameters and
33309         check for variable argument counts independently.
33310
33311 2010-02-10  Christian Bruel  <christian.bruel@st.com>
33312
33313         PR target/42841
33314         * config/sh/sh.c (find_barrier): Increase length for non delayed
33315         conditional branches.
33316
33317 2010-02-10  Christian Bruel  <christian.bruel@st.com>
33318
33319         * config/sh/sh.c (find_barrier): Don't emit a CP inside the GP setting.
33320
33321 2010-02-10  Jakub Jelinek  <jakub@redhat.com>
33322
33323         * builtins.c (set_builtin_user_assembler_name): Also handle
33324         ffs if int is smaller than word.
33325
33326 2010-02-09  Vladimir Makarov  <vmakarov@redhat.com>
33327
33328         PR middle-end/42973
33329         * ira-conflicts.c (get_dup): Remove.
33330         (process_reg_shuffles): Add new parameter.  Use it as an
33331         additional guard for copy generation.
33332         (add_insn_allocno_copies): Rewrite.
33333
33334 2010-02-09  Alexander Monakov  <amonakov@ispras.ru>
33335
33336         * common.opt (fsched2-use-traces): Preserved for backward
33337         compatibility.
33338         * doc/invoke.texi: Remove the documentation about option
33339         -fsched2-use-traces.
33340         * sched-rgn.c (rest_of_handle_sched2): Remove usage of
33341         flag_sched2_use_traces.
33342         * opts.c (common_handle_option): Add OPT_fsched2_use_traces to
33343         the backward compatibility flag section.
33344
33345 2010-02-09  Richard Guenther  <rguenther@suse.de>
33346
33347         PR tree-optimization/43008
33348         * tree-ssa-structalias.c (handle_lhs_call): Pass in the fndecl,
33349         make HEAP variables initialized from global memory if they
33350         are not known builtin functions.
33351         (find_func_aliases): Adjust.
33352
33353 2010-02-09  Richard Guenther  <rguenther@suse.de>
33354
33355         PR tree-optimization/43000
33356         * tree-vrp.c (vrp_int_const_binop): Only handle unsigned
33357         arithmetic manually.
33358
33359 2010-02-08  Jakub Jelinek  <jakub@redhat.com>
33360
33361         PR tree-optimization/42931
33362         * tree-loop-linear.c (try_interchange_loops): Don't call
33363         double_int_mul if estimated_loop_iterations failed.
33364
33365 2010-02-08  Martin Jambor  <mjambor@suse.cz>
33366
33367         PR middle-end/42898
33368         * tree-sra.c (build_accesses_from_assign): Do not mark in
33369         should_scalarize_away_bitmap if stmt has volatile ops.
33370         (sra_modify_assign): Do not process assigns piecemeal if if stmt
33371         has volatile ops.
33372
33373 2010-02-08  Joern Rennecke  <joern.rennecke@embecosm.com>
33374
33375         * doc/tm.texi (TARGET_UNWIND_WORD_MODE): Document.
33376
33377 2010-02-07  Adam Nemet  <adambnmet@gmail.com>
33378
33379         * config/mips/mips.md (*<optab>_trunc<mode>_exts): Fix comment
33380         before the pattern.
33381
33382 2010-02-07  Andrew Pinski  <pinskia@gmail.com>
33383
33384         PR middle-end/42946
33385         * df-core.c (df_finish_pass): Change type of saved_flags to int.
33386
33387 2010-02-07  Sebastian Pop  <sebastian.pop@amd.com>
33388
33389         PR middle-end/42988
33390         * graphite-dependences.c (dependence_polyhedron): Set PDDR_KIND
33391         to unknown_dependence.
33392         (graphite_legal_transform_dr): Handle the unknown_dependence.
33393         (graphite_carried_dependence_level_k): Same.
33394
33395 2010-02-07  Sebastian Pop  <sebastian.pop@amd.com>
33396
33397         * ChangeLog.graphite: Remove testsuite/ or gcc/testsuite/.
33398
33399 2010-02-07  Richard Guenther  <rguenther@suse.de>
33400
33401         PR middle-end/42991
33402         * expr.c (get_inner_reference): Always initialize *pbitsize.
33403
33404 2010-02-07  Richard Guenther  <rguenther@suse.de>
33405
33406         PR middle-end/42956
33407         * gimplify.c (gimple_fold_indirect_ref): Avoid generating
33408         new ARRAY_REFs on variable size element or minimal index arrays.
33409         Complete.
33410         * tree-ssa-loop-ivopts.c (find_interesting_uses_address): Use
33411         gimple_fold_indirect_ref.
33412
33413 2010-02-06  Richard Earnshaw  <rearnsha@arm.com>
33414
33415         PR target/42957
33416         * arm.c (arm_override_options): Just return if the user has specified
33417         an invalid fpu name.
33418
33419 2010-02-03  Jason Merrill  <jason@redhat.com>
33420
33421         PR c++/42870
33422         * config/i386/cygming.h (ASM_OUTPUT_DEF_FROM_DECLS): Call
33423         i386_pe_maybe_record_exported_symbol.
33424
33425 2010-02-05  Steve Ellcey  <sje@cup.hp.com>
33426
33427         PR target/42924
33428         * config/pa/pa.c (TARGET_DELEGITIMIZE_ADDRESS): Redefine.
33429         (pa_delegitimize_address): New function.
33430
33431 2010-02-05  Ozkan Sezer  <sezeroz@gmail.com>
33432
33433         * config/i386/msformat-c.c (ms_printf_length_specs): Set the
33434         scalar_identity_flag for the size_t/ptrdiff_t %Id and %Iu specs.
33435
33436 2010-02-05  Richard Guenther  <rguenther@suse.de>
33437
33438         PR lto/42762
33439         * lto-streamer-in.c (get_resolution): Deal with references
33440         to undefined functions.
33441
33442 2010-02-05  Richard Guenther  <rguenther@suse.de>
33443
33444         * tree-ssa-ccp.c (get_symbol_constant_value): Strip all conversions.
33445         (fold_const_aggregate_ref): Likewise.
33446         (ccp_fold_stmt): Substitute loads.
33447         (maybe_fold_reference): Verify types before substituting.
33448         Unshare properly.
33449         (fold_gimple_assign): Unshare properly.
33450         (fold_stmt_1): Insert conversion if necessary before replacing the RHS.
33451
33452 2010-02-05  Nathan Froyd  <froydnj@codesourcery.com>
33453
33454         * config/rs6000/rs6000.c (rs6000_override_options): Invert check
33455         for rs6000_gen_cell_microcode.
33456
33457 2010-02-04  Richard Guenther  <rguenther@suse.de>
33458
33459         PR rtl-optimization/42952
33460         * dse.c (const_or_frame_p): Remove MEM handling.
33461
33462 2010-02-04  Nick Clifton  <nickc@redhat.com>
33463
33464         * config/mn10300/mn10300.c (TARGET_ASM_OUTPUT_MI_THUNK): Define.
33465         (TARGET_ASM_CAN_OUTPUT_MI_THUNK): Define.
33466         (function_arg): Use NULL_RTX and FIRST_ARGUMENT_REGNUM.
33467         (mn10300_asm_output_mi_thunk): New function.
33468         (mn10300_can_output_mu_thunk): New function.
33469         * config/mn10300/mn10300.h (FIRST_ARGUMENT_REGNUM): Define.
33470         (FUNCTION_ARG_REGNO_P): Fix comment.  Accept d0 and d1.
33471         (FUNCTION_ARG): Delete incorrect comment.
33472
33473 2010-02-03  Jason Merrill  <jason@redhat.com>
33474
33475         PR c++/40138
33476         * fold-const.c (operand_equal_p): Handle erroneous types.
33477
33478 2010-02-03  Kaushik Phatak  <kaushik.phatak@kpitcummins.com>
33479
33480         * config/h8300/h8300.md (can_delay): Fix attibute condition.
33481
33482 2010-02-03  Vladimir Makarov  <vmakarov@redhat.com>
33483
33484         PR rtl-optimization/42941
33485         * sched-deps.c (setup_insn_reg_pressure_info): Use xcalloc instead
33486         of xmalloc.
33487
33488 2010-02-03  Jason Merrill  <jason@redhat.com>
33489
33490         PR c++/35652
33491         * builtins.c (c_strlen): Use EXPR_LOCATION in diagnostics.
33492
33493 2010-02-03  Alexandre Oliva  <aoliva@redhat.com>
33494
33495         PR debug/42896
33496         * cselib.h (struct cselib_val_struct): Add uid.  Rename value to hash.
33497         (cselib_reset_table): Renamed from...
33498         (cselib_reset_table_with_next_value): ... this.
33499         (cselib_get_next_uid): Renamed from...
33500         (cselib_get_next_unknown_value): ... this.
33501         * cselib.c (next_uid): Renamed from...
33502         (next_unknown_value): ... this.
33503         (cselib_clear_table): Adjust.
33504         (cselib_reset_table): Adjust.  Renamed from...
33505         (cselib_reset_table_with_next_value): ... this.
33506         (cselib_get_next_uid): Adjust.  Renamed from...
33507         (cselib_get_next_unknown_value): ... this.
33508         (get_value_hash): Use hash.
33509         (cselib_hash_rtx): Likewise.
33510         (new_cselib_val): Adjust.  Set and dump uid.
33511         (cselib_lookup_mem): Pass next_uid as hash.
33512         (cselib_subst_to_values): Likewise.
33513         (cselib_log_lookup): Dump uid.
33514         (cselib_lookup): Pass next_uid as hash.  Adjust.
33515         (cselib_process_insn): Adjust.
33516         (cselib_init): Initialize next_uid.
33517         (cselib_finish): Adjust.
33518         (dump_cselib_table): Likewise.
33519         * dse.c (canon_address): Dump value uid.
33520         * print-rtl.c (print_rtx): Print value uid.
33521         * var-tracking.c (VARIABLE_HASH_VAL): Dropped.
33522         (dvuid): New type.
33523         (dv_uid): New function, sort of renamed from...
33524         (dv_htab_hash): ... this, reimplemented in terms of it and...
33525         (dv_uid2hash): ... this.  New.
33526         (variable_htab_eq): Drop excess assertions.
33527         (tie_break_pointers): Removed.
33528         (canon_value_cmp): Compare uids.
33529         (variable_post_merge_New_vals): Print uids.
33530         (vt_add_function_parameters): Adjust.
33531         (vt_initialize): Reset table.  Adjust.
33532
33533 2010-02-03  Richard Guenther  <rguenther@suse.de>
33534
33535         PR tree-optimization/42944
33536         * tree-ssa-alias.c (ref_maybe_used_by_call_p_1): Handle calloc.
33537         (call_may_clobber_ref_p_1): Likewise.  Properly handle
33538         malloc and calloc clobbering errno.
33539
33540 2010-02-03  Steven Bosscher  <steven@gcc.gnu.org>
33541
33542         * doc/invoke.texi: Fix name of sched1 dump.
33543
33544         * opts.c (decode_options): Set flag_tree_switch_conversion
33545         only conditionally on optimize >= 2.
33546
33547         * gcse.c: Assorted comment fixes in pass description.
33548
33549 2010-02-03  Anthony Green  <green@moxielogic.com>
33550
33551         * config/moxie/moxie.c (moxie_asm_trampoline_template): Introduce
33552         nop padding in order to maintain alignment of storage location of
33553         target function address.
33554         (moxie_trampoline_init): Store target function address at newly
33555         aligned location.
33556         * config/moxie/moxie.h (TRAMPOLINE_ALIGNMENT): Increase alignment
33557         to 32.
33558         (TRAMPOLINE_SIZE): Increase size by 2 bytes for alignment padding.
33559
33560 2010-02-03  Richard Guenther  <rguenther@suse.de>
33561
33562         PR middle-end/42927
33563         * tree-cfg.c (verify_gimple_assign_binary): Fix shift verification.
33564
33565 2010-02-03  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
33566
33567         * config.gcc: Reenable check for obsolete targets.
33568         Obsolete alpha*-dec-osf4*, alpha*-dec-osf5.0*, mips-sgi-irix5*,
33569         mips-sgi-irix6.[0-4]*.
33570
33571 2010-02-02  Nick Clifton  <nickc@redhat.com>
33572
33573         * config/rx/rx.c (rx_is_legitimate_constant): Treat a maximum
33574         constant size of 4 as being the same as 0.
33575         * doc/invoke.texi (RX Options): Document that -mmax-constant-size
33576         can take values in the range 0..4.
33577
33578 2010-02-02  Jack Howarth  <howarth@bromo.med.uc.edu>
33579
33580         PR java/41991
33581         * unwind-dw2-fde-darwin.c: Re-export _Unwind_FindEnclosingFunction()
33582         as _darwin10_Unwind_FindEnclosingFunction().
33583         * libgcc-libsystem.ver: New.
33584
33585 2010-02-01  Vladimir Makarov  <vmakarov@redhat.com>
33586
33587         PR target/41399
33588         * sched-deps.c (sched_analyze_insn): Ignore fixed registers for
33589         implicitly set registers.
33590
33591 2010-02-01  Richard Earnshaw  <rearnsha@arm.com>
33592
33593         * arm.c (FL_FOR_ARCH_7A): is also a superset of ARMv6K.
33594         (arm_override_options): Allow automatic selection of the thread
33595         pointer register if thumb2.
33596         (legitimize_pic_address): Improve code sequences for Thumb2.
33597         (arm_call_tls_get_addr): Likewise.
33598         (legitimize_tls_address): Likewise.
33599         * arm.md (pic_load_addr_arm): Delete.  Replace with ...
33600         (pic_load_addr_32bit): ... this.  New named pattern.
33601         * thumb2.md (pic_load_addr_thumb2): Delete.
33602         (pic_load_dot_plus_four): Delete.
33603         (tls_load_dot_plus_four): New named pattern.
33604
33605 2010-02-01  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
33606
33607         PR libgomp/29986
33608         * doc/install.texi (Specific): Add sparc-sun-solaris2.10 entry.
33609         Document fix for TLS bug.
33610
33611 2010-01-31  Richard Guenther  <rguenther@suse.de>
33612
33613         * tree-sra.c (ptr_parm_has_direct_uses): Rewrite to be
33614         conservatively correct.
33615
33616 2010-01-31  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
33617
33618         PR target/42850
33619         Revert:
33620         2010-01-02  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
33621
33622         * config/pa/t-slibgcc-dwarf-ver (SHLIB_SOVERSION): Bump by two.
33623
33624 2010-01-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
33625
33626         * doc/install.texi: Update recommended GMP/MPFR/MPC versions.
33627
33628 2010-01-31  Kai Tietz  <kai.tietz@onevision.com>
33629
33630         * config.gcc: Adjust order of makefile fragments for mingw targets.
33631
33632 2010-01-31  Richard Guenther  <rguenther@suse.de>
33633
33634         PR middle-end/42898
33635         * gimplify.c (gimplify_init_constructor): For volatile LHS
33636         initialize a temporary.
33637
33638 2010-01-31  Matthias Klose  <doko@ubuntu.com>
33639
33640         * configure.ac: Fix __stack_chk_fail check for cross builds configured
33641         --with-headers
33642         * configure: Regenerate.
33643
33644 2010-01-29  Eric Botcazou  <ebotcazou@adacore.com>
33645
33646         * tree-ssa-alias.c (same_type_for_tbaa): Return -1 if the types have
33647         the same alias set and their sizes different constantness.
33648         (aliasing_component_refs_p): Revert 2009-10-24 change.
33649
33650 2010-01-29  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
33651
33652         * config/sparc/sparc.c (sparc_elf_asm_named_section): Declare decl
33653         unused.
33654
33655 2010-01-29  Richard Guenther  <rguenther@suse.de>
33656
33657         * tree-ssa-ccp.c (ccp_fold_stmt): Unshare values we substitute.
33658         Assert we successfully updated the call.
33659
33660 2010-01-29  Jakub Jelinek  <jakub@redhat.com>
33661
33662         PR rtl-optimization/42889
33663         * df.h (df_set_bb_dirty_nonlr): New prototype.
33664         * df-core.c (df_set_bb_dirty_nonlr): New function.
33665         * df-scan.c (df_insn_rescan): Call it instead of
33666         df_set_bb_dirty for DEBUG_INSNs.
33667
33668 2010-01-29  Richard Guenther  <rguenther@suse.de>
33669
33670         PR middle-end/37448
33671         * ipa-inline.c (cgraph_decide_inlining_incrementally): Avoid
33672         quadratic behavior in most cases.
33673
33674 2010-01-28  Uros Bizjak  <ubizjak@gmail.com>
33675
33676         PR target/42891
33677         * config/i386/i386.c (ix86_expand_int_movcc): Convert tmp to SImode
33678         in the call to gen_x86_movsicc_0_m1.
33679
33680 2010-01-28  Richard Guenther  <rguenther@suse.de>
33681
33682         PR tree-optimization/42871
33683         * tree-ssa-pre.c (phi_translate_set): Make sure to retain leaders.
33684
33685 2010-01-28  Richard Guenther  <rguenther@suse.de>
33686
33687         * tree-ssa-ccp.c (ccp_fold_stmt): Fold calls and propagate
33688         into call arguments.
33689
33690 2010-01-28  Richard Guenther  <rguenther@suse.de>
33691
33692         PR middle-end/42883
33693         * tree-cfgcleanup.c (remove_forwarder_block): Do not remove
33694         the forwarder if the destination is an EH landing pad.
33695
33696 2010-01-28  Razya Ladelsky  <razya@il.ibm.com>
33697
33698         * tree-parloops.c (transform_to_exit_first_loop): Update the basic
33699         block list passed to gimple_duplicate_sese_tail.
33700         (parallelize_loops): Avoid parallelization when the function
33701         has_nonlocal_label.
33702         Avoid parallelization when the preheader is IRREDUCIBLE.
33703         Try to optimize when estimated_loop_iterations_int is unresolved.
33704         Add the loop's location to the dump file.
33705         * tree-cfg.c (add_phi_args_after_redirect): Remove.
33706         (gimple_duplicate_sese_tail): Remove the check for the latch.
33707         Redirect nexits to the exit block.
33708         Remove handling of the incoming edges to the latch.
33709         Redirect the backedge from the copied latch to the exit bb.
33710
33711 2010-01-28  Michael Matz  <matz@suse.de>
33712
33713         PR target/42881
33714         * config/i386/i386.c (ix86_expand_vector_init_duplicate):
33715         Wrap force_reg into a sequence, emit it before user.
33716
33717 2010-01-28  Stephen Thomas  <stephen.thomas@arm.com>
33718
33719         * config/arm/arm.md (bswapsi2): Add support for bswapsi2.
33720         (arm_rev): New.
33721         (arm_legacy_rev): Likewise.
33722         (thumb_legacy_rev): Likewise.
33723
33724 2010-01-27  Jakub Jelinek  <jakub@redhat.com>
33725
33726         * dwarf2out.c (mem_loc_descriptor): Remove special casing of
33727         CONSTANT_POOL_ADDRESS_P SYMBOL_REFs.  If for MEM recursive call
33728         on MEM's address failed, try avoid_constant_pool_reference and
33729         recurse if it returned something different.
33730         (loc_descriptor): If for MEM mem_loc_descriptor failed on the
33731         address, try avoid_constant_pool_reference and recurse if it
33732         returned something different.
33733         (dw_loc_list_1): If for MEM mem_loc_descriptor failed on the
33734         address and avoid_constant_pool_reference returned something
33735         different, don't set have_address.
33736
33737 2010-01-27  Alexandre Oliva  <aoliva@redhat.com>
33738
33739         PR debug/42861
33740         * var-tracking.c (val_store): Add modified argument, obey it.
33741         Adjust callers.
33742         (count_uses): Move down logging of main.
33743         (compute_bb_dataflow): Use val_store for MO_VAL_USEs that
33744         don't need resolution.
33745         (emit_notes_in_bb): Likewise.
33746
33747 2010-01-27  Richard Guenther  <rguenther@suse.de>
33748
33749         PR middle-end/42878
33750         * tree-inline.c (remap_decl): Delay remapping of SSA name
33751         default definitions until we need them.
33752
33753 2010-01-27  Jakub Jelinek  <jakub@redhat.com>
33754
33755         * config/rs6000/rs6000.c (TARGET_DELEGITIMIZE_ADDRESS): Redefine.
33756         (rs6000_delegitimize_address): New function.
33757
33758         * config/s390/s390.c (s390_delegitimize_address): Call
33759         delegitimize_mem_from_attrs.
33760
33761         PR middle-end/42874
33762         * tree-inline.c (cannot_copy_type_1): Removed.
33763         (copy_forbidden): Don't forbid copying of functions containing
33764         records/unions with variable length fields.
33765
33766 2010-01-27  Christian Bruel  <christian.bruel@st.com>
33767
33768         Revert:
33769         PR target/42841
33770         * config/sh/sh.c (find_barrier): Increase length for non delayed
33771         conditional branches.
33772
33773 2010-01-27  Matthias Klose  <doko@ubuntu.com>
33774
33775         * configure.ac (gnu-unique-object): Fix ldd version check.
33776         * configure: Regenerate.
33777
33778 2010-01-26  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
33779
33780         * config/sparc/sparc.c (sparc_elf_asm_named_section): Test for
33781         HAVE_GNU_AS value.
33782         * config/sparc/sysv4.h [HAVE_GNU_AS] (TARGET_ASM_NAMED_SECTION):
33783         Test for HAVE_GNU_AS value.
33784
33785 2010-01-26  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
33786
33787         * config.gcc (mips-sgi-irix[56]*): Set use_gcc_stdint.
33788         * config/mips/iris.h (INT8_TYPE, INT16_TYPE, INT32_TYPE,
33789         INT64_TYPE): Define.
33790         (UINT8_TYPE, UINT16_TYPE, UINT32_TYPE, UINT64_TYPE): Define.
33791         (INT_LEAST8_TYPE, INT_LEAST16_TYPE, INT_LEAST32_TYPE,
33792         INT_LEAST64_TYPE): Define.
33793         (UINT_LEAST8_TYPE, UINT_LEAST16_TYPE, UINT_LEAST32_TYPE,
33794         UINT_LEAST64_TYPE): Define.
33795         (INT_FAST8_TYPE, INT_FAST16_TYPE, INT_FAST32_TYPE)
33796         INT_FAST64_TYPE): Define.
33797         (UINT_FAST8_TYPE, UINT_FAST16_TYPE, UINT_FAST32_TYPE,
33798         UINT_FAST64_TYPE): Define.
33799         (INTMAX_TYPE, UINTMAX_TYPE): Define.
33800         (INTPTR_TYPE, UINTPTR_TYPE): Define.
33801         (SIG_ATOMIC_TYPE): Define.
33802
33803 2010-01-26  Richard Guenther  <rguenther@suse.de>
33804
33805         * df-scan.c (df_scan_set_bb_info): Remove assert.
33806         (df_insn_rescan_debug_internal): Merge asserts.
33807         (df_install_ref): Likewise.
33808         (df_mark_reg): Use bitmap_set_range.
33809         (df_hard_reg_used_p): Remove assert.
33810         (df_hard_reg_used_count): Likewise.
33811
33812 2010-01-26  Richard Guenther  <rguenther@suse.de>
33813
33814         PR rtl-optimization/42685
33815         * web.c (web_main): Ignore DEBUG_INSNs.
33816
33817 2010-01-26  Joern Rennecke  <amylaar@spamcop.net>
33818
33819         * doc/tm.texi (TARGET_HANDLE_C_OPTION): Explain arguments.
33820
33821         (TARGET_RESOLVE_OVERLOADED_BUILTIN): Add loc parameter.
33822         Fix types of fndecl and arglist parameters.
33823
33824 2010-01-26  Richard Guenther  <rguenther@suse.de>
33825
33826         PR middle-end/42806
33827         * tree-eh.c (unsplit_eh): Skip debug insns.
33828
33829 2010-01-26  Richard Guenther  <rguenther@suse.de>
33830
33831         PR tree-optimization/42250
33832         * ipa-type-escape.c (type_escape_execute): Do not analyze clones.
33833
33834 2010-01-26  Jakub Jelinek  <jakub@redhat.com>
33835
33836         PR fortran/42866
33837         * omp-low.c (expand_omp_sections): Only use single_pred if
33838         l2_bb is single_pred_p.
33839
33840 2010-01-25  Christian Bruel  <christian.bruel@st.com>
33841
33842         PR target/42841
33843         * config/sh/sh.c (find_barrier): Increase length for non delayed
33844         conditional branches.
33845         (sh_insn_length_adjustment): Use JUMP_TABLE_DATA_P.
33846
33847 2010-01-24  David S. Miller  <davem@davemloft.net>
33848
33849         * config/sparc/sysv4.h (TARGET_ASM_NAMED_SECTION): Only
33850         define if not using GAS.
33851         * config/sparc/sparc.c (sparc_elf_asm_named_section):
33852         Likewise.  Delete SECTION_MERGE code, which is only applicable
33853         when using GAS.
33854
33855 2010-01-24  Mark Mitchell  <mark@codesourcery.com>
33856
33857         PR c++/42748
33858         * config/arm/arm.c (arm_mangle_type): Do not warn about changes to
33859         mangling of va_list in system headers.
33860
33861 2010-01-23  Toon Moene  <toon@moene.org>
33862
33863         * tree-predcom.c (combine_chains): Return NULL, not false.
33864
33865 2010-01-23  Joern Rennecke  <amylaar@spamcop.net>
33866
33867         * tree-loop-distribution.c (distribute_loop): Fix declaration and
33868         initialization of variable res to agree with return type.
33869
33870 2010-01-22  Steve Ellcey  <sje@cup.hp.com>
33871
33872         * Makefile.in (tree-sra.o): Add $(EXPR_H) dependency.
33873         * tree-sra.c: Add include of expr.h.
33874
33875 2010-01-22  Jakub Jelinek  <jakub@redhat.com>
33876
33877         * tree-into-ssa.c (maybe_register_def): If stmt ends the bb,
33878         insert the debug stmt on the single non-EH edge from the stmt.
33879
33880 2010-01-22  Richard Henderson  <rth@redhat.com>
33881
33882         PR tree-opt/42833
33883         * tree-sra.c (sra_modify_assign): Delay re-gimplification of
33884         the RHS until after generate_subtree_copies has insertted its
33885         code before the current statement.
33886
33887 2010-01-22  Joern Rennecke  <amylaar@spamcop.net>
33888
33889         * doc/tm.texi (TARGET_MIN_DIVISIONS_FOR_RECIP_MUL): Fix return type.
33890
33891         * gcc-plugin.h (plugin_init): Use "C" likage for c++.
33892
33893 2010-01-21  Martin Jambor  <mjambor@suse.cz>
33894
33895         PR tree-optimization/42585
33896         * tree-sra.c (struct access): New field grp_total_scalarization.
33897         (dump_access): Dump the new field.
33898         (should_scalarize_away_bitmap): New variable.
33899         (cannot_scalarize_away_bitmap): Likewise.
33900         (sra_initialize): Allocate new bitmaps.
33901         (sra_deinitialize): Free new bitmaps.
33902         (create_access_1): New function.
33903         (create_access): Parts moved to create_access_1.
33904         (type_consists_of_records_p): New function.
33905         (completely_scalarize_record): Likewise.
33906         (build_access_from_expr): Set bit in cannot_scalarize_away_bitmap.
33907         (build_accesses_from_assign): Set bits in should_scalarize_away_bitmap.
33908         (sort_and_splice_var_accesses): Hint groups with a total_scalarization
33909         access.
33910         (analyze_all_variable_accesses): Completely scalarize small eligible
33911         records.
33912
33913 2010-01-21  Martin Jambor  <mjambor@suse.cz>
33914
33915         * tree-sra.c (build_ref_for_offset_1): Allow for zero size fields.
33916
33917 2010-01-21  Andrew Haley  <aph@redhat.com>
33918
33919         * gcc.c (process_command): Move lang_specific_driver before
33920         setting cc_libexec_prefix.
33921
33922 2010-01-21  Richard Guenther  <rguenther@suse.de>
33923
33924         PR middle-end/19988
33925         * fold-const.c (negate_expr_p): Pretend only negative
33926         real constants are easily negatable.
33927
33928 2010-01-20  Janis Johnson  <janis187@us.ibm.com>
33929             Jason Merrill  <jason@redhat.com>
33930
33931         * tree.h (TYPE_TRANSPARENT_UNION): Replace with ...
33932         (TYPE_TRANSPARENT_AGGR): this, for union and record.
33933         * calls.c (initialize argument_information): Handle it.
33934         * c-common.c (handle_transparent_union_attribute): Use new name.
33935         * c-decl.c (finish_struct): Ditto.
33936         * c-typeck.c (type_lists_compatible_p): Ditto.
33937         (convert_for_assignment): Use new name and also handle record.
33938         * function.c (aggregate_value_p): Handle it.
33939         (pass_by_reference): Ditto.
33940         (assign_parm_data_types): Ditto.
33941         * print-tree.c (print_node): Ditto.
33942         * lto-streamer-in.c (unpack_ts_type_value_fields): Ditto.
33943         * lto-streamer-out.c (pack_ts_type_value_fields): Ditto.
33944         * tree.c (first_field): New fn.
33945
33946 2010-01-21  Dave Korn  <dave.korn.cygwin@gmail.com>
33947
33948         PR target/42818
33949         * config/i386/cygwin.h (CXX_WRAP_SPEC_LIST): Always apply wrappers,
33950         even when linking statically, for now.
33951
33952 2010-01-20  Alexandre Oliva  <aoliva@redhat.com>
33953
33954         PR debug/42715
33955         * var-tracking.c (use_type): Choose MO_VAL_SET for REGs set
33956         without a cselib val.
33957         (count_uses): Accept MO_VAL_SET with no val on stores.
33958         (add_stores): Likewise.
33959
33960 2010-01-20  Jakub Jelinek  <jakub@redhat.com>
33961
33962         * var-tracking.c (check_value_val): Add a compile time assertion.
33963         (dv_is_decl_p): Simplify.
33964         (dv_as_decl, dv_as_value, dv_from_decl, dv_from_value): Only use
33965         gcc_assert if ENABLE_CHECKING.
33966
33967 2010-01-20  Alexandre Oliva  <aoliva@redhat.com>
33968
33969         PR debug/42782
33970         * var-tracking.c: Include tree-flow.h.
33971         (mem_dies_at_call): New.
33972         (dataflow_set_preserve_mem_locs): Use it.
33973         (dataflow_set_remove_mem_locs): Likewise.
33974         (dump_var): Renamed from dump_variable.  Adjust all callers.
33975         (dump_var_slot): Renamed from dump_variable_slot.  Likewise.
33976         * Makefile.in (var-tracking.o): Adjust deps.
33977
33978 2010-01-20  Joern Rennecke  <amylaar@spamcop.net>
33979
33980         * doc/tm.texi (TARGET_SCHED_SET_SCHED_FLAGS): Fix argument list.
33981
33982 2010-01-20  Richard Guenther  <rguenther@suse.de>
33983
33984         PR tree-optimization/42717
33985         * tree-ssa-dce.c (get_live_post_dom): Remove.
33986         (forward_edge_to_pdom): Take an arbitrary edge to copy
33987         degenerate PHI args from.
33988         (remove_dead_stmt): Use the first post-dominator even if it
33989         does not contain live statements as redirection destination.
33990
33991 2010-01-20  Richard Guenther  <rguenther@suse.de>
33992
33993         * tree-inline.c (estimate_num_insns): Handle EH builtins.
33994
33995 2010-01-20  Jakub Jelinek  <jakub@redhat.com>
33996
33997         * sel-sched.c (create_speculation_check): Remove set but not used
33998         variable twin.
33999         (try_transformation_cache): Remove set but not used variable ds.
34000         (calculate_privileged_insns): Remove set but not used variables
34001         cur_insn and min_spec_insn.
34002         (find_best_expr): Remove set but not used variable avail_n.
34003         * tree-predcom.c (base_names_in_chain_on): Remove set but not used
34004         variable e.
34005         * cgraphunit.c (assemble_thunk): Remove set but not used variable
34006         false_label.
34007         * haifa-sched.c (remove_notes): Remove set but not used variable prev.
34008         * graphite-clast-to-gimple.c (gloog): Remove set but not used variable
34009         new_scop_exit_edge.
34010
34011 2010-01-20  Felyza Wishbringer  <fwishbringer@gmail.com>
34012
34013         PR bootstrap/42786
34014         * config.gcc (i[34567]86-*-*): Fix handling of athlon64 and athlon-fx
34015         cpu types.  Add support for *-sse3 cpu types.
34016         (x86_64-*-*): Ditto.
34017
34018 2010-01-20  Jakub Jelinek  <jakub@redhat.com>
34019
34020         PR middle-end/42803
34021         * varasm.c (narrowing_initializer_constant_valid_p): Add CACHE
34022         argument, call initializer_constant_valid_p_1 instead of
34023         initializer_constant_valid_p, pass CACHE to it, return NULL
34024         immediately if first call returns NULL.
34025         (initializer_constant_valid_p_1): New function.
34026         (initializer_constant_valid_p): Use it.
34027
34028 2010-01-20  Thomas Quinot  <quinot@adacore.com>
34029
34030         * tree.def (PLACEHOLDER_EXPR): Fix comment.
34031
34032 2010-01-20  Jakub Jelinek  <jakub@redhat.com>
34033
34034         * dwarf2out.c (mem_loc_descriptor): Use DW_OP_mod for UMOD instead
34035         of MOD, handle MOD using DW_OP_{over,over,div,mul,minus}.
34036         (loc_list_from_tree): Don't handle unsigned division.  Handle
34037         signed modulo using DW_OP_{over,over,div,mul,minus}.
34038         * unwind-dw2.c (execute_stack_op): Handle DW_OP_mod using unsigned
34039         modulo instead of signed.
34040
34041 2010-01-20  DJ Delorie  <dj@redhat.com>
34042
34043         * config/h8300/h8300.c (F): Add "in_epilogue" flag.
34044         (Fpa): Pass it
34045         (h8300_emit_stack_adjustment): Propogate it.
34046         (push): Pass it.
34047         (h8300_expand_prologue): Likewise.
34048         (h8300_expand_epilogue): Likewise.
34049
34050 2010-01-19  Michael Matz  <matz@suse.de>
34051
34052         PR tree-optimization/41783
34053         * tree-data-ref.c (toplevel): Include flags.h.
34054         (dump_data_dependence_relation):  Also dump the inputs if the
34055         result will be unknown.
34056         (split_constant_offset_1): Look through some conversions.
34057         * tree-predcom.c (determine_roots_comp): Restart a new chain if
34058         the offset from last element is too large.
34059         (ref_at_iteration): Deal also with MISALIGNED_INDIRECT_REF.
34060         (reassociate_to_the_same_stmt): Handle vector registers.
34061         * tree-vect-data-refs.c (vect_equal_offsets): Handle unary operations
34062         (e.g. conversions).
34063         * tree-vect-loop-manip.c (vect_gen_niters_for_prolog_loop): Add
34064         wide_prolog_niters argument, emit widening instructions.
34065         (vect_do_peeling_for_alignment): Adjust caller, use widened
34066         variant of the iteration cound.
34067         * Makefile.in (tree-data-ref.o): Add $(FLAGS_H).
34068
34069 2010-01-19  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
34070
34071         PR target/38697
34072         * config/arm/neon-testgen.m (emit_automatics): New parameter
34073         features. Adjust for Fixed_return_reg feature.
34074         (test_intrinsic): Call emit_automatics with new feature.
34075         * config/arm/neon.ml: Update copyright years.
34076         (features): New Fixed_return_reg feature.
34077         (ops): Update feature for Vget_low.
34078
34079 2010-01-19  Jakub Jelinek  <jakub@redhat.com>
34080
34081         PR tree-optimization/42719
34082         * tree-outof-ssa.c (trivially_conflicts_p): Don't consider debug
34083         stmt uses.
34084
34085         PR debug/42728
34086         * fwprop.c (all_uses_available_at): Return false if def_set dest
34087         is a REG that is used in def_insn.
34088
34089 2010-01-19  Joern Rennecke  <amylaar@spamcop.net>
34090
34091         * doc/tm.texi (TARGET_FIXED_CONDITION_CODE_REGS): Add argument names.
34092
34093         (TARGET_CC_MODES_COMPATIBLE): Put return value in braces.
34094         Add argument names.
34095
34096         (TARGET_SCHED_INIT_SCHED_CONTEXT): Clarify language.
34097
34098         * target.h (struct gcc_target) <secondary_reload>: Change type
34099         of last argument to secondary_reload_info *.
34100
34101 2010-01-18  Uros Bizjak  <ubizjak@gmail.com>
34102
34103         PR target/42774
34104         * config/alpha/predicates.md (aligned_memory_operand): Return 0 for
34105         memory references with unaligned offsets.  Remove CQImode handling.
34106         (unaligned_memory_operand): Return 1 for memory references with
34107         unaligned offsets.  Remove CQImode handling.
34108
34109 2010-01-18  Richard Guenther  <rguenther@suse.de>
34110
34111         PR middle-end/39954
34112         * cfgexpand.c (expand_call_stmt): TER pointer arguments in
34113         builtin calls.
34114
34115 2010-01-18  Richard Guenther  <rguenther@suse.de>
34116
34117         PR tree-optimization/42781
34118         * tree-ssa-structalias.c (find_what_var_points_to): Skip
34119         restrict processing only if the original variable was artificial.
34120
34121 2010-01-18  Joern Rennecke  <amylaar@spamcop.net>
34122
34123         * doc/tm.texi (TARGET_ASM_FUNCTION_EPILOGUE): Update text on where to
34124         find number of popped argument bytes.
34125
34126         (TARGET_INVALID_WITHIN_DOLOOP): Put return value in braces.
34127         Fix the text that describes the return value for invalid insns.
34128
34129         (TARGET_SCHED_NEEDS_BLOCK_P): Fix return type.  Fix argument list.
34130
34131         (TARGET_SCHED_IS_COSTLY_DEPENDENCE): Fix argument types.
34132         Clarify what 'cost of the -dependence' is.  Fix quoting.
34133
34134         * toplev.c (default_get_pch_validity): Rename argument to "sz".
34135         * doc/tm.texi (TARGET_GET_PCH_VALIDITY): Likewise.
34136
34137 2010-01-17  Jakub Jelinek  <jakub@redhat.com>
34138
34139         * dwarf2out.c (mem_loc_descriptor): Don't ICE on
34140         {S,U}S_{PLUS,MINUS,NEG,ABS,ASHIFT}.
34141
34142 2010-01-17  Richard Guenther  <rguenther@suse.de>
34143
34144         PR middle-end/42248
34145         * function.c (split_complex_args): Take a VEC to modify.
34146         (assign_parms_augmented_arg_list): Build a VEC instead of
34147         a chain of PARM_DECLs.
34148         (assign_parms_unsplit_complex): Take a VEC of arguments.
34149         Do not fixup unmodified parms.
34150         (assign_parms): Deal with the VEC.
34151         (gimplify_parameters): Likewise.
34152
34153 2010-01-17  Richard Guenther  <rguenther@suse.de>
34154
34155         * tree-ssa-uncprop.c (uncprop_into_successor_phis): Fix PHI
34156         node existence check.
34157         * tree-vect-loop.c (vect_analyze_loop_form): Likewise.
34158         * tree-cfgcleanup.c (merge_phi_nodes): Likewise.
34159         * tree-ssa-dce.c (forward_edge_to_pdom): Likewise.
34160         * tree-cfg.c (gimple_execute_on_growing_pred): Likewise.
34161         (gimple_execute_on_growing_pred): Likewise.
34162
34163 2010-01-17  Richard Guenther  <rguenther@suse.de>
34164
34165         PR tree-optimization/42773
34166         * tree-ssa-pre.c (phi_translate_set): Fix check for PHI node existence.
34167         (compute_antic_aux): Likewise.
34168         (compute_partial_antic_aux): Likewise.
34169
34170 2010-01-17  Jie Zhang  <jie.zhang@analog.com>
34171
34172         PR debug/42767
34173         * dwarf2out.c (mem_loc_descriptor): Handle SS_TRUNCATE
34174         and US_TRUNCATE.
34175
34176 2010-01-17  Joern Rennecke  <amylaar@spamcop.net>
34177
34178         * doc/tm.texi (TARGET_INIT_LIBFUNCS): Put @findex entries in order of
34179         appearance.
34180
34181         (TARGET_LEGITIMATE_ADDRESS_P): Add return type.
34182         Fix markup for strict argument.
34183
34184         (TARGET_SCHED_REORDER2): Fix argument types.
34185
34186         (TARGET_SCHED_DFA_PRE_CYCLE_INSN): Fix return type.
34187         (TARGET_SCHED_DFA_POST_CYCLE_INSN): Likewise.
34188
34189         (TARGET_SCHED_DFA_PRE_ADVANCE_CYCLE): Fix name.
34190         (TARGET_SCHED_DFA_POST_ADVANCE_CYCLE): Likewise.
34191
34192         (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD):
34193         Add argument name.
34194
34195         (TARGET_SCHED_ALLOC_SCHED_CONTEXT): Remove duplicate documentation.
34196         (TARGET_SCHED_INIT_SCHED_CONTEXT): Likewise.
34197         (TARGET_SCHED_SET_SCHED_CONTEXT): Likewise.
34198         (TARGET_SCHED_CLEAR_SCHED_CONTEXT): Likewise.
34199         (TARGET_SCHED_FREE_SCHED_CONTEXT): Likewise.
34200
34201         (TARGET_SCHED_SET_SCHED_CONTEXT): Fix typo.
34202
34203         (TARGET_SCHED_GEN_SPEC_CHECK): Fix name.
34204
34205         (TARGET_ASM_RELOC_RW_MASK): Add return type.
34206         (TARGET_MANGLE_DECL_ASSEMBLER_NAME): Fix return type.
34207
34208         (TARGET_STRIP_NAME_ENCODING): Fix markup of return type and parameter.
34209
34210         (TARGET_ASM_FILE_START): Put @findex before paragraph start.
34211         Use prototype.
34212
34213         (TARGET_ASM_NAMED_SECTION): Fix argument list.
34214
34215         (TARGET_HAVE_NAMED_SECTIONS): Use @deftypevr.
34216         (TARGET_HAVE_SWITCHABLE_BSS_SECTIONS): Likewise.
34217
34218         (TARGET_ASM_RECORD_GCC_SWITCHES_SECTION): Use @deftypevr.
34219
34220         (TARGET_ASM_ASSEMBLE_VISIBILITY): Fix argument types.
34221
34222         (TARGET_ASM_MARK_DECL_PRESERVED): Fix argument and markup
34223         referring to it.  Fix language.
34224
34225         (TARGET_HAVE_CTORS_DTORS): Use @deftypevr.
34226
34227         (TARGET_ASM_FINAL_POSTSCAN_INSN): Adjust name of first argument.
34228
34229         (TARGET_ASM_EMIT_UNWIND_LABEL): Add argument types.
34230
34231         (TARGET_ASM_EMIT_EXCEPT_TABLE_LABEL): Add type to argument.
34232
34233         (TARGET_UNWIND_EMIT): Remove space between 'FILE *' and
34234         '@var{stream}.  Remove stray 'and'.
34235
34236         (TARGET_ARM_EABI_UNWINDER): Use @deftypevr.
34237
34238         (TARGET_ASM_OUTPUT_DWARF_DTPREL): Adjust name of first argument.
34239
34240         (TARGET_SET_DEFAULT_TYPE_ATTRIBUTES): Add missing article.
34241
34242         (TARGET_OPTION_VALID_ATTRIBUTE_P): Fix name, it was
34243         misspelled as TARGET_VALID_OPTION_ATTRIBUTE_P.
34244
34245         (TARGET_GET_PCH_VALIDITY): Put 'void *' in braces.
34246         Fix description of return value.
34247         Rename argument "sz" to "len."
34248
34249         (TARGET_CXX_GUARD_MASK_BIT): Add missing article.
34250         Clarify meaning of 'true' return value.
34251
34252         (TARGET_SHIFT_TRUNCATION_MASK): Fix return type.
34253
34254         (TARGET_MODE_REP_EXTENDED): Fix two inconsisent uses of
34255         rep_mode versus mode_rep.
34256
34257         (TARGET_HANDLE_PRAGMA_EXTERN_PREFIX): Document.
34258
34259         (TARGET_BUILTIN_DECL): Fix name.
34260
34261         (TARGET_COMMUTATIVE_P): Fix type of first argument.
34262
34263         (TARGET_SET_CURRENT_FUNCTION): Mention possibility of cfun being NULL.
34264
34265         (TARGET_BRANCH_TARGET_REGISTER_CLASS): Fix return type.
34266
34267         (TARGET_USE_LOCAL_THUNK_ALIAS_P): Document as macro instead of hook.
34268
34269         (TARGET_RELAXED_ORDERING): Use @deftypevr.
34270
34271         (TARGET_GET_DRAP_RTX): Note that this is a hook.
34272         Clarify language.
34273
34274         (TARGET_BUILTIN_RECIPROCAL): Fix argument types.
34275         Rename argument tm_fn to md_fn.
34276
34277         (TARGET_OPTION_PRINT): Fix argument list.
34278
34279 2010-01-16  Harsha Jagasia  <harsha.jagasia@amd.com>
34280
34281         PR target/42664
34282         * config/i386/i386.c (ix86_fixup_binary_operands):
34283         Revert FMA4 fixup of operands.
34284
34285 2010-01-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34286
34287         PR other/42525
34288         * Makefile.in (write_entries_to_file, install-plugin):
34289         Use \012 instead of \n with tr.
34290
34291 2010-01-16  Richard Sandiford  <r.sandiford@uk.ibm.com>
34292
34293         * configure.ac (HAVE_AS_REF): New C macro.
34294         * configure: Regenerate.
34295         * config.in: Likewise.
34296         * collect2.c (main): Only postpone SCAN_DWEH to the second pass
34297         if HAVE_AS_REF.
34298         * config/rs6000/aix.h (ASM_OUTPUT_DWARF_TABLE_REF): Only define
34299         if HAVE_AS_REF.
34300
34301 2010-01-16  Joern Rennecke  <amylaar@spamcop.net>
34302
34303         * doc/tm.texi (TARGET_USE_BLOCKS_FOR_CONSTANT_P): Fix argument types.
34304
34305         (TARGET_SUPPORT_VECTOR_MISALIGNMENT): Fix argument types.
34306
34307         (TARGET_USE_ANCHORS_FOR_SYMBOL_P): Fix argument types.
34308
34309         (TARGET_SCHED_ALLOC_SCHED_CONTEXT): Put 'void *' in braces.
34310
34311         (TARGET_IN_SMALL_DATA_P): Fix argument type.
34312
34313         (TARGET_BINDS_LOCAL_P): Fix argument type.
34314
34315         (TARGET_ASM_FILE_END): Use prototype.
34316
34317         (TARGET_ASM_RECORD_GCC_SWITCHES): Don't put 'int' in braces.
34318
34319         (TARGET_DWARF_CALLING_CONVENTION): Fix argument type.
34320
34321         (TARGET_COMP_TYPE_ATTRIBUTES): Fix argument types.
34322
34323         (TARGET_VALID_DLLIMPORT_ATTRIBUTE_P): Fix argument type.
34324
34325         (TARGET_EMUTLS_VAR_ALIGN_FIXED): Don't put 'bool' in braces.
34326         (TARGET_EMUTLS_DEBUG_FORM_TLS_ADDRESS): Likewise.
34327
34328         (TARGET_PCH_VALID_P): Put 'const char *' in braces.
34329         (TARGET_CHECK_PCH_TARGET_FLAGS): Likewise.
34330
34331         (TARGET_ADDR_SPACE_LEGITIMATE_ADDRESS_P): Don't put 'bool' in braces.
34332         (TARGET_ADDR_SPACE_SUBSET_P): Likewise.
34333         (TARGET_ADDR_SPACE_LEGITIMIZE_ADDRESS): Don't put 'rtx' in braces.
34334         (TARGET_ADDR_SPACE_CONVERT): Likewise.
34335
34336         (TARGET_CASE_VALUES_THRESHOLD): Put 'unsigned int' in braces.
34337
34338         (TARGET_MACHINE_DEPENDENT_REORG: Use prototype.
34339
34340         (TARGET_INIT_BUILTINS): Use prototype.
34341
34342         (TARGET_INVALID_ARG_FOR_UNPROTOTYPED_FN):
34343         Put 'const char *' in braces.  Fix parameter types.
34344         (TARGET_INVALID_CONVERSION): Fix parameter types.
34345         (TARGET_INVALID_UNARY_OP, TARGET_INVALID_BINARY_OP): Likewise.
34346         (TARGET_INVALID_PARAMETER_TYPE, TARGET_INVALID_RETURN_TYPE): Likewise.
34347
34348         (TARGET_PROMOTED_TYPE): Remove braces around 'tree'.
34349         Fix argument type.
34350
34351         (TARGET_CONVERT_TO_TYPE): Remove braces around 'tree'.
34352
34353         (TARGET_ALLOCATE_STACK_SLOTS_FOR_ARGS): Remove braces around 'bool'.
34354
34355 2010-01-15  Joern Rennecke  <amylaar@spamcop.net>
34356
34357         * doc/tm.texi (TARGET_HELP): Fix return type.
34358
34359         (TARGET_PROMOTE_FUNCTION_MODE): Put 'enum machine_mode'
34360         in braces.  Fix argument types.
34361
34362         (TARGET_LIBGCC_CMP_RETURN_MODE): Use prototype.
34363
34364         (TARGET_LIBGCC_SHIFT_COUNT_MODE): Use prototype.
34365
34366         (TARGET_MS_BITFIELD_LAYOUT_P): Fix argument type.
34367
34368         (TARGET_DECIMAL_FLOAT_SUPPORTED_P): Don't put 'bool' in braces.
34369         (TARGET_FIXED_POINT_SUPPORTED_P): Likewise.
34370
34371         (TARGET_MANGLE_TYPE): Fix argument types.
34372
34373         (TARGET_IRA_COVER_CLASSES): Use prototype.
34374
34375         (TARGET_BUILTIN_SETJMP_FRAME_VALUE): Fix return type.  Use prototype.
34376
34377         (TARGET_CAN_ELIMINATE): Use identifiers for argument names.
34378
34379         (TARGET_PROMOTE_PROTOTYPES): Fix argument type.
34380
34381         (TARGET_MUST_PASS_IN_STACK): Fix argument type.
34382
34383         (TARGET_CALLEE_COPIES): Fix argument types.
34384
34385         (TARGET_SPLIT_COMPLEX_ARG): Fix argument type.
34386
34387         (TARGET_GIMPLIFY_VA_ARG_EXPR): Fix argument types.
34388
34389         (TARGET_FUNCTION_VALUE): Fix argument types.
34390
34391         (TARGET_RETURN_IN_MSB): Fix argument type.
34392
34393         (TARGET_RETURN_IN_MEMORY): Fix argument types.
34394
34395         (TARGET_ASM_CAN_OUTPUT_MI_THUNK): Fix argument types.
34396
34397         (TARGET_EXTRA_LIVE_ON_ENTRY): Fix argument type.
34398
34399         (TARGET_STRICT_ARGUMENT_NAMING): Make literal in text
34400         agree with return type.
34401
34402         (TARGET_PRETEND_OUTGOING_VARARGS_NAMED): Add Prototype.
34403
34404 2010-01-15  Jing Yu  <jingyu@google.com>
34405
34406         PR rtl-optimization/42691
34407         * combine.c (try_combine): Set changed_i3_dest to 1 when I2 and I3 set
34408         a pseudo to a constant and are merged, and adjust comments.
34409
34410 2010-01-15  Eric Botcazou  <ebotcazou@adacore.com>
34411
34412         * config/i386/sse.md (avx_vperm2f128<mode>3): Fix typo.
34413
34414 2010-01-15  Richard Guenther  <rguenther@suse.de>
34415
34416         PR middle-end/42739
34417         * tree-cfgcleanup.c (remove_forwarder_block): Move destination
34418         labels of computed or non-local gotos to the destination.
34419         * tree-cfg.c (gimple_verify_flow_info): Verify that a EH
34420         landing pad label is the first label.
34421
34422 2010-01-15  Richard Guenther  <rguenther@suse.de>
34423
34424         * tree-ssa-loop-im.c (gen_lsm_tmp_name): Fix bogus fallthru.
34425
34426 2010-01-14  Michael Meissner  <meissner@linux.vnet.ibm.com>
34427
34428         PR target/42747
34429         * config/rs6000/rs6000.md (sqrtdf2): Split into expander and insn
34430         to allow generation of the xssqrtdp instruction on power7.
34431         (sqrtdf2_fpr): Ditto.
34432
34433 2010-01-14  Jakub Jelinek  <jakub@redhat.com>
34434
34435         PR middle-end/42674
34436         * c-decl.c (finish_function): Don't emit -Wreturn-type warnings in
34437         functions with noreturn attribute.
34438
34439         PR c++/42608
34440         * varasm.c (declare_weak): Add weak attribute to decl if it
34441         doesn't have one already.
34442         (assemble_external): Only add decls to weak_decls if they also
34443         have weak attribute.
34444
34445 2010-01-14  Alexandre Oliva  <aoliva@redhat.com>
34446
34447         * var-tracking.c (var_reg_delete): Don't delete the association
34448         between REGs and values or one-part variables if the register
34449         isn't clobbered.
34450
34451 2010-01-14  Jakub Jelinek  <jakub@redhat.com>
34452
34453         PR debug/42657
34454         * tree-inline.c (copy_debug_stmt): Don't reset debug stmt just
34455         because its first operand is a non-localized variable.
34456
34457 2010-01-14  Martin Jambor  <mjambor@suse.cz>
34458
34459         PR tree-optimization/42706
34460         * tree-sra.c (encountered_recursive_call): New variable.
34461         (encountered_unchangable_recursive_call): Likewise.
34462         (sra_initialize): Initialize both new variables.
34463         (callsite_has_enough_arguments_p): New function.
34464         (scan_function): Call decl and flags check only for IPA-SRA, check
34465         whether there is a recursive call and whether it has enough arguments.
34466         (all_callers_have_enough_arguments_p): New function.
34467         (convert_callers): Look for recursive calls only when
34468         encountered_recursive_call is set.
34469         (ipa_early_sra): Bail out either if
34470         !all_callers_have_enough_arguments_p or
34471         encountered_unchangable_recursive_call.
34472
34473 2010-01-14  Alexander Monakov  <amonakov@ispras.ru>
34474
34475         * sel-sched.c: Add 2010 to copyright years.
34476         * sel-sched-ir.c: Likewise.
34477         * sel-sched-ir.h: Likewise.
34478
34479 2010-01-14  Martin Jambor  <mjambor@suse.cz>
34480
34481         PR tree-optimization/42714
34482         * tree-sra.c (sra_ipa_modify_assign): Handle incompatible-type
34483         constructors specially.
34484
34485 2010-01-14  Andi Kleen  <ak@linux.intel.com>
34486
34487         * config/i386/drivers-i386.c (detect_caches_intel):
34488         Add l2sizekb parameter and fill in.
34489         (host_detect_local_cpu): Add l2sizekb, fill in.
34490         Add Atom small cache heuristic.
34491
34492 2010-01-14  Andi Kleen  <ak@linux.intel.com>
34493
34494         * config/i386/drivers-i386.c (detect_caches_cpuid4):
34495         Add level3 parameter and fill in.
34496         (detect_caches_intel): Handle level3 cache.
34497
34498 2010-01-14  Andi Kleen  <ak@linux.intel.com>
34499
34500         * config/i386/drivers-i386.c (host_detect_local_cpu):
34501         Fix core duo detection.
34502
34503 2010-01-14  Andi Kleen  <ak@linux.intel.com>
34504
34505         * config/i386/drivers-i386.c (host_detect_local_cpu):
34506         Fix Atom detection.
34507
34508 2010-01-14  Alexander Monakov  <amonakov@ispras.ru>
34509
34510         * config/rs6000/rs6000.c (rs6000_variable_issue): Rename to...
34511         (rs6000_variable_issue_1): this.  Use...
34512         (rs6000_variable_issue): here.  Reimplement.  Print debug info.
34513
34514 2010-01-14  Alexander Monakov  <amonakov@ispras.ru>
34515
34516         * sel-sched-ir.c (sel_restore_other_notes): Rename to
34517         sel_restore_notes.  Update all callers.  Call reemit_notes
34518         for all insns.
34519
34520 2010-01-14  Andrey Belevantsev  <abel@ispras.ru>
34521
34522         PR rtl-optimization/42246
34523         * sel-sched-ir.h (get_all_loop_exits): Include exits from inner
34524         loops.
34525
34526 2010-01-14  Andrey Belevantsev  <abel@ispras.ru>
34527
34528         * sel-sched.c (compute_av_set_at_bb_end): Do not test that number of
34529         all successors is the same as number of successors in current region.
34530
34531 2010-01-14  Alexander Monakov  <amonakov@ispras.ru>
34532
34533         * sel-sched.c (maybe_emit_renaming_copy): Exit early when expression
34534         to rename is not separable.  Otherwise check that its LHS is not NULL.
34535
34536 2010-01-14  Alexander Monakov  <amonakov@ispras.ru>
34537
34538         * sel-sched.c (choose_best_reg_1):  Loop over all regs for mode.
34539
34540 2010-01-14  Alexander Monakov  <amonakov@ispras.ru>
34541
34542         * sel-sched.c (mark_unavailable_hard_regs): Do not try to search
34543         available registers when failed to discover LHS register class.
34544         Fix indentation.  Update comment.
34545
34546 2010-01-14  Andrey Belevantsev  <abel@ispras.ru>
34547             Alexander Monakov  <amonakov@ispras.ru>
34548
34549         PR rtl-optimization/42389
34550         * sel-sched.c (advance_one_cycle): Set FENCE_ISSUE_MORE
34551         to can_issue_more.
34552         (advance_state_on_fence): Likewise.
34553         (sel_target_adjust_priority): Print debug output only when
34554         sched_verbose >= 4, not 2.
34555         (get_expr_cost): Do not issue all unique insns on the next cycle.
34556         (fill_insns): Initialize can_issue_more from the value saved
34557         with the fence.
34558         * sel-sched-ir.c (flist_add): New parameter issue_more.
34559         Init FENCE_ISSUE_MORE with it.
34560         (merge_fences): Likewise.
34561         (init_fences): Update call to flist_add.
34562         (add_to_fences, add_clean_fence_to_fences)
34563         (add_dirty_fence_to_fences): Likewise.
34564         (move_fence_to_fences): Update call to merge_fences.
34565         (invoke_reorder_hooks): Do not reset can_issue_more on insns from
34566         sched groups.
34567         * sel-sched-ir.h (struct _fence): New field issue_more.
34568         (FENCE_ISSUE_MORE): New accessor macro.
34569
34570 2010-01-14  Andrey Belevantsev  <abel@ispras.ru>
34571
34572         PR rtl-optimization/42388
34573         * sel-sched-ir.c (maybe_tidy_empty_bb): Do not delete empty blocks
34574         that have no predecessors nor successors.  Do not call move_bb_info
34575         for empty blocks outside of current region.
34576
34577 2010-01-14  Alexander Monakov  <amonakov@ispras.ru>
34578
34579         PR rtl-optimization/42294
34580         * sel-sched-ir.h (struct _sel_insn_data): Update comment.
34581         * sel-sched.c (move_exprs_to_boundary): Transitively add all
34582         originators' originators.
34583
34584 2010-01-14  Alexander Monakov  <amonakov@ispras.ru>
34585
34586         PR rtl-optimization/39453
34587         PR rtl-optimization/42246
34588         * sel-sched-ir.c (considered_for_pipelining_p): Do not test
34589         for pipelining_p.
34590         (sel_add_loop_preheaders): Add preheader to last_added_blocks.
34591
34592 2010-01-14  Andrey Belevantsev  <abel@ispras.ru>
34593             Alexander Monakov  <amonakov@ispras.ru>
34594
34595         PR middle-end/42245
34596         * sel-sched-ir.c (sel_recompute_toporder): New.  Use it...
34597         (maybe_tidy_empty_bb): ... here.  Make static.  Add new
34598         argument.  Update all callers.
34599         (tidy_control_flow): ... and here.  Recompute topological order
34600         of basic blocks in region if necessary.
34601         (sel_redirect_edge_and_branch): Change return type.  Return true
34602         if topological order might have been invalidated.
34603         (purge_empty_blocks): Export and move from...
34604         * sel-sched.c (purge_empty_blocks): ... here.
34605         * sel-sched-ir.h (sel_redirect_edge_and_branch): Update prototype.
34606         (maybe_tidy_empty_bb): Delete prototype.
34607         (purge_empty_blocks): Declare.
34608
34609 2010-01-14  Andrey Belevantsev  <abel@ispras.ru>
34610
34611         PR rtl-optimization/42249
34612         * sel-sched.c (try_replace_dest_reg): When chosen register
34613         and original register is the same, do not bail out early, but
34614         still check all original insns for validity of replacing destination
34615         register.  Set EXPR_TARGET_AVAILABLE to 1 before leaving function
34616         in this case.
34617
34618 2010-01-14  Jakub Jelinek  <jakub@redhat.com>
34619
34620         PR c/42721
34621         Port from no-undefined-overflow branch:
34622         2009-03-09  Richard Guenther  <rguenther@suse.de>
34623
34624         * fold-const.c (add_double_with_sign): Fix unsigned overflow detection.
34625
34626 2010-01-14  Richard Guenther  <rguenther@suse.de>
34627
34628         PR lto/42665
34629         * gimple.c (iterative_hash_gimple_type): Avoid hashing error_mark_node.
34630
34631 2010-01-14  Ira Rosen  <irar@il.ibm.com>
34632
34633         PR tree-optimization/42709
34634         * tree-vect-slp.c (vect_get_constant_vectors): Use constant's type
34635         as scalar type in creation of constant vector operand.
34636
34637 2010-01-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34638
34639         PR testsuite/42414
34640         * Makefile.in ($(TESTSUITEDIR)/site.exp, check-%)
34641         (check-parallel-%): Match `testsuite' directory component only
34642         at the end.
34643
34644 2010-01-14  Shujing Zhao  <pearly.zhao@oracle.com>
34645
34646         PR translation/39521
34647         * gcc.c (do_spec_1): Wrapped the error and notice messages of specs
34648         strings with _().
34649
34650 2010-01-13  Richard Guenther  <rguenther@suse.de>
34651
34652         PR tree-optimization/42730
34653         * tree-ssa-ccp.c (maybe_fold_stmt_indirect): Add shortcut for
34654         offset zero.
34655
34656 2010-01-13  Steve Ellcey  <sje@cup.hp.com>
34657
34658         PR target/pr42542
34659         * config/ia64/ia64.c (ia64_expand_vecint_compare): Convert GTU to GT
34660         for V2SI by subtracting (-(INT MAX) - 1) from both operands to make
34661         them signed.
34662
34663 2010-01-13  Bernd Schmidt  <bernd.schmidt@analog.com>
34664
34665         * config/bfin/libgcc-bfin.ver: Regenerate based on current
34666         libgcc-std.ver.  Add entries for ___smulsi3_highpart and
34667         ___umulsi3_highpart.
34668
34669         * config/bfin/bfin.c (bfin_reorg): Call run_selective_scheduling
34670         rather than schedule_insns if the pass is enabled.
34671
34672 2010-01-13  Martin Jambor  <mjambor@suse.cz>
34673
34674         PR tree-optimization/42704
34675         * tree-sra.c (sra_modify_assign): Do not delete assignments to
34676         SSA_NAMEs.
34677
34678 2010-01-13  Martin Jambor  <mjambor@suse.cz>
34679
34680         PR tree-optimization/42703
34681         * tree-sra.c (analyze_access_subtree): Check that we can build a
34682         reference to the original data within the aggregate.
34683
34684 2010-01-13  Richard Guenther  <rguenther@suse.de>
34685
34686         PR tree-optimization/42705
34687         * tree-ssa-reassoc.c (build_and_add_sum): Insert stmts after labels.
34688
34689 2010-01-13  Richard Guenther  <rguenther@suse.de>
34690
34691         PR middle-end/42716
34692         * fold-const.c (fold_unary_loc): Fold INDIRECT_REFs.
34693
34694 2010-01-13  Jakub Jelinek  <jakub@redhat.com>
34695
34696         PR debug/41371
34697         * var-tracking.c (values_to_unmark): New variable.
34698         (find_loc_in_1pdv): Clear VALUE_RECURSED_INTO of values in
34699         values_to_unmark vector.  Moved body to...
34700         (find_loc_in_1pdv_1): ... this.  Don't clear VALUE_RECURSED_INTO,
34701         instead queue it into values_to_unmark vector.
34702         (vt_find_locations): Free values_to_unmark vector.
34703
34704 2010-01-13  Wolfgang Gellerich  <gellerich@de.ibm.com>
34705
34706         * config/s390/s390.c (override_options): Set
34707         default of max-pending-list-length to 256
34708
34709 2010-01-13  Richard Guenther  <rguenther@suse.de>
34710
34711         PR lto/42678
34712         * tree-pass.h (PROP_gimple_lcx): New.
34713         * cfgexpand.c (pass_expand): Require PROP_gimple_lcx.
34714         * passes.c (init_optimization_passes): Move pass_lower_complex_O0
34715         before the final cleanup_eh.
34716         (dump_properties): Dump PROP_gimple_lcx.
34717         * tree-complex.c (pass_lower_complex): Provide PROP_gimple_lcx.
34718         (tree_lower_complex_O0): Remove.
34719         (gate_no_optimization): Run if PROP_gimple_lcx is not set.
34720         (pass_lower_complex_O0): Provide PROP_gimple_lcx.  Run
34721         tree_lower_complex, schedule TODO_update_ssa.
34722         * lto-streamer-out.c (output_function): Stream the functions
34723         properties.
34724         * lto-streamer-in.c (input_function): Likewise.
34725         (lto_read_body): Do not override them here.
34726
34727 2010-01-12  Joseph Myers  <joseph@codesourcery.com>
34728
34729         PR c/42708
34730         * c-typeck.c (build_c_cast): Fold value cast to union type before
34731         wrapping it in a CONSTRUCTOR.
34732
34733 2010-01-12  Jakub Jelinek  <jakub@redhat.com>
34734
34735         PR rtl-optimization/42699
34736         * cse.c (cse_insn): Optimize lhs ZERO_EXTRACT if only CONST_INTs are
34737         involved.
34738
34739 2010-01-12  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
34740
34741         * config/mips/iris6.h (SUBTARGET_DONT_WARN_UNUSED_SPEC,
34742         SUBTARGET_WARN_UNUSED_SPEC): Move ...
34743         config/mips/iris.h (SUBTARGET_DONT_WARN_UNUSED_SPEC,
34744         SUBTARGET_WARN_UNUSED_SPEC): ... here
34745         * config/mips/iris5.h (LIBGCC_SPEC): Define.
34746
34747 2010-01-12  Julian Brown  <julian@codesourcery.com>
34748
34749         * config/arm/neon-schedgen.ml (Utils): Don't try to
34750         open missing module.
34751         (find_with_result): New.
34752
34753 2010-01-12  Jakub Jelinek  <jakub@redhat.com>
34754
34755         PR debug/42662
34756         * simplify-rtx.c (simplify_relational_operation_1): Avoid invalid rtx
34757         sharing when canonicalizing ({lt,ge}u (plus a b) b).
34758
34759         PR tree-optimization/42645
34760         * tree-inline.c (processing_debug_stmt): Move earlier.  Make static.
34761         (remap_ssa_name): If processing_debug_stmt and name wasn't found in
34762         decl_map, set processing_debug_stmt to -1 and return name without
34763         any remapping.
34764
34765 2010-01-11  Dave Korn  <dave.korn.cygwin@gmail.com>
34766
34767         * doc/install.texi (Specific#x-x-cygwin): Document minimum required
34768         binutils version, and reword target configuration description.
34769
34770 2010-01-11  Andy Hutchinson  <hutchinsonandy@gcc.gnu.org>
34771
34772         * config/avr/avr.h (LINKER_NAME): Remove.
34773
34774 2010-01-11  Janis Johnson  <janis187@us.ibm.com>
34775
34776         PR target/42416
34777         * config/rs6000/rs6000.c (rs6000_override_options): On targets
34778         that support VSX, warn for -mno-altivec if vsx is not disabled,
34779         and disable vsx.
34780
34781 2010-01-11  Joseph Myers  <joseph@codesourcery.com>
34782             Shujing Zhao  <pearly.zhao@oracle.com>
34783
34784         PR translation/42469
34785         * common.opt (Wframe-larger-than=, fcompare-debug=, fdbg-cnt=,
34786         fira-verbose=, flto-compression-level=, fplugin-arg-): Use tab
34787         character between option name and help text.
34788         * c.opt (imultilib): Likewise.
34789
34790 2010-01-10  Rafael Avila de Espindola  <espindola@google.com>
34791
34792         * lto-streamer-out.c (output_unreferenced_globals): Output static
34793         variables.
34794
34795 2010-01-10  Steven Bosscher  <steven@gcc.gnu.org>
34796
34797         PR rtl-optimization/42621
34798         * bb-reorder.c (gate_duplicated_computed_gotos): Only run if not
34799         optimizing for size.
34800         (duplicate_computed_gotos): Remove now-redundant check.
34801
34802 2010-01-10  Steve Ellcey  <sje@cup.hp.com>
34803
34804         PR target/37454
34805         * configure.ac: Save and restore LDFLAGS and LIBS
34806         * configure: Regenerate.
34807
34808 2010-01-10  Richard Guenther  <rguenther@suse.de>
34809
34810         PR middle-end/42667
34811         * builtins.c (fold_builtin_strlen): Add type argument and
34812         convert the resulting length to it.
34813         (fold_builtin_1): Adjust.
34814
34815 2010-01-09  Jakub Jelinek  <jakub@redhat.com>
34816
34817         * config/rs6000/rs6000.c (rs6000_emit_set_long_const): Shorten
34818         sequence for DImode constants >= 0x80000000UL <= 0xFFFFFFFFUL by
34819         1 insn.
34820         (num_insns_constant_wide): Adjust for that change.
34821
34822 2010-01-09  Alexandre Oliva  <aoliva@redhat.com>
34823
34824         PR debug/42631
34825         * web.c (union_defs): Add used argument, to combine uses of
34826         uninitialized regs.
34827         (entry_register): Adjust type and tests of used argument.
34828         (web_main): Widen used for new use.  Pass it to union_defs.
34829         * df.h (union_defs): Adjust prototype.
34830
34831 2010-01-09  Alexandre Oliva  <aoliva@redhat.com>
34832
34833         PR debug/42630
34834         * loop-unroll.c (referenced_in_one_insn_in_loop_p): Count debug
34835         uses in new incoming argument.  Free body.
34836         (reset_debug_uses_in_loop): New.
34837         (analyze_insn_to_expand_var): Call the latter if the former found
34838         anything.  Fix whitespace.  Reject invalid dest overlaps before
34839         going through all insns in the loop.
34840
34841 2010-01-09  Alexandre Oliva  <aoliva@redhat.com>
34842
34843         PR debug/42629
34844         * haifa-sched.c (dying_use_p): Debug insns don't count.
34845
34846 2010-01-09  Alexandre Oliva  <aoliva@redhat.com>
34847
34848         PR middle-end/42363
34849         * gimplify.c (gimplify_modify_expr): Drop lhs on noreturn calls.
34850         * tree-cfg.c (is_ctrl_altering_stmt): Don't compute flags twice.
34851         (verify_gimple_call): Reject LHS in noreturn calls.
34852
34853 2010-01-09  Alexandre Oliva  <aoliva@redhat.com>
34854
34855         PR debug/42604
34856         PR debug/42395
34857         * tree-vect-loop-manip.c (adjust_info): New type.
34858         (adjust_vec): New pointer to vector.
34859         (adjust_debug_stmts_now, adjust_vec_debug_stmts): New.
34860         (adjust_debug_stmts, adjust_phi_and_debug_stmts): New.
34861         (slpeel_update_phis_for_duplicate_loop): Use them.
34862         (slpeel_update_phi_nodes_for_guard1): Likewise.
34863         (slpeel_update_phi_nodes_for_guard2): Likewise.
34864         (slpeel_tree_peel_loop_to_edge): Likewise.
34865         (vect_update_ivs_after_vectorizer): Likewise.
34866
34867 2010-01-09  Alexandre Oliva  <aoliva@redhat.com>
34868
34869         * vec.h (DEF_VEC_ALLOC_FUNC_O_STACK): Drop excess paren.
34870         (DEF_VEC_ALLOC_FUNC_I_STACK): Likewise.
34871
34872 2010-01-09  Alexandre Oliva  <aoliva@redhat.com>
34873
34874         * config/i386/i386.c (ix86_vectorize_builtin_vec_perm): Silence
34875         bogus uninitialized warning.
34876
34877 2010-01-09  Richard Guenther  <rguenther@suse.de>
34878
34879         PR middle-end/42512
34880         * tree-scalar-evolution.c (interpret_loop_phi): Make sure
34881         the evolution is compatible with the initial condition.
34882
34883 2010-01-09  Jakub Jelinek  <jakub@redhat.com>
34884
34885         * gcc.c (process_command): Update copyright notice dates.
34886         * gcov.c (print_version): Likewise.
34887         * gcov-dump.c (print_version): Likewise.
34888         * mips-tfile.c (main): Likewise.
34889         * mips-tdump.c (main): Likewise.
34890
34891 2010-01-08  Andy Hutchinson  <hutchinsonandy@gcc.gnu.org>
34892
34893         PR target/41885
34894         * config/avr/avr.md (rotlqi3): Add CONST_INT_P check.
34895         (rotlhi3): Delete.
34896         (rotlhi3_8): Delete.
34897         (rotlsi3): Delete.
34898         (rotlsi3_8): Delete.
34899         (rotlsi3_16): Delete.
34900         (rotlsi3_24): Delete.
34901         (rotl<mode>3): New.
34902         (*rotw<mode>3): New.
34903         (*rotb<mode>3): New.
34904         * config/avr/avr.c (avr_rotate_bytes): New function.
34905         * config/avr/avr-proto.h (avr_rotate_bytes): New function.
34906
34907 2010-01-08  Steve Ellcey  <sje@cup.hp.com>
34908
34909         PR target/37454
34910         * configure.ac: Modify -rdynamic check.
34911         * configure: Regenerate.
34912
34913 2010-01-08  DJ Delorie  <dj@redhat.com>
34914
34915         * config/sh/sh.c (sh_expand_epilogue): Fix interrupt handler
34916         register popping order.
34917
34918 2010-01-08  Richard Guenther  <rguenther@suse.de>
34919
34920         PR lto/42528
34921         * c.opt (fsigned-char): Also let LTO handle this option.
34922         (funsigned-char): Likewise.
34923
34924 2010-01-07  Richard Guenther  <rguenther@suse.de>
34925
34926         * gimple.h (gss_for_code): Wrap gcc_assert in ENABLE_CHECKING.
34927         (gimple_op): Likewise.
34928         (gimple_op_ptr): Likewise.
34929         (gimple_assign_set_lhs): Remove gcc_assert.
34930         (gimple_assign_set_rhs1): Likewise.
34931         (gimple_assign_set_rhs2): Likewise.
34932         (gimple_call_set_lhs): Likewise.
34933         (gimple_call_set_fn): Likewise.
34934         (gimple_call_set_fndecl): Likewise.
34935         (gimple_call_fndecl): Likewise.
34936         (gimple_call_return_type): Likewise.
34937         (gimple_call_set_chain): Likewise.
34938         (gimple_call_num_args): Likewise.
34939         (gimple_call_set_arg): Likewise.
34940         (gimple_cond_set_code): Likewise.
34941         (gimple_cond_set_lhs): Likewise.
34942         (gimple_cond_set_rhs): Likewise.
34943         (gimple_cond_set_true_label): Likewise.
34944         (gimple_cond_set_false_label): Likewise.
34945         (gimple_label_set_label): Likewise.
34946         (gimple_goto_set_dest): Likewise.
34947         (gimple_debug_bind_get_var): Wrap gcc_assert in ENABLE_CHECKING.
34948         (gimple_debug_bind_get_value): Likewise.
34949         (gimple_debug_bind_get_value_ptr): Likewise.
34950         (gimple_debug_bind_set_var): Likewise.
34951         (gimple_debug_bind_set_value): Likewise.
34952         (gimple_debug_bind_reset_value): Likewise.
34953         (gimple_debug_bind_has_value_p): Likewise.
34954         (gimple_return_retval_ptr): Remove gcc_assert.
34955         (gimple_return_retval): Likewise.
34956         (gimple_return_set_retval): Likewise.
34957         * tree-flow.h (struct gimple_df): Remove nonlocal_all member.
34958         (safe_referenced_var_iterator): Remove.
34959         (FOR_EACH_REFERENCED_VAR_SAFE): Likewise.
34960         * tree-flow-inline.h (gimple_nonlocal_all): Remove.
34961         (fill_referenced_var_vec): Remove.
34962         (first_readonly_imm_use): Remove redundant gcc_assert.
34963         (phi_arg_index_from_use): Combine gcc_asserts.
34964         (move_use_after_head): Wrap gcc_assert in ENABLE_CHECKING.
34965         (first_imm_use_stmt): Remove redundant gcc_assert.
34966         * tree-cfg.c (verify_gimple_call): Verify function and chain
34967         operands.  Verify arguments.
34968         (verify_types_in_gimple_stmt): Verify condition code and labels.
34969
34970 2010-01-07  Richard Guenther  <rguenther@suse.de>
34971
34972         PR tree-optimization/42641
34973         * sese.c (rename_map_elt_info): Use the SSA name version, do
34974         not hash pointers.
34975
34976 2010-01-07  Jakub Jelinek  <jakub@redhat.com>
34977
34978         PR tree-optimization/42625
34979         * cgraph.c (cgraph_make_node_local): Clear DECL_COMDAT*,
34980         TREE_PUBLIC, DECL_WEAK and DECL_EXTERNAL also for same_body aliases.
34981
34982 2010-01-07  Duncan Sands  <baldrick@free.fr>
34983
34984         * Makefile.in (PLUGIN_HEADERS): Add version.h.
34985
34986 2010-01-07  Uros Bizjak  <ubizjak@gmail.com>
34987
34988         PR target/42511
34989         * ifcvt.c (dead_or_predicable): Also remove REG_EQUAL note when
34990         note itself is not function_invariant_p.
34991
34992 2009-01-07  Steven Bosscher  <steven@gcc.gnu.org>
34993
34994         * gcse.c (execute_rtl_cprop, execute_rtl_pre, execute_rtl_hoist):
34995         Do not add the DF_NOTE problem.
34996         * store-motion.c (execute_rtl_store_motion): Likewise.
34997
34998 2010-01-07  Martin Jambor  <mjambor@suse.cz>
34999
35000         PR tree-optimization/42157
35001         * tree-sra.c (compare_access_positions): Stabilize sort if both
35002         accesses have integer types, return zero immediately if they are the
35003         same.
35004
35005 2010-01-06  Richard Henderson  <rth@redhat.com>
35006
35007         PR middle-end/41883
35008         * haifa-sched.c (add_to_note_list): Merge into ...
35009         (concat_note_lists): ... here, and ...
35010         (unlink_other_notes, rm_other_notes): Merge into...
35011         (remove_notes): ... here.  Create REG_SAVE_NOTEs for
35012         NOTE_INSN_EPILOGUE_BEG.
35013
35014 2010-01-06  Richard Guenther  <rguenther@suse.de>
35015
35016         * ipa-inline.c (cgraph_decide_inlining_incrementally): Do
35017         not inline regular functions into always-inline functions.
35018
35019 2010-01-06  Nick Clifton  <nickc@redhat.com>
35020
35021         * config/rx/rx.h (enum rx_cpu_type): Add RX200.
35022         (CC1_SPEC): Issue an error message if -mcpu=rx200 and -fpu are
35023         used together.
35024         (OVERRIDE_OPTIONS): Delete.
35025         (OPTIMIZATION_OPTIONS): Define.
35026         (ALLOW_RX_FPU_INSNS): Define only in terms of -fpu option.
35027         * config/rx/rx.c (rx_handle_option): Issue an error message if
35028         -mcpu=rx200 and -fpu are used together.
35029         (rx_set_optimization_options): New function.  Issue an error
35030         message if an optimization attribute attempts to reset the FPU/
35031         math optimization pairing.
35032         * config/rx/rx-protos.h (rx_set_optimization_options): Prototype.
35033         * config/rx/rx.opt: Set the default to 32-bit doubles.
35034         * config/rx/t-rx: Add multilibs for -nofpu option.
35035         * doc/invoke.texi: Update documentation of RX options.
35036
35037 2010-01-06  Richard Guenther  <rguenther@suse.de>
35038
35039         * tree-ssa-pre.c (name_to_id): New global.
35040         (alloc_expression_id): Simplify SSA name handling.
35041         (lookup_expression_id): Likewise.
35042         (init_pre): Zero name_to_id.
35043         (fini_pre): Free it.
35044
35045 2010-01-06  Uros Bizjak  <ubizjak@gmail.com>
35046
35047         * ifcvt.c (if_convert): Output slim multiple dumps with TDF_SLIM.
35048
35049 2010-01-05  H.J. Lu  <hongjiu.lu@intel.com>
35050
35051         PR target/42542
35052         * config/i386/sse.md (smaxv2di3): New.
35053         (umaxv2di3): Likewise.
35054         (sminv2di3): Likewise.
35055         (uminv2di3): Likewise.
35056
35057 2010-01-05  Eric Botcazou  <ebotcazou@adacore.com>
35058
35059         PR target/42564
35060         * config/sparc/sparc.h (SPARC_SYMBOL_REF_TLS_P): Delete.
35061         * config/sparc/sparc-protos.h (legitimize_pic_address): Likewise.
35062         (legitimize_tls_address): Likewise.
35063         (sparc_tls_referenced_p): Likewise.
35064         * config/sparc/sparc.c (sparc_expand_move): Use legitimize_tls_address
35065         and adjust calls to legitimize_pic_address.
35066         (legitimate_constant_p) Use sparc_tls_referenced_p.
35067         (legitimate_pic_operand_p): Likewise.
35068         (sparc_legitimate_address_p): Do not use SPARC_SYMBOL_REF_TLS_P.
35069         (sparc_tls_symbol_ref_1): Delete.
35070         (sparc_tls_referenced_p): Make static, recognize specific patterns.
35071         (legitimize_tls_address): Make static, handle CONST patterns.
35072         (legitimize_pic_address): Make static, remove unused parameter and
35073         adjust recursive calls.
35074         (sparc_legitimize_address): Make static, use sparc_tls_referenced_p
35075         and adjust call to legitimize_pic_address.
35076         (sparc_output_mi_thunk): Likewise.
35077
35078 2010-01-05  Paolo Bonzini  <bonzini@gnu.rg>
35079             H.J. Lu  <hongjiu.lu@intel.com>
35080
35081         PR target/42542
35082         * config/i386/i386.c (ix86_expand_int_vcond): Convert GTU to GT
35083         for V4SI and V2DI by subtracting (-(INT MAX) - 1) from both
35084         operands to make them signed.
35085
35086         Revert:
35087         2010-01-04  H.J. Lu  <hongjiu.lu@intel.com>
35088
35089         PR target/42542
35090         * config/i386/i386.c (ix86_expand_int_vcond): Don't convert
35091         GTU to GT for V4SI and V2DI.
35092
35093         * config/i386/sse.md (umaxv4si3): Enabled for SSE4.1 and XOP.
35094         (umin<mode>3): Removed.
35095         (uminv8hi3): New.
35096         (uminv4si3): Likewise.
35097
35098 2010-01-05  Martin Jambor  <mjambor@suse.cz>
35099
35100         PR tree-optimization/42462
35101         * ipa-inline.c (compute_inline_parameters): Pass node->decl instead of
35102         current_function_decl to helper functions and macros.
35103
35104 2010-01-05  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
35105
35106         PR bootstrap/41771
35107         * flags.h: Don't include real.h.
35108         (HONOR_NANS, HONOR_SNANS, HONOR_INFINITIES, HONOR_SIGNED_ZEROS,
35109         HONOR_SIGN_DEPENDENT_ROUNDING): Move ...
35110         * real.h (HONOR_NANS, HONOR_SNANS, HONOR_INFINITIES,
35111         HONOR_SIGNED_ZEROS, HONOR_SIGN_DEPENDENT_ROUNDING): ... here.
35112         * dominance.c: Update copyright.
35113         * gimple.c (walk_gimple_op): Remove inline.
35114         * tree-ssa-reassoc.c: Include real.h.
35115         * Makefile.in (FLAGS_H): Remove $(REAL_H).
35116         (tree-ssa-reassoc.o): Depend on $(REAL_H).
35117
35118 2010-01-05  Nick Clifton  <nickc@redhat.com>
35119
35120         * config/rx/rx.c (rx_get_stack_layout): Fix allocation of second
35121         register to push into the stack frame when the accumulator has to
35122         be saved during interrupts.
35123
35124 2010-01-05  Eric Fisher  <joefoxreal@gmail.com>
35125
35126         * doc/invoke.texi: Remove the documentation about option
35127         -Wunreachable-code.
35128         * common.opt (Wunreachable-code):  Preserved for backward
35129         compatibility.
35130         * tree-cfg.c: Remove the implementation of -Wunreachable-code.
35131         * opts.c (common_handle_option): Add OPT_Wunreachable_code to
35132         the backward compatibility flag section.
35133
35134 2010-01-05  Richard Guenther  <rguenther@suse.de>
35135
35136         * tree-ssa-pre.c (bitmap_value_insert_into_set): Optimize.
35137
35138 2010-01-05  Jakub Jelinek  <jakub@redhat.com>
35139
35140         PR other/42611
35141         * cfgexpand.c (expand_one_var): Diagnose too large variables.
35142
35143         PR tree-optimization/42508
35144         * tree-sra.c (convert_callers): Check for recursive call
35145         by comparing cgraph nodes instead of decls.
35146         (modify_function): Call ipa_modify_formal_parameters also
35147         on all same_body aliases.
35148
35149         * cgraphunit.c (cgraph_materialize_all_clones): Compare
35150         cgraph nodes when checking for same_body aliases.
35151
35152 2010-01-05  Richard Guenther  <rguenther@suse.de>
35153
35154         * tree-ssa-pre.c (get_or_alloc_expr_for_name): Avoid redundant
35155         allocation and lookup.
35156         (get_or_alloc_expr_for_constant): Likewise.
35157         (phi_translate): Sink allocation.
35158
35159 2010-01-04  Richard Guenther  <rguenther@suse.de>
35160
35161         * tree-ssa-sccvn.c (get_or_alloc_constant_value_id): Allocate
35162         a new entry only if needed.
35163         * tree-ssa-dom.c (lookup_avail_expr): Likewise.
35164         * tree-ssa-coalesce.c (find_coalesce_pair): Avoid one
35165         hashtable lookup.
35166         * tree-ssa-pre.c (sorted_array_from_bitmap_set): Pre-allocate
35167         the result array.
35168         (phi_translate): Handle CONSTANTs early.
35169
35170 2010-01-04  Martin Jambor  <mjambor@suse.cz>
35171
35172         PR tree-optimization/42398
35173         * tree-sra.c (struct access): Removed flag grp_different_types.
35174         (dump_access): Do not dump the removed flag.
35175         (sort_and_splice_var_accesses): Do not set the removed flag.
35176         (sra_modify_expr): Check for type compatibility directly.
35177
35178 2010-01-04  Martin Jambor  <mjambor@suse.cz>
35179
35180         PR tree-optimization/42366
35181         * ipa-cp.c (ipcp_init_stage): Always call ipa_compute_jump_functions on
35182         edges with variable number of parameters.
35183         * ipa-prop.c (ipa_write_node_info): Stream out uses_analysis_done
35184         flag instead of asserting it.
35185         (ipa_read_node_info): Read uses_analysis_done flag.
35186
35187 2010-01-04  Richard Guenther  <rguenther@suse.de>
35188
35189         * tree-ssa-sccvn.c (vn_reference_op_compute_hash): Use
35190         iterative_hash_* as intended.
35191         (vn_reference_compute_hash): Likewise.  Simplify hashing
35192         SSA names.
35193         (vn_reference_lookup_2): Likewise.
35194         (vn_nary_op_compute_hash): Likewise.
35195         (vn_phi_compute_hash): Likewise.
35196         (expressions_equal_p): Remove strange code.
35197         * tree-ssa-pre.c (pre_expr_eq): Use gcc_unreachable ().
35198         (pre_expr_hash): Likewise.  Simplify hashing SSA names.
35199         (bitmap_insert_into_set_1): Take value-id as parameter.
35200         (add_to_value): Pass it.
35201         (bitmap_insert_into_set): Likewise.
35202         (bitmap_value_insert_into_set): Likewise.  Remove redundant check.
35203
35204 2010-01-04  Jakub Jelinek  <jakub@redhat.com>
35205
35206         PR driver/42442
35207         * gcc.c (SWITCH_IGNORE_PERMANENTLY): Define.
35208         (do_self_spec): For switches with SWITCH_IGNORE set set also
35209         SWITCH_IGNORE_PERMANENTLY.
35210         (check_live_switch): Check SWITCH_IGNORE_PERMANENTLY instead
35211         of SWITCH_IGNORE.
35212
35213 2010-01-04  Rafael Avila de Espindola  <espindola@google.com>
35214
35215         * lto-streamer-out.c (output_unreferenced_globals): Output the full
35216         tree of an unreferenced global var.
35217
35218 2010-01-04  H.J. Lu  <hongjiu.lu@intel.com>
35219
35220         PR target/42542
35221         * config/i386/i386.c (ix86_expand_int_vcond): Don't convert
35222         GTU to GT for V4SI and V2DI.
35223
35224         * config/i386/sse.md (umaxv4si3): Enabled for SSE4.1 and XOP.
35225         (umin<mode>3): Removed.
35226         (uminv8hi3): New.
35227         (uminv4si3): Likewise.
35228
35229 2010-01-04  H.J. Lu  <hongjiu.lu@intel.com>
35230
35231         PR lto/42581
35232         * collect2.c (main): Turn on trace in collect2 if -v is passed
35233         to gcc with LTO.
35234
35235 2010-01-03  Jerry Quinn  <jlquinn@optonline.net>
35236
35237         * doc/c-tree.texi (RETURN_STMT): Change to RETURN_EXPR.  Update
35238         description of expression operand.
35239
35240 2010-01-03  Andrew Jenner  <andrew@codesourcery.com>
35241
35242         * configure.ac: Add install-html to target_list for Make-hooks.
35243         * configure: Regenerate.
35244         * fortran/Make-lang.in (F95_HTMLFILES): New.
35245         (fortran.html): Use it.
35246         (fortran.install-html): New.
35247         * Makefile.in (install-html): Add lang.install-html.
35248         * java/Make-lang.in (JAVA_HTMLFILES): New.
35249         (java.html): Use it.
35250         (java.install-html): New.
35251         * objc/Make-lang.in (objc.install-html): New.
35252         * objcp/Make-lang.in (obj-c++.install-html): New.
35253         * cp/Make-lang.in (c++.install-html): New.
35254         * ada/gcc-interface/Make-lang.in (ada.install-html): New.
35255         * lto/Make-lang.in (lto.install-html): New.
35256
35257 2010-01-03  H.J. Lu  <hongjiu.lu@intel.com>
35258
35259         PR lto/42520
35260         * gcc.c (LINK_COMMAND_SPEC): Pass -m* and -v to -plugin-opt.
35261
35262 2009-01-03  Steven Bosscher  <steven@gcc.gnu.org>
35263
35264         PR rtl-optimization/41862
35265         * store-motion.c (store_killed_in_insn, compute_store_table,
35266         remove_reachable_equiv_notes, replace_store_insn,
35267         build_store_vectors): Ignore all DEBUG_INSNs.
35268
35269 2010-01-03  H.J. Lu  <hongjiu.lu@intel.com>
35270
35271         PR lto/41564
35272         * common.opt: Add dumpdir.
35273
35274         * gcc.c (cc1_options): Add "-dumpbase %B" only if -dumpbase
35275         isn't specified.
35276         (option_map): Add --dumpdir.
35277
35278         * gcc.h (DEFAULT_WORD_SWITCH_TAKES_ARG): Add dumpdir.
35279
35280         * lto-wrapper.c (run_gcc): Add -dumpbase and -dumpdir for -o.
35281
35282         * opts.c (decode_options): Try dump_dir_name first if
35283         dump_base_name isn't an absolute path.
35284         (common_handle_option): Handle OPT_dumpdir.
35285
35286         * toplev.c (dump_dir_name): New.
35287         (print_switch_values): Also ignore -dumpdir.
35288
35289         * toplev.h (dump_dir_name): New.
35290
35291 2010-01-03  Richard Guenther  <rguenther@suse.de>
35292
35293         PR tree-optimization/42589
35294         * tree-ssa-math-opts.c (execute_optimize_bswap): Allow
35295         double-word expansion of bswap32.
35296
35297 2010-01-03  Steven Bosscher  <steven@gcc.gnu.org>
35298
35299         * postreload-gcse.c (insert_expr_in_table): Replace BLOCK_NUM
35300         with BLOCK_FOR_INSN.
35301         * auto-inc-dec.c (attempt_change, get_next_ref, find_inc): Likewise.
35302         * ifcvt.c (noce_get_alt_condition, noce_try_abs,
35303         noce_process_if_block): Likewise.
35304         * gcse.c (compute_local_properties, insert_expr_in_table,
35305         insert_set_in_table, canon_list_insert, find_avail_set,
35306         pre_insert_copy_insn): Likewise.
35307
35308         * basic-block.h (BLOCK_NUM): Move from here...
35309         * sched-int.h (BLOCK_NUM): ... to here to localize it in the scheduler.
35310
35311 2010-01-03  Richard Guenther  <rguenther@suse.de>
35312
35313         PR tree-optimization/42438
35314         * tree-ssa-pre.c (struct bb_bitmap_sets): Add
35315         contains_may_not_return_call flag.
35316         (BB_MAY_NOTRETURN): New.
35317         (valid_in_sets): Trapping nary operations are not valid
35318         in blocks that may not return.
35319         (insert_into_preds_of_block): Remove check for trapping expressions.
35320         (compute_avail): Compute also BB_MAY_NOTRETURN.
35321
35322 2010-01-03  Gerald Pfeifer  <gerald@pfeifer.com>
35323
35324         * doc/invoke.texi: Add 2010 to copyright years.
35325
35326 2010-01-03  Eric Botcazou  <ebotcazou@adacore.com>
35327
35328         * config/sparc/sparc.c: Fix formatting nits.
35329
35330 2010-01-02  Gerald Pfeifer  <gerald@pfeifer.com>
35331             Alexander Monakov  <amonakov@ispras.ru>
35332
35333         * doc/invoke.texi (Optimize Options): Reword introduction a bit.
35334
35335 2010-01-02  Richard Guenther  <rguenther@suse.de>
35336
35337         PR middle-end/42577
35338         * tree-vrp.c (check_all_array_refs): Skip non-excutable blocks.
35339         (simplify_switch_using_ranges): Mark to be removed edges
35340         as non-executable.
35341
35342 2010-01-02  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
35343
35344         * config/pa/t-slibgcc-dwarf-ver (SHLIB_SOVERSION): Bump by two.
35345
35346         * collect2.c (scan_libraries): Add missing argument in call to
35347         scan_prog_file.
35348
35349 2010-01-02  Uros Bizjak  <ubizjak@gmail.com>
35350
35351         PR target/42448
35352         * config/alpha/predicates.md (aligned_memory_operand): Return false
35353         for CQImode.
35354         (unaligned_memory_operand): Return true for CQImode.
35355         * config/alpha/alpha.c (get_aligned_mem): Assert that location
35356         doesn not cross aligned SImode word boundary.
35357
35358 2010-01-02  Anatoly Sokolov  <aesok@post.ru>
35359
35360         * config/avr/avr.h (REG_OK_FOR_BASE_P, REG_OK_FOR_INDEX_P, XEXP_):
35361         Remove.
35362         * config/avr/avr-protos.h (avr_init_once, avr_optimization_options,
35363         avr_change_section, avr_reg_class_from_letter) : Remove declaration.
35364
35365 2010-01-02  Richard Guenther  <rguenther@suse.de>
35366
35367         PR lto/41597
35368         * toplev.c (compile_file): Emit LTO marker properly.  Change
35369         it to __gnu_lto_v1.
35370         * collect2.c (scan_prog_file): Adjust for changed LTO marker.
35371
35372 2010-01-01  Richard Guenther  <rguenther@suse.de>
35373
35374         PR debug/42455
35375         * tree-sra.c (analyze_all_variable_accesses): Work in DECL_UID order.
35376
35377 2010-01-01  Richard Guenther  <rguenther@suse.de>
35378
35379         PR c/42570
35380         * c-decl.c (grokdeclarator): For zero-size arrays force
35381         structural equality checks as layout_type does.
35382
35383 2010-01-01  H.J. Lu  <hongjiu.lu@intel.com>
35384
35385         * builtins.c: Update copyright to 2010.
35386
35387 2010-01-01  H.J. Lu  <hongjiu.lu@intel.com>
35388
35389         PR lto/42531
35390         * lto-streamer-out.c (produce_asm): Revert the last change.
35391         (copy_function): Likewise.
35392
35393         * lto-streamer.c (lto_get_section_name): Skip any leading
35394         asterisk in name.
35395
35396 2010-01-01  Richard Guenther  <rguenther@suse.de>
35397
35398         PR middle-end/42559
35399         * builtins.c (get_object_alignment): Do not use DECL_ALIGN
35400         for LABEL_DECLs.
35401
35402 \f
35403 Copyright (C) 2010 Free Software Foundation, Inc.
35404
35405 Copying and distribution of this file, with or without modification,
35406 are permitted in any medium without royalty provided the copyright
35407 notice and this notice are preserved.