1. 17 Apr, 2014 24 commits
    • pass cfun to pass::execute · be55bfe6
      gcc/
      	* passes.c (opt_pass::execute): Adjust.
      	(pass_manager::execute_pass_mode_switching): Likewise.
      	(early_local_passes::execute): Likewise.
      	(execute_one_pass): Pass cfun to the pass's execute method.
      	* tree-pass.h (opt_pass::execute): Add function * argument.
      	* asan.c, auto-inc-dec.c, bb-reorder.c, bt-load.c, cfgcleanup.c,
      	cfgexpand.c, cfgrtl.c, cgraphbuild.c, combine-stack-adj.c, combine.c,
      	compare-elim.c, config/arc/arc.c, config/epiphany/mode-switch-use.c,
      	config/epiphany/resolve-sw-modes.c, config/i386/i386.c,
      	config/mips/mips.c, config/rl78/rl78.c, config/s390/s390.c,
      	config/sparc/sparc.c, cprop.c, dce.c, df-core.c, dse.c, dwarf2cfi.c,
      	except.c, final.c, function.c, fwprop.c, gcse.c, gimple-low.c,
      	gimple-ssa-isolate-paths.c, gimple-ssa-strength-reduction.c,
      	graphite.c, ifcvt.c, init-regs.c, ipa-cp.c, ipa-devirt.c,
      	ipa-inline-analysis.c, ipa-inline.c, ipa-profile.c, ipa-pure-const.c,
      	ipa-reference.c, ipa-split.c, ipa.c, ira.c, jump.c, loop-init.c,
      	lower-subreg.c, mode-switching.c, omp-low.c, postreload-gcse.c,
      	postreload.c, predict.c, recog.c, ree.c, reg-stack.c, regcprop.c,
      	reginfo.c, regrename.c, reorg.c, sched-rgn.c, stack-ptr-mod.c,
      	store-motion.c, tracer.c, trans-mem.c, tree-call-cdce.c, tree-cfg.c,
      	tree-cfgcleanup.c, tree-complex.c, tree-eh.c, tree-emutls.c,
      	tree-if-conv.c, tree-into-ssa.c, tree-loop-distribution.c, tree-nrv.c,
      	tree-object-size.c, tree-parloops.c, tree-predcom.c, tree-ssa-ccp.c,
      	tree-ssa-copy.c, tree-ssa-copyrename.c, tree-ssa-dce.c,
      	tree-ssa-dom.c, tree-ssa-dse.c, tree-ssa-forwprop.c,
      	tree-ssa-ifcombine.c, tree-ssa-loop-ch.c, tree-ssa-loop-im.c,
      	tree-ssa-loop-ivcanon.c, tree-ssa-loop-prefetch.c,
      	tree-ssa-loop-unswitch.c, tree-ssa-loop.c, tree-ssa-math-opts.c,
      	tree-ssa-phiopt.c, tree-ssa-phiprop.c, tree-ssa-pre.c,
      	tree-ssa-reassoc.c, tree-ssa-sink.c, tree-ssa-strlen.c,
      	tree-ssa-structalias.c, tree-ssa-uncprop.c, tree-ssa-uninit.c,
      	tree-ssa.c, tree-ssanames.c, tree-stdarg.c, tree-switch-conversion.c,
      	tree-tailcall.c, tree-vect-generic.c, tree-vectorizer.c, tree-vrp.c,
      	tree.c, tsan.c, ubsan.c, var-tracking.c, vtable-verify.c, web.c:
      	Adjust.
      
      From-SVN: r209482
      Trevor Saunders committed
    • pass current function to opt_pass::gate () · 1a3d085c
      gcc/
      	* passes.c (opt_pass::gate): Take function * argument.
      	(gate_all_early_local_passes): Merge into
      	(early_local_passes::gate): this.
      	(gate_all_early_optimizations): Merge into
      	(all_early_optimizations::gate): this.
      	(gate_all_optimizations): Mege into
      	(all_optimizations::gate): this.
      	(gate_all_optimizations_g): Merge into
      	(all_optimizations_g::gate): this.
      	(gate_rest_of_compilation): Mege into
      	(rest_of_compilation::gate): this.
      	(gate_postreload): Merge into
      	(postreload::gate): this.
      	(dump_one_pass): Pass cfun to the pass's gate method.
      	(execute_ipa_summary_passes): Likewise.
      	(execute_one_pass): Likewise.
      	(ipa_write_summaries_2): Likewise.
      	(ipa_write_optimization_summaries_1): Likewise.
      	(ipa_read_summaries_1): Likewise.
      	(ipa_read_optimization_summaries_1): Likewise.
      	(execute_ipa_stmt_fixups): Likewise.
      	* tree-pass.h (opt_pass::gate): Add function * argument.
      	* asan.c, auto-inc-dec.c, bb-reorder.c, bt-load.c,
      	combine-stack-adj.c, combine.c, compare-elim.c,
      	config/epiphany/resolve-sw-modes.c, config/i386/i386.c,
      	config/rl78/rl78.c, config/sh/sh_optimize_sett_clrt.cc,
      	config/sh/sh_treg_combine.cc, config/sparc/sparc.c, cprop.c, cse.c,
      	dce.c, df-core.c, dse.c, dwarf2cfi.c, except.c,  fwprop.c, gcse.c,
      	gimple-ssa-isolate-paths.c, gimple-ssa-strength-reduction.c,
      	graphite.c, ifcvt.c, init-regs.c, ipa-cp.c, ipa-devirt.c,
      	ipa-profile.c, ipa-pure-const.c, ipa-reference.c, ipa-split.c, ipa.c,
      	loop-init.c, lower-subreg.c, mode-switching.c, modulo-sched.c,
      	omp-low.c, postreload-gcse.c, postreload.c, predict.c, recog.c, ree.c,
      	reg-stack.c, regcprop.c, regrename.c, reorg.c, sched-rgn.c,
      	store-motion.c, tracer.c, trans-mem.c, tree-call-cdce.c, tree-cfg.c,
      	tree-cfgcleanup.c, tree-complex.c, tree-eh.c, tree-emutls.c,
      	tree-if-conv.c, tree-into-ssa.c, tree-loop-distribution.c,
      	tree-nrv.c, tree-parloops.c, tree-predcom.c, tree-profile.c,
      	tree-sra.c, tree-ssa-ccp.c, tree-ssa-copy.c, tree-ssa-copyrename.c,
      	tree-ssa-dce.c, tree-ssa-dom.c, tree-ssa-dse.c, tree-ssa-forwprop.c,
      	tree-ssa-ifcombine.c, tree-ssa-loop-ch.c, tree-ssa-loop-im.c,
      	tree-ssa-loop-ivcanon.c, tree-ssa-loop-prefetch.c,
      	tree-ssa-loop-unswitch.c, tree-ssa-loop.c, tree-ssa-math-opts.c,
      	tree-ssa-phiopt.c, tree-ssa-phiprop.c, tree-ssa-pre.c,
      	tree-ssa-reassoc.c, tree-ssa-sink.c, tree-ssa-strlen.c,
      	tree-ssa-structalias.c, tree-ssa-uncprop.c, tree-ssa-uninit.c,
      	tree-ssa.c, tree-stdarg.c, tree-switch-conversion.c, tree-tailcall.c,
      	tree-vect-generic.c, tree-vectorizer.c, tree-vrp.c, tsan.c, ubsan.c,
      	var-tracking.c, vtable-verify.c, web.c: Adjust.
      
      gcc/testsuite/
      	* g++.dg/plugin/dumb_plugin.c, g++.dg/plugin/selfasign.c,
      	gcc.dg/plugin/one_time_plugin.c, gcc.dg/plugin/selfasign.c: Adjust.
      
      From-SVN: r209481
      Trevor Saunders committed
    • enable -Woverloaded-virtual when available · 45887209
      gcc/
      	* configure.ac: Check for -Woverloaded-virtual and enable it if found.
      	* configure: Regenerate.
      
      From-SVN: r209480
      Trevor Saunders committed
    • remove has_gate · 0481253d
      gcc/
      	* passes.c (dump_one_pass): don't check pass->has_gate.
      	(execute_ipa_summary_passes): Likewise.
      	(execute_one_pass): Likewise.
      	(ipa_write_summaries_2): Likewise.
      	(ipa_write_optimization_summaries_1): Likewise.
      	(ipa_read_optimization_summaries_1): Likewise.
      	(execute_ipa_stmt_fixups): Likewise.
      	* tree-pass.h (pass_data::has_gate): Remove.
      	* asan.c, auto-inc-dec.c, bb-reorder.c, bt-load.c, cfgcleanup.c,
      	cfgexpand.c, cfgrtl.c, cgraphbuild.c, combine-stack-adj.c, combine.c,
      	compare-elim.c, config/arc/arc.c, config/epiphany/mode-switch-use.c,
      	config/epiphany/resolve-sw-modes.c, config/i386/i386.c,
      	config/mips/mips.c, config/rl78/rl78.c, config/s390/s390.c,
      	config/sh/sh_optimize_sett_clrt.cc, config/sh/sh_treg_combine.cc,
      	config/sparc/sparc.c, cprop.c, cse.c, dce.c, df-core.c, dse.c,
      	dwarf2cfi.c, except.c, final.c, function.c, fwprop.c, gcse.c,
      	gimple-low.c, gimple-ssa-isolate-paths.c,
      	gimple-ssa-strength-reduction.c, graphite.c, ifcvt.c, init-regs.c,
      	ipa-cp.c, ipa-devirt.c, ipa-inline-analysis.c, ipa-inline.c,
      	ipa-profile.c, ipa-pure-const.c, ipa-reference.c, ipa-split.c, ipa.c,
      	ira.c, jump.c, loop-init.c, lower-subreg.c, mode-switching.c,
      	modulo-sched.c, omp-low.c, postreload-gcse.c, postreload.c, predict.c,
      	recog.c, ree.c, reg-stack.c, regcprop.c, reginfo.c, regrename.c,
      	reorg.c, sched-rgn.c, stack-ptr-mod.c, store-motion.c, tracer.c,
      	trans-mem.c, tree-call-cdce.c, tree-cfg.c, tree-cfgcleanup.c,
      	tree-complex.c, tree-eh.c, tree-emutls.c, tree-if-conv.c,
      	tree-into-ssa.c, tree-loop-distribution.c, tree-nrv.c,
      	tree-object-size.c, tree-parloops.c, tree-predcom.c, tree-profile.c,
      	tree-sra.c, tree-ssa-ccp.c, tree-ssa-copy.c, tree-ssa-copyrename.c,
      	tree-ssa-dce.c, tree-ssa-dom.c, tree-ssa-dse.c, tree-ssa-forwprop.c,
      	tree-ssa-ifcombine.c, tree-ssa-loop-ch.c, tree-ssa-loop-im.c,
      	tree-ssa-loop-ivcanon.c, tree-ssa-loop-prefetch.c,
      	tree-ssa-loop-unswitch.c, tree-ssa-loop.c, tree-ssa-math-opts.c,
      	tree-ssa-phiopt.c, tree-ssa-phiprop.c, tree-ssa-pre.c,
      	tree-ssa-reassoc.c, tree-ssa-sink.c, tree-ssa-strlen.c,
      	tree-ssa-structalias.c, tree-ssa-uncprop.c, tree-ssa-uninit.c,
      	tree-ssa.c, tree-ssanames.c, tree-stdarg.c, tree-switch-conversion.c,
      	tree-tailcall.c, tree-vect-generic.c, tree-vectorizer.c, tree-vrp.c,
      	tree.c, tsan.c, ubsan.c, var-tracking.c, vtable-verify.c, web.c:
      	Adjust.
      
      gcc/testsuite/
      	* g++.dg/plugin/dumb_plugin.c, g++.dg/plugin/selfassign.c,
      	gcc.dg/plugin/one_time_plugin.c, gcc.dg/plugin/selfassign.c: Adjust.
      
      From-SVN: r209479
      Trevor Saunders committed
    • merge register_dump_files_1 into register_dump_files and remove more fiddling with properties · a23c217d
      gcc/
      	* pass_manager.h (pass_manager::register_dump_files_1): Remove declaration.
      	* passes.c (pass_manager::register_dump_files_1): Merge into
      	(pass_manager::register_dump_files): this, and remove its handling of
      	properties since the pass always has the properties anyway.
      	(pass_manager::pass_manager): Adjust.
      
      From-SVN: r209478
      Trevor Saunders committed
    • remove properties stuff from register_dump_files_1 · 0cd11b40
      gcc/
      	* pass_manager.h (pass_manager::register_dump_files_1): Adjust.
      	* passes.c (pass_manager::register_dump_files_1): Remove dead code
      	dealing with properties.
      	(pass_manager::register_dump_files): Adjust.
      
      From-SVN: r209477
      Trevor Saunders committed
    • re PR sanitizer/56781 (boostrap-asan failure: fixincl fails to link (missing -lasan)) · 4f148bbc
      	PR sanitizer/56781
      lto-plugin/
      	* Makefile.am (CFLAGS, LDFLAGS): Filter out -fsanitize=address.
      	(liblto_plugin_la_LIBADD, liblto_plugin_la_LDFLAGS,
      	liblto_plugin_la_DEPENDENCIES): Prefer ../libiberty/noasan/libiberty.a
      	over ../libiberty/pic/libiberty.a if the former exists.
      	* Makefile.in: Regenerated.
      libiberty/
      	* maint-tool: Also emit rule for noasan/ subdirectory.
      	* configure.ac (NOASANFLAG): Set and substitute.
      	* Makefile.in: Regenerated.
      	(NOASANFLAG): Set.
      	(all, $(TARGETLIB), mostlyclean): Handle noasan subdir like pic
      	subdir.
      	(stamp-noasandir): New goal.
      	* configure: Regenerated.
      
      From-SVN: r209476
      Jakub Jelinek committed
    • re PR sanitizer/56781 (boostrap-asan failure: fixincl fails to link (missing -lasan)) · ffe7f7a7
      	PR sanitizer/56781
      	* libtool-ldflags: Also prefix -static-lib*, -shared-lib*
      	and -B* options with -Xcompiler.
      lto-plugin/
      	* Makefile.am (LTLDFLAGS, liblto_plugin_la_LINK): New variables.
      	* Makefile.in: Regenerated.
      
      From-SVN: r209475
      Jakub Jelinek committed
    • dwarf2out: Use normal constant values in bound_info if possible. · 79896351
      	* dwarf2out.c (add_bound_info): If HOST_WIDE_INT is big enough,
      	then represent the bound as normal constant value.
      
      From-SVN: r209473
      Mark Wielaard committed
    • re PR target/60847 (x86 BMI intrinsics not recognized) · 5a65129e
      	PR target/60847
      	Forward port from 4.8 branch
      	2013-07-19  Kirill Yukhin  <kirill.yukhin@intel.com>
      
      	* config/i386/bmiintrin.h (_blsi_u32): New.
      	(_blsi_u64): Ditto.
      	(_blsr_u32): Ditto.
      	(_blsr_u64): Ditto.
      	(_blsmsk_u32): Ditto.
      	(_blsmsk_u64): Ditto.
      	(_tzcnt_u32): Ditto.
      	(_tzcnt_u64): Ditto.
      
      	* gcc.target/i386/bmi-1.c: Extend with new instrinsics.
      	Fix scan patterns.
      	* gcc.target/i386/bmi-2.c: Ditto.
      
      From-SVN: r209471
      Jakub Jelinek committed
    • re PR tree-optimization/60849 (bogus comparison result type) · 83ad208e
      2014-04-17  Richard Biener  <rguenther@suse.de>
      
      	PR middle-end/60849
      	* tree-ssa-propagate.c (valid_gimple_rhs_p): Only allow effective
      	boolean results for comparisons.
      
      	* g++.dg/opt/pr60849.C: New testcase.
      
      From-SVN: r209469
      Richard Biener committed
    • re PR c++/60836 (invalid PHI argument and ICE in verify_gimple) · 730e78b0
      2014-04-17  Richard Biener  <rguenther@suse.de>
      
      	PR tree-optimization/60836
      	* tree-vect-loop.c (vect_create_epilog_for_reduction): Force
      	initial PHI args to be gimple values.
      
      	* g++.dg/vect/pr60836.cc: New testcase.
      
      From-SVN: r209468
      Richard Biener committed
    • re PR tree-optimization/60841 (gcc: internal compiler error: Killed (program cc1) out of memory) · 1428105c
      2014-04-17   Richard Biener  <rguenther@suse.de>
      
      	PR tree-optimization/60841
      	* tree-vect-data-refs.c (vect_analyze_data_refs): Count stmts.
      	* tree-vect-loop.c (vect_analyze_loop_2): Pass down number
      	of stmts to SLP build.
      	* tree-vect-slp.c (vect_slp_analyze_bb_1): Likewise.
      	(vect_analyze_slp): Likewise.
      	(vect_analyze_slp_instance): Likewise.
      	(vect_build_slp_tree): Limit overall SLP tree growth.
      	* tree-vectorizer.h (vect_analyze_data_refs,
      	vect_analyze_slp): Adjust prototypes.
      
      	* gcc.dg/vect/pr60841.c: New testcase.
      
      From-SVN: r209467
      Richard Biener committed
    • i386.c (x86_add_stmt_cost): Fix vector cost model for Silvermont. · 170c1776
      gcc/
              * config/i386/i386.c (x86_add_stmt_cost): Fix vector cost model for
              Silvermont.
      
      From-SVN: r209466
      Evgeny Stupachenko committed
    • x86-tune.def (TARGET_SLOW_PSHUFB): New tune definition. · a4ef7f3e
      gcc/
              * config/i386/x86-tune.def (TARGET_SLOW_PSHUFB): New tune definition.
              * config/i386/i386.h (TARGET_SLOW_PSHUFB): New tune flag.
              * config/i386/i386.c (expand_vec_perm_even_odd_1): Avoid byte shuffles
              for TARGET_SLOW_PSHUFB
      
      From-SVN: r209465
      Evgeny Stupachenko committed
    • i386.c (slm_cost): Adjust vec_to_scalar_cost. · cf055f6e
      gcc/
              * config/i386/i386.c (slm_cost): Adjust vec_to_scalar_cost.
              * config/i386/i386.c (intel_cost): Ditto.
      
      From-SVN: r209464
      Evgeny Stupachenko committed
    • opts.c (OPT_fif_conversion, [...]): Disable for Og. · eeee2277
      2014-04-17  Joey Ye  <joey.ye@arm.com>
      
              * opts.c (OPT_fif_conversion, OPT_fif_conversion2): Disable for Og.
      
      From-SVN: r209463
      Joey Ye committed
    • opts.c (common_handle_option): Disable -fipa-reference coorectly with -fuse-profile. · 1c58fe29
      
      	* opts.c (common_handle_option): Disable -fipa-reference coorectly
      	with -fuse-profile.
      
      From-SVN: r209462
      Jan Hubicka committed
    • ipa-devirt.c (odr_type_d): Add field all_derivations_known. · 2d1644bf
      
      	* ipa-devirt.c (odr_type_d): Add field all_derivations_known.
      	(type_all_derivations_known_p): New predicate.
      	(type_all_ctors_visible_p): New predicate.
      	(type_possibly_instantiated_p): New predicate.
      	(get_odr_type): Compute all_derivations_known.
      	(dump_odr_type): Dump the flag.
      	(maybe_record_type): Cleanup.
      	(record_target_from_binfo): Add bases_to_consider array;
      	record bases for types w/o instances and skip CXX destructor.
      	(possible_polymorphic_call_targets_1): Add bases_to_consider
      	and consider_construction parameters; check if type may
      	have instance.
      	(get_polymorphic_call_info): Set maybe_in_construction to true
      	when we know nothing.
      	(record_targets_from_bases): Skip CXX destructors; they are
      	never called for types in construction.
      	(possible_polymorphic_call_targets): Do not record target when
      	type may not have instance.
      
      	* g++.dg/ipa/devirt-31.C: New testcase.
      
      From-SVN: r209461
      Jan Hubicka committed
    • re PR lto/60820 (ice in ctor_for_folding, at varpool.c:291) · 7c1b1692
      
      	PR lto/60820
      	* gcc.dg/lto/pr60820_0.c: New testcase.
      	* gcc.dg/lto/pr60820_1.c: New testcase.
      
      From-SVN: r209460
      Jan Hubicka committed
    • re PR ipa/60854 (inline constructor of extern template) · 789c2741
      
      	PR ipa/60854
      	* ipa.c (symtab_remove_unreachable_nodes): Mark targets of
      	external aliases alive, too.
      	* g++.dg/torture/pr60854.C: New testcase.
      
      From-SVN: r209459
      Jan Hubicka committed
    • host-linux.c (TRY_EMPTY_VM_SPACE): Change aarch64 ilp32 definition. · 9950a4f2
      2014-04-16  Andrew  Pinski  <apinski@cavium.com>
      
      	* config/host-linux.c (TRY_EMPTY_VM_SPACE): Change aarch64 ilp32
              definition.
      
      From-SVN: r209457
      Andrew Pinski committed
    • Daily bump. · 25924c61
      From-SVN: r209456
      GCC Administrator committed
  2. 16 Apr, 2014 13 commits
  3. 15 Apr, 2014 3 commits