1. 06 Jun, 2013 17 commits
    • re PR rtl-optimization/57468 (26% performance drop on important benchmark after r199298.) · 37684c46
      2013-06-06  Vladimir Makarov  <vmakarov@redhat.com>
      
      	PR rtl-optimization/57468
      	* config/i386/i386.c (inline_secondary_memory_needed): Ignore
      	spilled pseudos.
      
      From-SVN: r199764
      Vladimir Makarov committed
    • re PR c++/43652 (wrong column number for duplicate qualifier) · a322ed0c
      2013-06-06  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	PR c++/43652
      	* g++.dg/parse/error53.C: New.
      
      From-SVN: r199763
      Paolo Carlini committed
    • re PR rtl-optimization/57459 (LRA inheritance bug) · d89ae27c
      2013-06-06  Vladimir Makarov  <vmakarov@redhat.com>
      
      	PR rtl-optimization/57459
      	* lra-constraints.c (update_ebb_live_info): Fix typo for operand
      	type when setting live regs.
      
      2013-06-06  Vladimir Makarov  <vmakarov@redhat.com>
      
      	PR rtl-optimization/57459
      	* gcc.target/i386/pr57459.c: New test.
      
      From-SVN: r199762
      Vladimir Makarov committed
    • s390.opt (mlra): New option. · 3597e113
      2013-06-06  Vladimir Makarov  <vmakarov@redhat.com>
      
      	* config/s390/s390.opt (mlra): New option.
      	* config/s390/s390.c (s390_decompose_address): Check displacement
      	for all registers for LRA.
      	(s390_secondary_reload): Don't used secondary reloads for LRA.
      	(s390_lra_p): New function.
      	(TARGET_LRA_P): Define.
      	* config/s390/s390.md (*movmem_short, *clrmem_short): Change value
      	of attribute cpu_facility to zarch for the last alternative.
      	(*cmpmem_short): Ditto.
      
      From-SVN: r199754
      Vladimir Makarov committed
    • arm.c (arm_r3_live_at_start_p): New predicate. · 01037aeb
      	* config/arm/arm.c (arm_r3_live_at_start_p): New predicate.
      	(arm_compute_static_chain_stack_bytes): Use it.  Tidy up.
      	(arm_expand_prologue): Likewise.
      
      From-SVN: r199752
      Eric Botcazou committed
    • comment tweaks · a5aef1da
      From-SVN: r199750
      Jason Merrill committed
    • re PR c++/53743 (ICE when compiling firefox with PGO and LTO) · 3371a64f
      2013-06-06  Teresa Johnson  <tejohnson@google.com>
      
      	PR c++/53743
      	* ifcvt.c (find_if_case_1): Replace BB_COPY_PARTITION with assert
      	as this is now done by redirect_edge_and_branch_force.
      	* function.c (thread_prologue_and_epilogue_insns): Insert new bb after
      	barriers, and fix interaction with splitting.
      	* emit-rtl.c (try_split): Copy REG_CROSSING_JUMP notes.
      	* cfgcleanup.c (try_forward_edges): Fix early return value to properly
      	reflect changes made in the routine.
      	* bb-reorder.c (emit_barrier_after_bb): Move to cfgrtl.c.
      	(fix_up_fall_thru_edges): Remove incorrect check for bb layout order
      	since this is called in cfglayout mode, and replace partition fixup
      	with assert as that is now done by force_nonfallthru_and_redirect.
      	(add_reg_crossing_jump_notes): Handle the fact that some jumps may
      	already be marked with region crossing note.
      	(insert_section_boundary_note): Make non-static, gate on flag
      	has_bb_partition, rewrite to also check for multiple partitions.
      	(rest_of_handle_reorder_blocks): Remove call to
      	insert_section_boundary_note, now done later during free_cfg.
      	(duplicate_computed_gotos): Don't duplicate partition crossing edge.
      	* bb-reorder.h (insert_section_boundary_note): Declare.
      	* Makefile.in (cfgrtl.o): Depend on bb-reorder.h
      	* cfgrtl.c (rest_of_pass_free_cfg): If partitions exist
      	invoke insert_section_boundary_note.
      	(try_redirect_by_replacing_jump): Remove unnecessary
      	check for region crossing note.
      	(fixup_partition_crossing): New function.
      	(rtl_redirect_edge_and_branch): Fixup partition boundaries.
      	(emit_barrier_after_bb): Move here from bb-reorder.c, handle insertion
      	in non-cfglayout mode.
      	(force_nonfallthru_and_redirect): Fixup partition boundaries,
      	remove old code that tried to do this. Emit barrier correctly
      	when we are in cfglayout mode.
      	(last_bb_in_partition): New function.
      	(rtl_split_edge): Correctly fixup partition boundaries.
      	(commit_one_edge_insertion): Remove old code that tried to
      	fixup region crossing edge since this is now handled in
      	split_block, and set up insertion point correctly since
      	block may now end in a jump.
      	(verify_hot_cold_block_grouping): Guard against checking when not in
      	linearized RTL mode.
      	(rtl_verify_edges): Add checks for incorrect/missing REG_CROSSING_JUMP
      	notes.
      	(rtl_verify_flow_info_1): Move verify_hot_cold_block_grouping to
      	rtl_verify_flow_info, so not called in cfglayout mode.
      	(rtl_verify_flow_info): Move verify_hot_cold_block_grouping here.
      	(fixup_reorder_chain): Remove old code that attempted to fixup region
      	crossing note as this is now handled in force_nonfallthru_and_redirect.
      	(duplicate_insn_chain): Don't duplicate switch section notes.
      	(rtl_can_remove_branch_p): Remove unnecessary check for region crossing
      	note.
      	* basic-block.h (emit_barrier_after_bb): Declare.
      
      	* testsuite/gcc.dg/tree-prof/va-arg-pack-1.c: Cloned from c-torture, made
      	into -freorder-blocks-and-partition test.
      	* testsuite/gcc.dg/tree-prof/comp-goto-1.c: Ditto.
      	* testsuite/gcc.dg/tree-prof/20041218-1.c: Ditto.
      	* testsuite/gcc.dg/tree-prof/pr52027.c: Use -O2.
      	* testsuite/gcc.dg/tree-prof/pr50907.c: Ditto.
      	* testsuite/gcc.dg/tree-prof/pr45354.c: Ditto.
      	* testsuite/g++.dg/tree-prof/partition2.C: Ditto.
      	* testsuite/g++.dg/tree-prof/partition3.C: Ditto.
      
      From-SVN: r199744
      Teresa Johnson committed
    • arm-fixed.md (add<mode>3,usadd<mode>3,ssadd<mode>3, [...]): Adjust alternatives… · 66071e10
      arm-fixed.md (add<mode>3,usadd<mode>3,ssadd<mode>3, [...]): Adjust alternatives for arm_restrict_it.
      
      2013-06-06  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
      
      	* config/arm/arm-fixed.md (add<mode>3,usadd<mode>3,ssadd<mode>3,
      	sub<mode>3, ussub<mode>3, sssub<mode>3, arm_ssatsihi_shift,
      	arm_usatsihi): Adjust alternatives for arm_restrict_it.
      
      From-SVN: r199739
      Kyrylo Tkachov committed
    • re PR fortran/57542 ([OOP] ICE on FINALization with specific options) · 2297c8ce
      2013-06-06  Tobias Burnus  <burnus@net-b.de>
      
              PR fortran/57542
              * trans.c (gfc_build_final_call): Add se.pre to the block
              and modify the assert.
      
      2013-06-06  Tobias Burnus  <burnus@net-b.de>
      
              PR fortran/57542
              * gfortran.dg/finalize_16.f90: New.
      
      From-SVN: r199736
      Tobias Burnus committed
    • arm-ldmstm.ml: Set "predicable_short_it" to "no" where appropriate. · 0e26bf3d
      2013-06-06  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
      
      	* config/arm/arm-ldmstm.ml: Set "predicable_short_it" to "no"
      	where appropriate.
      	* config/arm/ldmstm.md: Regenerate.
      
      From-SVN: r199734
      Kyrylo Tkachov committed
    • sync.md (atomic_loaddi_1): Disable predication for arm_restrict_it. · 12b4e7ef
      2013-06-06  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
      
      	* config/arm/sync.md (atomic_loaddi_1):
      	Disable predication for arm_restrict_it.
      	(arm_load_exclusive<mode>): Likewise.
      	(arm_load_exclusivesi): Likewise.
      	(arm_load_exclusivedi): Likewise.
      	(arm_load_acquire_exclusive<mode>): Likewise.
      	(arm_load_acquire_exclusivesi): Likewise.
      	(arm_load_acquire_exclusivedi): Likewise.
      	(arm_store_exclusive<mode>): Likewise.
      	(arm_store_exclusive<mode>): Likewise.
      	(arm_store_release_exclusivedi): Likewise.
      	(arm_store_release_exclusive<mode>): Likewise.
      
      From-SVN: r199733
      Kyrylo Tkachov committed
    • lto-streamer.h (enum LTO_tags): Move LTO_tree_pickle_reference after LTO_null. · 15d16c8a
      2013-06-06  Richard Biener  <rguenther@suse.de>
      
      	* lto-streamer.h (enum LTO_tags): Move LTO_tree_pickle_reference
      	after LTO_null.
      	(lto_tag_is_tree_code_p): Adjust.
      	(lto_tag_is_gimple_code_p): Likewise.
      	(lto_gimple_code_to_tag): Likewise.
      	(lto_tag_to_gimple_code): Likewise.
      	(lto_tree_code_to_tag): Likewise.
      	(lto_tag_to_tree_code): Likewise.
      	* data-streamer.h (streamer_write_hwi_in_range): Use
      	uhwi streaming to stream the normalized range.
      	(streamer_read_hwi_in_range): Likewise.
      
      From-SVN: r199732
      Richard Biener committed
    • configure.tgt (XCFLAGS): Add -ftls-model=initial-exec for GNU/Hurd, as done for… · 48df3acb
      configure.tgt (XCFLAGS): Add -ftls-model=initial-exec for GNU/Hurd, as done for Linux-based systems.
      
      libgomp/
      	* configure.tgt (XCFLAGS): Add -ftls-model=initial-exec for
      	GNU/Hurd, as done for Linux-based systems.
      
      From-SVN: r199725
      Thomas Schwinge committed
    • ptrlock.h: Fix comment. · 492992e2
      libgomp/
      	* config/posix/ptrlock.h: Fix comment.
      
      From-SVN: r199724
      Thomas Schwinge committed
    • Disable no-section-anchors-vect-68.C for aarch64 tiny memory model. · fbb68970
      The vect/no-section-anchors-vect-68.C test case results in a binary that
      is too large for the aarch64 tiny memory model.  This patch disables the
      test case for that memory model.
      
      From-SVN: r199720
      Marcus Shawcroft committed
    • Daily bump. · e47e07de
      From-SVN: r199714
      GCC Administrator committed
  2. 05 Jun, 2013 19 commits
  3. 04 Jun, 2013 4 commits
    • lto-cgraph.c (get_alias_symbol): Remove weakref sanity check. · b9bd2075
      
      	* lto-cgraph.c (get_alias_symbol): Remove weakref sanity check.
      	(input_node, input_varpool_node): Handle correctly external same
      	body aliases.
      	* ipa.c (symtab_remove_unreachable_nodes): Do not remove external
      	nodes at ltrans stage.
      
      From-SVN: r199675
      Jan Hubicka committed
    • attr-alias.c: New testcase. · aaae719d
      	* gcc.dg/tree-ssa/attr-alias.c: New testcase.
      
      	* ipa-inline.c (update_caller_keys): Fix availability test.
      	(update_callee_keys): Likewise.
      	* symtab.c (symtab_alias_ultimate_target): Make availaiblity logic
      	to follow ELF standard.
      
      From-SVN: r199670
      Jan Hubicka committed
    • gcc/ · 107eea2c
      2013-06-03  Jürgen Urban  <JuergenUrban@gmx.de>
      
      	* config.gcc (mipsr5900-*-elf*, mipsr5900el-*-elf*, mips64r5900-*-elf*)
      	(mips64r5900el-*-elf*): New configurations.
      	* config/mips/mips-cpus.def (r5900): New processor.
      	* config/mips/mips-tables.opt: Regenerate.
      	* config/mips/mips.c (mips_rtx_cost_data): Add an R5900 entry.
      	(mips_issue_rate): Handle PROCESSOR_R5900.
      	(mips_reorg_process_insns): Force reorder mode for the R5900.
      	* config/mips/mips.h (TARGET_MIPS5900): Define.
      	(ISA_HAS_CONDMOVE, ISA_HAS_PREFETCH, ISA_HAS_HILO_INTERLOCKS): Include
      	TARGET_MIPS5900.
      	(ISA_HAS_LOAD_DELAY, ISA_HAS_XFER_DELAY, ISA_HAS_FCMP_DELAY): Exclude
      	TARGET_MIPS5900.
      	* config/mips/mips.md (processor): Add r5900.
      	(MOVECC): Disallow CCmode conditions for TARGET_MIPS5900.
      
      libgcc/
      2013-06-03  Jürgen Urban  <JuergenUrban@gmx.de>
      
      	* config.host (mipsr5900-*-elf*, mipsr5900el-*-elf*, mips64r5900-*-elf*)
      	(mips64r5900el-*-elf*): New configurations.
      
      From-SVN: r199666
      Jürgen Urban committed
    • Fix Cilk Plus tests for simulators. · ce6a6ae1
      2013-06-04  Balaji V. Iyer  <balaji.v.iyer@intel.com>
      
              * c-c++-common/cilk-plus/AN/array_test1.c (main): Replaced argc, argv
              parameters with void.
              (main2): Removed argc parameter.
              * c-c++-common/cilk-plus/AN/array_test2.c (main2): Likewise.
              (main): Replaced argc, argv parameters with void.
              * c-c++-common/cilk-plus/AN/array_test_ND.c (main): Likewise.
              (main2): Removed argc parameter.
              * c-c++-common/cilk-plus/AN/builtin_fn_custom.c (main): Replaced argc
              argv parameters with void.  Added __asm volatile to avoid optimization
              on argc, if necessary.
              * c-c++-common/cilk-plus/AN/builtin_fn_mutating (main): Likewise.
              * c-c++-common/cilk-plus/AN/builtin_func_double.c (main): Likewise.
              * c-c++-common/cilk-plus/AN/builtin_func_double2.c (main): Likewise.
              * c-c++-common/cilk-plus/AN/conditional.c (main): Likewise.
              * c-c++-common/cilk-plus/AN/exec-once.c (main): Likewise.
              * c-c++-common/cilk-plus/AN/exec-once2.c (main): Likewise.
              * c-c++-common/cilk-plus/AN/fn_ptr.c (main): Likewise.
              * c-c++-common/cilk-plus/AN/gather-scatter-errors.c (main): Likewise.
              * c-c++-common/cilk-plus/AN/gather_scatter.c (main): Likewise.
              * c-c++-common/cilk-plus/AN/misc.c (main): Likewise.
              * c-c++-common/cilk-plus/AN/parser_errors.c (main): Likewise.
              * c-c++-common/cilk-plus/AN/parser_errors2.c (main): Likewise.
              * c-c++-common/cilk-plus/AN/parser_errors3.c (main): Likewise.
              * c-c++-common/cilk-plus/AN/parser_errors4.c (main): Likewise.
              * c-c++-common/cilk-plus/AN/rank_mismatch2.c (main): Likewise.
              * c-c++-common/cilk-plus/AN/sec_implicit_ex.c (main): Likewise.
              * c-c++-common/cilk-plus/AN/sec_reduce_return.c (main): Likewise.
              * c-c++-common/cilk-plus/AN/test_builtin_return.c (main): Likewise.
              * c-c++-common/cilk-plus/AN/vla.c (main): Likewise.
              * c-c++-common/cilk-plus/AN/comma-exp.c (main): Replaced argc, argv
              parameters with void.
              (main2): Removed argc parameter.
              * c-c++-common/cilk-plus/AN/if_test.c (main2): Likewise.
              (main): Replaced argc, argv parameters with void.
              * c-c++-common/cilk-plus/AN/fp_triplet_values (main2): Replace argc,
              argv parameters with void.  Also renamed this function as main, and
              delete the existing main.
              * c-c++-common/cilk-plus/AN/sec_implicit.c (main2): Likewise.
              * c-c++-common/cilk-plus/AN/sec_implicit2.c (main2): Likewise.
              * c-c++-common/cilk-plus/AN/sec_reduce_max_min_ind.c (main2): Likewise.
      
      From-SVN: r199661
      Balaji V. Iyer committed