]> git.ipfire.org Git - thirdparty/gcc.git/log
thirdparty/gcc.git
9 years agogcc/
Venkataramanan Kumar [Fri, 12 Jun 2015 10:02:25 +0000 (10:02 +0000)] 
gcc/
2015-06-12  Venkataramanan Kumar  <venkataramanan.kumar@amd.com>

        * common/config/i386/i386-common.c
        (OPTION_MASK_ISA_MWAITX_SET): New.
        (ix86_handle_option): Handle mwaitx.
        * config.gcc (i[34567]86-*-*): Add mwaitxintrin.h,
        (x86_64-*-*): Likewise.
        * config/i386/mwaitxintrin.h: New header.
        * config/i386/cpuid.h (bit_MWAITX):  Define.
        * config/i386/driver-i386.c (host_detect_local_cpu): Detect
        MWAITX support.
        * config/i386/i386.opt (mwaitx): New.
        * config/i386/i386-builtin-types.def
        (VOID_FTYPE_UNSIGNED_ UNSIGNED_UNSIGNED): New function type.
        * config/i386/i386-c.c: Define __MWAITX__ if needed.
        * config/i386/i386.c (ix86_target_string): Define -mmwaitx option.
        (PTA_MWAITX): New.
        (ix86_option_override_internal): Handle new option.
        (processor_alias_table): Added PTA_MWAITX.
        (ix86_valid_target_attribute_inner_p): Add OPT_mmwaitx.
        (ix86_builtins): Add IX86_BUILTIN_MWAITX, IX86_BUILTIN_MONITORX.
        (ix86_expand_builtin): Handle IX86_BUILTIN_MWAITX and
        IX86_BUILTIN_MONITORX  built-ins.
        * config/i386/i386.h (TARGET_MWAITX): New.
        * config/i386/i386.md (unspecv): Add UNSPEC_MWAITX and
        UNSPEC_MONITORX.
        (mwaitx):  New pattern.
        (monitorx_<mode>): New pattern.
        * config/i386/x86intrin.h: Include mwaitxintrin.h.
        * doc/extend.texi: Document monitorx and mwaitx builtins.
        * doc/invoke.texi: Document -mmwaitx option.

gcc/testsuite

2015-06-12  Venkataramanan Kumar  <venkataramanan.kumar@amd.com>

        * gcc.target/i386/monitorx.c: New.
        * gcc.target/i386/sse-12.c: Add -mmwaitx.
        * gcc.target/i386/sse-13.c: Ditto.
        * gcc.target/i386/sse-14.c: Ditto.
        * gcc.target/i386/sse-22.c: Ditto.
        * gcc.target/i386/sse-23.c: Ditto.
        * g++.dg/other/i386-2.C: Ditto.
        * g++.dg/other/i386-3.C: Ditto.

From-SVN: r224414

9 years agoUse atomics in guard.cc / remove special casing in targets.
Ramana Radhakrishnan [Fri, 12 Jun 2015 09:55:38 +0000 (09:55 +0000)] 
Use atomics in guard.cc / remove special casing in targets.

The PowerPC, AIX, Alpha, IA64  implementations of atomic_word.h are in no
way different from what can be achieved with the generic rewrite in
Patch 1 of this series - delete these.

2015-06-12  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>

        * config/cpu/alpha/atomic_word.h: Remove.
        * config/cpu/ia64/atomic_word.h: Remove.
        * config/cpu/powerpc/atomic_word.h: Remove.
        * config/os/aix/atomic_word.h: Remove.
        * configure.host (atomic_word_dir) [ia64, aix*, powerpc, alpha]:
        Use generic definition.

From-SVN: r224413

9 years agoUse atomics in guard.cc / remove special casing in targets.
Ramana Radhakrishnan [Fri, 12 Jun 2015 09:53:24 +0000 (09:53 +0000)] 
Use atomics in guard.cc / remove special casing in targets.

The PowerPC, AIX, Alpha, IA64  implementations of atomic_word.h are in no
way different from what can be achieved with the generic rewrite in
Patch 1 of this series - delete these.

2015-06-12  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>

        * config/cpu/alpha/atomic_word.h: Remove.
        * config/cpu/ia64/atomic_word.h: Remove.
        * config/cpu/powerpc/atomic_word.h: Remove.
        * config/os/aix/atomic_word.h: Remove.
        * configure.host (atomic_word_dir) [ia64, aix*, powerpc, alpha]:
        Use generic definition.

From-SVN: r224412

9 years agoUse atomics in guard.cc.
Ramana Radhakrishnan [Fri, 12 Jun 2015 09:49:41 +0000 (09:49 +0000)] 
Use atomics in guard.cc.

This provides proper definitions for _GLIBCXX_READ_MEM_BARRIER and
_GLIBCXX_WRITE_MEM_BARRIER, rewrites the guards in terms of proper
atomic extensions and removes internal uses of
_GLIBCXX_READ_MEM_BARRIER and _GLIBCXX_WRITE_MEM_BARRIER and replaces
them with equivalent atomics.

2015-06-12  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>

PR target/66200
PR c++/66192
* * config/cpu/generic/atomic_word.h (_GLIBCXX_READ_MEM_BARRIER): Define
        (_GLIBCXX_WRITE_MEM_BARRIER): Likewise
        * include/bits/shared_ptr_base.h: Use ACQ_REL barrier.
        * include/ext/atomicity.h: Likewise.
        * include/tr1/shared_ptr.h: Likewise.
        * libsupc++/guard.cc (__test_and_acquire): Rewrite with atomics.
        Update comment.
        (__set_and_release): Likewise.
        * testsuite/20_util/shared_ptr/cons/43820_neg.cc (test01): Adjust for
line numbers.
        * testsuite/20_util/shared_ptr/cons/void_neg.cc: Likewise.
        * testsuite/tr1/2_general_utilities/shared_ptr/cons/43820_neg.cc:
Likewise.

From-SVN: r224411

9 years agoemit-rtl.c (need_atomic_barrier_p): Mask model with MEMMODEL_BASE_MASK.
Uros Bizjak [Fri, 12 Jun 2015 09:06:27 +0000 (11:06 +0200)] 
emit-rtl.c (need_atomic_barrier_p): Mask model with MEMMODEL_BASE_MASK.

* emit-rtl.c (need_atomic_barrier_p): Mask model with
MEMMODEL_BASE_MASK.  Remove MEMMODEL_SYNC_* cases.

From-SVN: r224410

9 years agolto-lang.c (lto_type_for_size): Include intN types.
DJ Delorie [Fri, 12 Jun 2015 05:59:31 +0000 (01:59 -0400)] 
lto-lang.c (lto_type_for_size): Include intN types.

* lto-lang.c (lto_type_for_size): Include intN types.
(lto_type_for_mode): Likewise.

From-SVN: r224408

9 years agodbxout.c (xcoff_debug_hooks): Provide a function for register_main_translation_unit...
David Edelsohn [Fri, 12 Jun 2015 00:32:08 +0000 (00:32 +0000)] 
dbxout.c (xcoff_debug_hooks): Provide a function for register_main_translation_unit hook.

* dbxout.c (xcoff_debug_hooks): Provide a function for
register_main_translation_unit hook.

From-SVN: r224407

9 years agoDaily bump.
GCC Administrator [Fri, 12 Jun 2015 00:16:16 +0000 (00:16 +0000)] 
Daily bump.

From-SVN: r224406

9 years agore PR sanitizer/65479 (sanitizer stack trace missing frames past #0 on powerpc64)
Martin Sebor [Fri, 12 Jun 2015 00:01:50 +0000 (00:01 +0000)] 
re PR sanitizer/65479 (sanitizer stack trace missing frames past #0 on powerpc64)

2015-06-11  Martin Sebor  <msebor@redhat.com>

PR sanitizer/65479
* dwarf.c (struct line): Add new field idx.
(line_compare): Use it.
(add_line): Set it.
(read_line_info): Reset it.

From-SVN: r224402

9 years agors6000.c (rs6000_pre_atomic_barrier): Remove SYNC variants cases from switch.
David Edelsohn [Fri, 12 Jun 2015 00:00:53 +0000 (00:00 +0000)] 
rs6000.c (rs6000_pre_atomic_barrier): Remove SYNC variants cases from switch.

       * config/rs6000/rs6000.c (rs6000_pre_atomic_barrier): Remove SYNC
        variants cases from switch.
        (rs6000_post_atomic_barrier): Same.
        (rs6000_expand_atomic_compare_and_swap): Use memmodel_base.
        (rs6000_expand_atomic_exchange): Same.
        (rs6000_expand_atomic_op): Same.
        * config/rs6000/sync.md (mem_thread_fence): Use memodel_base. Remove
        SYNC variants cases from switch.
        (atomic_load): Same.
        (atomic_store): Same.

From-SVN: r224401

9 years agotuple (__is_tuple_like_impl): Disambiguate array in debug and profile modes.
Jonathan Wakely [Thu, 11 Jun 2015 23:22:19 +0000 (00:22 +0100)] 
tuple (__is_tuple_like_impl): Disambiguate array in debug and profile modes.

* include/std/tuple (__is_tuple_like_impl): Disambiguate array in
debug and profile modes.
* testsuite/25_algorithms/headers/algorithm/synopsis.cc: Adjust tests
for swap in C++11 and later.

From-SVN: r224397

9 years agopa.c (pa_output_global_address): Handle LABEL_REF plus CONST_INT for goto.
John David Anglin [Thu, 11 Jun 2015 23:20:33 +0000 (23:20 +0000)] 
pa.c (pa_output_global_address): Handle LABEL_REF plus CONST_INT for goto.

* config/pa/pa.c (pa_output_global_address): Handle LABEL_REF plus
CONST_INT for goto.

From-SVN: r224396

9 years agostringop-2.c: Fix ifdef __mips.
Steve Ellcey [Thu, 11 Jun 2015 21:53:44 +0000 (21:53 +0000)] 
stringop-2.c: Fix ifdef __mips.

2015-06-11  Steve Ellcey  <sellcey@imgtec.com>

* gcc.dg/tree-prof/stringop-2.c: Fix ifdef __mips.

From-SVN: r224394

9 years agore PR bootstrap/66448 (Bootstrap fails on darwin after r224161)
Aldy Hernandez [Thu, 11 Jun 2015 20:46:46 +0000 (20:46 +0000)] 
re PR bootstrap/66448 (Bootstrap fails on darwin after r224161)

PR bootstrap/66448
* dwarf2out.c (check_die): Check for common duplicate attributes.
(add_location_or_const_value_attribute): Do not add duplicate
attributes.
(gen_formal_parameter_die): Do not add DW_AT_artificial the second
time around.
(gen_struct_or_union_type_die): Bail early if TREE_ASM_WRITTEN.
(gen_type_die_with_usage): Call check_die.
(dwarf2out_decl): Only call check_die() when ENABLE_CHECKING.

From-SVN: r224393

9 years agodwarf2out.c (prune_unused_types): Handle unused top-level limbo dies.
Jason Merrill [Thu, 11 Jun 2015 17:33:40 +0000 (13:33 -0400)] 
dwarf2out.c (prune_unused_types): Handle unused top-level limbo dies.

* dwarf2out.c (prune_unused_types): Handle unused top-level limbo
dies.

From-SVN: r224391

9 years ago* match.pd ((x & y) ^ (x | y)): Don't check for single_use.
Marek Polacek [Thu, 11 Jun 2015 17:18:34 +0000 (17:18 +0000)] 
* match.pd ((x & y) ^ (x | y)): Don't check for single_use.

From-SVN: r224390

9 years agoFix misplaced ChangeLog entries
Pierre-Marie de Rodat [Thu, 11 Jun 2015 16:03:47 +0000 (16:03 +0000)] 
Fix misplaced ChangeLog entries

From-SVN: r224387

9 years agore PR bootstrap/66252 (bootstrap comparison failures on sparc-linux)
Eric Botcazou [Thu, 11 Jun 2015 15:56:30 +0000 (15:56 +0000)] 
re PR bootstrap/66252 (bootstrap comparison failures on sparc-linux)

PR bootstrap/66252
* config/sparc/sparc.c (hard_regno_mode_classes): Add ??? comment.
* config/sparc/sparc.md (zero_extendsidi2_insn_sp32): Use single order.
(*addx_extend_sp32): Fix pasto.
(*subx_extend): Rename into...
(*subx_extend_sp32): ...this.
(*adddi3_extend_sp32): Add earlyclobber.
(*subdi3_insn_sp32): Likewise.
(*subdi3_extend_sp32): Likewise.
(*and_not_di_sp32): Likewise.
(*or_not_di_sp32): Likewise.
(*xor_not_di_sp32): Likewise.
(*negdi2_sp32): Likewise.
(*one_cmpldi2_sp32): Likewise.

From-SVN: r224384

9 years agore PR fortran/66079 (memory leak with source allocation in internal subprogram)
Paul Thomas [Thu, 11 Jun 2015 15:49:32 +0000 (15:49 +0000)] 
re PR fortran/66079 (memory leak with source allocation in internal subprogram)

2015-06-11  Paul Thomas  <pault@gcc.gnu.org>

PR fortran/66079
* trans-expr.c (gfc_conv_procedure_call): Allocatable scalar
function results must be freed and nullified after use. Create
a temporary to hold the result to prevent duplicate calls.
* trans-stmt.c (gfc_trans_allocate): Rename temporary variable
as 'source'. Deallocate allocatable components of non-variable
'source's.

2015-06-11  Paul Thomas  <pault@gcc.gnu.org>

PR fortran/66079
* gfortran.dg/allocatable_scalar_13.f90: New test

From-SVN: r224383

9 years agore PR c++/66445 (ICE with lambda in stmt expression in a template)
Jason Merrill [Thu, 11 Jun 2015 15:45:08 +0000 (11:45 -0400)] 
re PR c++/66445 (ICE with lambda in stmt expression in a template)

PR c++/66445
* constexpr.c (potential_constant_expression_1): Handle a
DECL_EXPR of TYPE_DECL.

From-SVN: r224382

9 years agore PR c++/66450 ([C++11][constexpr] Issues when delegating implicit copy constructor...
Jason Merrill [Thu, 11 Jun 2015 15:45:01 +0000 (11:45 -0400)] 
re PR c++/66450 ([C++11][constexpr] Issues when delegating implicit copy constructor in constexpr function)

PR c++/66450
* constexpr.c (cxx_eval_store_expression): Avoid messing up outer
ctx->ctor.

From-SVN: r224381

9 years agoRestore DW_AT_abstract_origin for cross-unit call sites
Pierre-Marie de Rodat [Thu, 11 Jun 2015 12:40:10 +0000 (12:40 +0000)] 
Restore DW_AT_abstract_origin for cross-unit call sites

PR debug/66503

gcc/ChangeLog:
* debug.h (struct gcc_debug_hooks): Add a
register_main_translation_unit hook.
* debug.c (do_nothing_debug_hooks): Provide a function for this
new hook.
* dbxout.c (dbx_debug_hooks): Likewise.
* sdbout.c (sdb_debug_hooks): Likewise.
* vmsdbgout.c (vmsdbg_debug_hooks): Likewise.
* dwarf2out.c (main_translation_unit): New global variable.
(dwarf2out_register_main_translation_unit): New function
implementing the new hook.
(dwarf2_debug_hooks): Assign
dwarf2out_register_main_translation_unit to this new hook.
(dwarf2out_init): Associate any main translation unit to
comp_unit_die ().
* c/c-decl.c (pop_scope): Register the main translation unit
through the new debug hook.
* cp/decl.c (cxx_init_decl_processing): Likewise.

gcc/ada/ChangeLog:
* gcc-interface/utils.c (get_global_context): Register the main
translation unit through the new debug hook.

gcc/fortran/ChangeLog:
* f95-lang.c (gfc_create_decls): Register the main translation
unit through the new debug hook.

From-SVN: r224371

9 years agomatch.pd ((x & y) ^ (x | y) -> x ^ y): New pattern.
Marek Polacek [Thu, 11 Jun 2015 12:37:37 +0000 (12:37 +0000)] 
match.pd ((x & y) ^ (x | y) -> x ^ y): New pattern.

* match.pd ((x & y) ^ (x | y) -> x ^ y): New pattern.

* gcc.dg/fold-xor-3.c: New test.

From-SVN: r224370

9 years ago* match.pd: Use single_use throughout.
Marek Polacek [Thu, 11 Jun 2015 10:42:44 +0000 (10:42 +0000)] 
* match.pd: Use single_use throughout.

From-SVN: r224368

9 years ago[ARM] Restrict MAX_CONDITIONAL_EXECUTE when -mrestrict-it is in place
Kyrylo Tkachov [Thu, 11 Jun 2015 10:01:11 +0000 (10:01 +0000)] 
[ARM] Restrict MAX_CONDITIONAL_EXECUTE when -mrestrict-it is in place

* config/arm/arm.c (arm_option_params_internal): When optimising
for speed set max_insns_skipped when arm_restrict_it.

* gcc.target/arm/short-it-ifcvt-1.c: New test.
* gcc.target/arm/short-it-ifcvt-2.c: Likewise.

From-SVN: r224367

9 years agos/recogniwed/recognized
Christian Bruel [Thu, 11 Jun 2015 09:06:26 +0000 (11:06 +0200)] 
s/recogniwed/recognized

From-SVN: r224366

9 years agoAdd ARM/thumb pragma target
Christian Bruel [Thu, 11 Jun 2015 08:51:17 +0000 (10:51 +0200)] 
Add ARM/thumb pragma target

PR target/52144
* config/arm/arm-c.c (arm_cpu_cpp_builtins): Conditionally define
 macros in ...
(arm_cpu_builtins): New function.
(arm_pragma_target_parse): Call arm_cpu_builtins.
* config/arm/arm-protos.h (arm_cpu_builtins): Declare.
(arm_register_target_pragmas): Likewise.
* config/arm/arm.h (REGISTER_TARGET_PRAGMAS):
 Call arm_register_target_pragmas.
* config/arm/arm-c.c (arm_register_target_pragmas): New function.
(arm_pragma_target_parse): Likewise.

PR target/52144
* gcc.target/arm/pragma_attribute.c: New test.

From-SVN: r224365

9 years agoDaily bump.
GCC Administrator [Thu, 11 Jun 2015 00:16:17 +0000 (00:16 +0000)] 
Daily bump.

From-SVN: r224363

9 years agosh.md (tstsi_t): Add '?' modifier to 'r' alternative of the 2nd operand to fix failur...
Kaz Kojima [Wed, 10 Jun 2015 21:45:37 +0000 (21:45 +0000)] 
sh.md (tstsi_t): Add '?' modifier to 'r' alternative of the 2nd operand to fix failures for...

* config/sh/sh.md (tstsi_t): Add '?' modifier to 'r' alternative of
  the 2nd operand to fix failures for gcc.target/sh/pr49263-2.c with -mlra.

From-SVN: r224349

9 years agomangle-regparm.C (dg-optiond): Add -save-temps.
Uros Bizjak [Wed, 10 Jun 2015 18:28:58 +0000 (20:28 +0200)] 
mangle-regparm.C (dg-optiond): Add -save-temps.

* g++.dg/abi/mangle-regparm.C (dg-optiond): Add -save-temps.

From-SVN: r224341

9 years agore PR target/66473 (ICE: in extract_insn, at recog.c:2343 (unrecognizable insn) with...
Uros Bizjak [Wed, 10 Jun 2015 18:23:31 +0000 (20:23 +0200)] 
re PR target/66473 (ICE: in extract_insn, at recog.c:2343 (unrecognizable insn) with -mavx512f)

PR target/66473
* config/i386/i386.c (ix86_expand_vector_set): Use gen_int_mode
to prepare mask operand for AVX512 modes.

testsuite/ChangeLog:

PR target/66473
* gcc.target/i386/pr66473.c: New test.

From-SVN: r224340

9 years agore PR target/66474 (Document the use of %x in powerpc asm statements)
Michael Meissner [Wed, 10 Jun 2015 16:51:49 +0000 (16:51 +0000)] 
re PR target/66474 (Document the use of %x in powerpc asm statements)

2015-06-10  Michael Meissner  <meissner@linux.vnet.ibm.com>

PR target/66474
* doc/md.texi (Machine Constraints): Document that on the PowerPC
if you use a constraint that targets a VSX register, you must use
%x<n> in the template.

From-SVN: r224332

9 years agore PR c++/66289 ("error: ambiguous template instantiation" with partial specializatio...
Jason Merrill [Wed, 10 Jun 2015 15:17:57 +0000 (11:17 -0400)] 
re PR c++/66289 ("error: ambiguous template instantiation" with partial specialization defined in terms of alias template)

PR c++/66289
* cp-tree.h (TEMPLATE_DECL_COMPLEX_ALIAS_P): New.
* pt.c (push_template_decl_real): Set it.
(dependent_alias_template_spec_p): Use it.
(dependent_type_p_r): Use dependent_alias_template_spec_p.
(uses_all_template_parms_data, uses_all_template_parms_r)
(complex_alias_template_p): New.
(get_template_parm_index): Handle BOUND_TEMPLATE_TEMPLATE_PARM.

From-SVN: r224331

9 years agoxtensa: implement trap pattern
Max Filippov [Wed, 10 Jun 2015 15:07:40 +0000 (15:07 +0000)] 
xtensa: implement trap pattern

2015-06-10  Max Filippov  <jcmvbkbc@gmail.com>
gcc/
* config/xtensa/xtensa.h (TARGET_DEBUG): New definition.
* config/xtensa/xtensa.md (define_attr "type"): New type "trap".
(define_insn "trap"): New definition.

From-SVN: r224330

9 years agotree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Split out from ...
Richard Biener [Wed, 10 Jun 2015 10:39:31 +0000 (10:39 +0000)] 
tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Split out from ...

2015-06-10  Richard Biener  <rguenther@suse.de>

* tree-vect-slp.c (vect_attempt_slp_rearrange_stmts): Split
out from ...
(vect_supported_load_permutation_p): ... here.  Handle
supportable permutations in reductions.
* tree-vect-stmts.c (vectorizable_load): Handle SLP permutations
for vectorizing strided group loads.

From-SVN: r224324

9 years agore PR target/66470 (TLS ICE due to ix86_split_long_move)
Jakub Jelinek [Wed, 10 Jun 2015 09:12:53 +0000 (11:12 +0200)] 
re PR target/66470 (TLS ICE due to ix86_split_long_move)

PR target/66470
* config/i386/i386.c (ix86_split_long_move): For collisions
involving direct tls segment refs, move the UNSPEC_TP possibly
wrapped in ZERO_EXTEND out of the address for lea, to each of
the memory loads.

* gcc.dg/tls/pr66470.c: New test.
* gcc.target/i386/pr66470.c: New test.

From-SVN: r224319

9 years agoUse dmb ish instead of dmb sy for ARM.
Ramana Radhakrishnan [Wed, 10 Jun 2015 08:56:07 +0000 (08:56 +0000)] 
Use dmb ish instead of dmb sy for ARM.

2015-06-10  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>

* config/arm/sync.md (*memory_barrier): Use dmb ish instead of
dmb sy. Adjust tabs.

From-SVN: r224317

9 years agoFix build for ENABLE_OFFLOADING in expand_omp_target
Tom de Vries [Wed, 10 Jun 2015 08:20:50 +0000 (08:20 +0000)] 
Fix build for ENABLE_OFFLOADING in expand_omp_target

2015-06-10  Tom de Vries  <tom@codesourcery.com>

* omp-low.c (expand_omp_target): Remove duplicate declaration of node.

From-SVN: r224316

9 years agoFix BITMAP identifier clash.
Martin Liska [Wed, 10 Jun 2015 07:57:34 +0000 (09:57 +0200)] 
Fix BITMAP identifier clash.

PR bootstrap/66471
* mem-stats-traits.h (enum mem_alloc_origin): Add _ORIGIN suffix for
all enum values in mem_alloc_origin.
* alloc-pool.c (dump_alloc_pool_statistics): Use newly changed enum
name.
* alloc-pool.h (pool_allocator::pool_allocator): Likewise.
* bitmap.c (bitmap_register): Likewise.
(dump_bitmap_statistics): Likewise.
* ggc-common.c (dump_ggc_loc_statistics): Likewise.
(ggc_record_overhead): Likewise.
* hash-map.h: Likewise.
* hash-set.h: Likewise.
* hash-table.c (void dump_hash_table_loc_statistics): Likewise.
* hash-table.h: Likewise.
* vec.c (vec_prefix::register_overhead): Likewise.
(vec_prefix::release_overhead): Likewise.
(dump_vec_loc_statistics): Likewise.

From-SVN: r224315

9 years agoAdd ARM/thumb attribute target
Christian Bruel [Wed, 10 Jun 2015 07:50:59 +0000 (09:50 +0200)] 
Add ARM/thumb attribute target

PR target/52144

* config/arm/arm.opt (THUMB, arm_restrict_it, inline_asm_unified): Save.
* config/arm/arm-protos.h (arm_valid_target_attribute_tree): Declare.
(arm_reset_previous_fndecl, arm_change_mode_p): Likewise.
* config/arm/arm.h (SWITCHABLE_TARGET): Define.
* config/arm/arm.c (arm_reset_previous_fndecl): New functions.
(arm_valid_target_attribute_tree, arm_change_mode_p): Likewise.
(arm_valid_target_attribute_p): Likewise.
(arm_set_current_function, arm_can_inline_p): Likewise.
(arm_valid_target_attribute_rec): Likewise.
(arm_previous_fndecl): New variable.
(TARGET_SET_CURRENT_FUNCTION, TARGET_OPTION_VALID_ATTRIBUTE_P): Define.
(TARGET_CAN_INLINE_P): Define.
(arm_asm_trampoline_template): Emit mode.
(arm_file_start): Don't set unified syntax.
(arm_declare_function_name): Set unified syntax and mode.
(arm_option_override): Init target_option_default_node.
and target_option_current_node.
* config/arm/arm.md (*call_value_symbol): Set mode when possible.
(*call_symbol): Likewise.
* doc/extend.texi: Document ARM/Thumb target attribute.
* doc/invoke.texi: Likewise.

* gcc.target/arm/attr_arm.c: New test
* gcc.target/arm/attr_arm-err.c: New test
* gcc.target/arm/attr_thumb.c: New test
* gcc.target/arm/attr_thumb-static.c: New test

From-SVN: r224314

9 years agoHandle aarch64_guard1.C test
Ramana Radhakrishnan [Wed, 10 Jun 2015 07:43:31 +0000 (07:43 +0000)] 
Handle aarch64_guard1.C test

Sorry about missing this hunk in the original submission, was in my tree but I hadn't spotted this as I was playing between the original AArch64 TARGET_RELAXED_ORDER and this patch.

Applied as obvious.

2015-06-09  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>

PR target/66200
PR target/66428
PR c++/66192
* g++.dg/abi/aarch64_guard1.C: Adjust test.

From-SVN: r224313

9 years ago[Patch testsuite obvious] gcc.target/arm/pr65710.c should not unconditionally set...
James Greenhalgh [Wed, 10 Jun 2015 07:41:26 +0000 (07:41 +0000)] 
[Patch testsuite obvious] gcc.target/arm/pr65710.c should not unconditionally set -mfloat-abi=soft

gcc/testsuite/

* gcc.target/arm/pr65710.c: Do not override -mfloat-abi directives
passed by the testsuite driver.

From-SVN: r224312

9 years agoRevert "[PR64164] Drop copyrename, use coalescible partition as base when optimizing."
Alexandre Oliva [Wed, 10 Jun 2015 00:37:39 +0000 (00:37 +0000)] 
Revert "[PR64164] Drop copyrename, use coalescible partition as base when optimizing."

This reverts commit c66acc7cedd89bfd22124caec44b8427c9082dac.

Conflicts:
gcc/ChangeLog
gcc/testsuite/ChangeLog

From-SVN: r224310

9 years agoDaily bump.
GCC Administrator [Wed, 10 Jun 2015 00:16:15 +0000 (00:16 +0000)] 
Daily bump.

From-SVN: r224309

9 years agoMake-lang.in (jit.install-common): Install headers using INSTALL_DATA.
Matthias Klose [Tue, 9 Jun 2015 21:34:18 +0000 (21:34 +0000)] 
Make-lang.in (jit.install-common): Install headers using INSTALL_DATA.

2015-06-09  Matthias Klose  <doko@ubuntu.com>

        * Make-lang.in (jit.install-common): Install headers using INSTALL_DATA.

From-SVN: r224305

9 years agoMark offloaded functions as parallelized
Tom de Vries [Tue, 9 Jun 2015 21:14:46 +0000 (21:14 +0000)] 
Mark offloaded functions as parallelized

2015-06-09  Tom de Vries  <tom@codesourcery.com>

PR tree-optimization/65460
* omp-low.c (expand_omp_target): Set parallelized_function on
cgraph_node for child_fn.

From-SVN: r224303

9 years agoMark function parallelized_function before add_new_function
Tom de Vries [Tue, 9 Jun 2015 21:14:38 +0000 (21:14 +0000)] 
Mark function parallelized_function before add_new_function

2015-06-09  Tom de Vries  <tom@codesourcery.com>

* omp-low.c (finalize_task_copyfn, expand_omp_taskreg): Mark function
parallelized_function before add_new_function.

From-SVN: r224302

9 years agogcc-plugin.h: Move decls to plugin.h and include it.
Andrew MacLeod [Tue, 9 Jun 2015 17:53:24 +0000 (17:53 +0000)] 
gcc-plugin.h: Move decls to plugin.h and include it.

* gcc-plugin.h: Move decls to plugin.h and include it.
* plugin.h: Relocate decls from gcc-plugin.h
* ggc-page.c: Include required header files.
* passes.c: Likewise.
* cgraphunit.c: Likewise.

From-SVN: r224293

9 years agoDR 1467 PR c++/51747
Jason Merrill [Tue, 9 Jun 2015 16:56:12 +0000 (12:56 -0400)] 
DR 1467 PR c++/51747

DR 1467
PR c++/51747
* typeck2.c (digest_init_r): Replace previous change with
gcc_unreachable.

From-SVN: r224289

9 years agoHandle location in expand_ifn_va_arg_1
Tom de Vries [Tue, 9 Jun 2015 15:46:30 +0000 (15:46 +0000)] 
Handle location in expand_ifn_va_arg_1

2015-06-09  Tom de Vries  <tom@codesourcery.com>

* tree-stdarg.c (expand_ifn_va_arg_1): Handle location.

* gcc.target/i386/vararg-loc.c: New test.

From-SVN: r224288

9 years agore PR c++/66387 (ICE in make_decl_rtl with lambda)
Jason Merrill [Tue, 9 Jun 2015 15:27:01 +0000 (11:27 -0400)] 
re PR c++/66387 (ICE in make_decl_rtl with lambda)

PR c++/66387
* semantics.c (process_outer_var_ref): Make sure the value is
actually constant before returning it.
* typeck.c (cp_build_array_ref): Allow subscripting non-lvalue
array.

From-SVN: r224287

9 years agore PR c++/65815 (brace elision doesn't work in NSDMI)
Paolo Carlini [Tue, 9 Jun 2015 14:59:08 +0000 (14:59 +0000)] 
re PR c++/65815 (brace elision doesn't work in NSDMI)

/cp
2015-06-09  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/65815
* typeck2.c (digest_nsdmi_init): On aggregates use reshape_init.
* init.c (expand_default_init): Likewise.

/testsuite
2015-06-09  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/65815
* g++.dg/cpp0x/nsdmi-aggr1.C: New.
* g++.dg/cpp0x/mem-init-aggr1.C: Likewise.

From-SVN: r224286

9 years agore PR bootstrap/66448 (Bootstrap fails on darwin after r224161)
Jason Merrill [Tue, 9 Jun 2015 14:51:30 +0000 (10:51 -0400)] 
re PR bootstrap/66448 (Bootstrap fails on darwin after r224161)

PR bootstrap/66448
* toplev.c (check_global_declaration): Don't warn about a clone.

From-SVN: r224285

9 years agore PR tree-optimization/66299 (more optimize opportunity)
Marek Polacek [Tue, 9 Jun 2015 14:24:04 +0000 (14:24 +0000)] 
re PR tree-optimization/66299 (more optimize opportunity)

PR tree-optimization/66299
* match.pd ((CST1 << A) == CST2 -> A == ctz (CST2) - ctz (CST1)
((CST1 << A) != CST2 -> A != ctz (CST2) - ctz (CST1)): New
patterns.

* gcc.dg/pr66299-1.c: New test.
* gcc.dg/pr66299-2.c: New test.
* gcc.dg/pr66299-3.c: New test.

From-SVN: r224283

9 years agore PR c++/66383 (ICE in gimplify_expr on this passed in inline initialization)
Jason Merrill [Tue, 9 Jun 2015 14:13:22 +0000 (10:13 -0400)] 
re PR c++/66383 (ICE in gimplify_expr on this passed in inline initialization)

PR c++/66383
* tree.c (replace_placeholders_r): Handle placeholders for an
outer object.
* typeck2.c (store_init_value): Only replace_placeholders for
objects of class type.

From-SVN: r224282

9 years agotree-vect-slp.c (vect_build_slp_tree_1): Remove bailout on gaps.
Richard Biener [Tue, 9 Jun 2015 14:13:09 +0000 (14:13 +0000)] 
tree-vect-slp.c (vect_build_slp_tree_1): Remove bailout on gaps.

2015-06-09  Richard Biener  <rguenther@suse.de>

* tree-vect-slp.c (vect_build_slp_tree_1): Remove bailout on gaps.
(vect_analyze_slp_instance): Instead do not falsely drop
load permutations.

From-SVN: r224281

9 years ago[Patch testsuite obvious] g++.dg/ext/pr57735.C should not run if the
James Greenhalgh [Tue, 9 Jun 2015 13:06:14 +0000 (13:06 +0000)] 
[Patch testsuite obvious] g++.dg/ext/pr57735.C should not run if the
 testsuite is explicitly passing -mfloat-abi=hard

gcc/testsuite/

2015-06-09  James Greenhalgh  <james.greenhalgh@arm.com>

* g++.dg/ext/pr57735.C: Do not override -mfloat-abi directives
passed by the testsuite driver.

From-SVN: r224280

9 years agore PR tree-optimization/66423 (a % (1 << b) no longer gets folded to a & (1 << b...
Richard Biener [Tue, 9 Jun 2015 12:31:43 +0000 (12:31 +0000)] 
re PR tree-optimization/66423 (a % (1 << b) no longer gets folded to a & (1 << b) for unsigned a)

2015-06-09  Richard Biener  <rguenther@suse.de>

PR middle-end/66423
* match.pd: Handle A % (unsigned)(1 << B).

* gcc.dg/fold-modpow2.c: New testcase.

From-SVN: r224279

9 years agovarasm.c (output_object_block_htab): Remove.
Aldy Hernandez [Tue, 9 Jun 2015 09:43:07 +0000 (09:43 +0000)] 
varasm.c (output_object_block_htab): Remove.

* varasm.c (output_object_block_htab): Remove.
(output_object_block_compare): New.
(output_object_blocks): Sort named object_blocks before outputting
them.

From-SVN: r224274

9 years agore PR libstdc++/66030 ([5.1.0] std::codecvt_byname missing from libstdc++ DLL)
Jonathan Wakely [Tue, 9 Jun 2015 08:50:00 +0000 (09:50 +0100)] 
re PR libstdc++/66030 ([5.1.0] std::codecvt_byname missing from libstdc++ DLL)

PR libstdc++/66030
* config/abi/pre/gnu.ver: Export codecvt_byname and codecvt symbols
for mingw32.

From-SVN: r224273

9 years agomisc.c: Remove duplicate include directives.
Eric Botcazou [Tue, 9 Jun 2015 08:33:07 +0000 (08:33 +0000)] 
misc.c: Remove duplicate include directives.

* gcc-interface/misc.c: Remove duplicate include directives.
* gcc-interface/trans.c: Likewise.
* gcc-interface/utils.c: Likewise.

From-SVN: r224272

9 years agore PR tree-optimization/66419 (FAIL: gcc.target/aarch64/aapcs64/va_arg-6.c execution...
Richard Biener [Tue, 9 Jun 2015 08:22:20 +0000 (08:22 +0000)] 
re PR tree-optimization/66419 (FAIL: gcc.target/aarch64/aapcs64/va_arg-6.c execution,  -O3 -g)

2015-06-09  Richard Biener  <rguenther@suse.de>

PR tree-optimization/66419
* tree-vect-slp.c (vect_supported_load_permutation_p): Properly
consider GROUP_GAP when detecting a perfect subchain.

* gcc.dg/vect/bb-slp-37.c: New testcase.

From-SVN: r224271

9 years agorl78.c (rl78_select_section): When -mes0 is active place read only data in the .froda...
Nick Clifton [Tue, 9 Jun 2015 08:17:06 +0000 (08:17 +0000)] 
rl78.c (rl78_select_section): When -mes0 is active place read only data in the .frodata section.

* config/rl78/rl78.c (rl78_select_section): When -mes0 is active
place read only data in the .frodata section.

From-SVN: r224270

9 years ago[GCC, ARM] armv8 linux toolchain asan testcase fail due to stl missing conditional...
Shiva Chen [Tue, 9 Jun 2015 08:15:23 +0000 (08:15 +0000)] 
[GCC, ARM] armv8 linux toolchain asan testcase fail due to stl missing conditional code

On behalf of Shiva Chen

2015-06-09  Shiva Chen  <shiva0217@gmail.com>

* sync.md (atomic_load<mode>): Add conditional code for lda/ldr
(atomic_store<mode>): Likewise.

2015-06-09  Shiva Chen  <shiva0217@gmail.com>

* gcc.target/arm/stl-cond.c: New test.

From-SVN: r224269

9 years agocfgloop.c (get_loop_body_in_bfs_order): Fix assert.
Richard Biener [Tue, 9 Jun 2015 08:09:00 +0000 (08:09 +0000)] 
cfgloop.c (get_loop_body_in_bfs_order): Fix assert.

2015-06-09  Richard Biener  <rguenther@suse.de>

* cfgloop.c (get_loop_body_in_bfs_order): Fix assert.

From-SVN: r224268

9 years agore PR tree-optimization/66413 (ICE at -Os and above with -g enabled on x86_64-linux...
Richard Biener [Tue, 9 Jun 2015 08:06:17 +0000 (08:06 +0000)] 
re PR tree-optimization/66413 (ICE at -Os and above with -g enabled on x86_64-linux-gnu)

2015-06-09  Richard Biener  <rguenther@suse.de>

PR middle-end/66413
* tree-inline.c (insert_init_debug_bind): Unshare value.

* gcc.dg/torture/pr66413.c: New testcase.

From-SVN: r224267

9 years agore PR tree-optimization/66396 (FAIL: gcc.dg/graphite/run-id-pr47593.c execution test)
Richard Biener [Tue, 9 Jun 2015 07:51:24 +0000 (07:51 +0000)] 
re PR tree-optimization/66396 (FAIL: gcc.dg/graphite/run-id-pr47593.c execution test)

2015-06-09  Richard Biener  <rguenther@suse.de>

PR tree-optimization/66396
* graphite-isl-ast-to-gimple.c (graphite_regenerate_ast_isl):
Rename virtual operands.

From-SVN: r224266

9 years agoFix gimple_seq_nondebug_singleton_p
Tom de Vries [Tue, 9 Jun 2015 05:52:52 +0000 (05:52 +0000)] 
Fix gimple_seq_nondebug_singleton_p

2015-06-09  Tom de Vries  <tom@codesourcery.com>

* gimple-iterator.h (gimple_seq_nondebug_singleton_p): Don't
always return false.

From-SVN: r224263

9 years ago[PR64164] Drop copyrename, use coalescible partition as base when optimizing.
Alexandre Oliva [Tue, 9 Jun 2015 05:05:34 +0000 (05:05 +0000)] 
[PR64164] Drop copyrename, use coalescible partition as base when optimizing.

for  gcc/ChangeLog

PR rtl-optimization/64164
* Makefile.in (OBJS): Drop tree-ssa-copyrename.o.
* tree-ssa-copyrename.c: Removed.
* opts.c (default_options_table): Drop -ftree-copyrename.  Add
-ftree-coalesce-vars.
* passes.def: Drop all occurrences of pass_rename_ssa_copies.
* common.opt (ftree-copyrename): Ignore.
(ftree-coalesce-inlined-vars): Likewise.
* doc/invoke.texi: Remove the ignored options above.
* gimple-expr.h (gimple_can_coalesce_p): Move declaration
* tree-ssa-coalesce.h: ... here.
* tree-ssa-uncprop.c: Include tree-ssa-coalesce.h and other
headers required by it.
* gimple-expr.c (gimple_can_coalesce_p): Allow coalescing
across variables when flag_tree_coalesce_vars.  Check register
use and promoted modes to allow coalescing.  Moved to
tree-ssa-coalesce.c.
* tree-ssa-live.c (struct tree_int_map_hasher): Move along
with its member functions to tree-ssa-coalesce.c.
(var_map_base_init): Likewise.  Renamed to
compute_samebase_partition_bases.
(partition_view_normal): Drop want_bases parameter.
(partition_view_bitmap): Likewise.
* tree-ssa-live.h: Adjust declarations.
* tree-ssa-coalesce.c: Include explow.h.
(build_ssa_conflict_graph): Process PARM_ and RESULT_DECLs's
default defs at the entry point.
(dump_part_var_map): New.
(compute_optimized_partition_bases): New, called by...
(coalesce_ssa_name): ... when flag_tree_coalesce_vars, instead
of compute_samebase_partition_bases.  Adjust.
* alias.c (nonoverlapping_memrefs_p): Disregard gimple-regs.
* cfgexpand.c (leader_merge): New.
(get_rtl_for_parm_ssa_default_def): New.
(set_rtl): Merge exprs and attrs, even for MEMs and non-SSA
vars.  Update DECL_RTL for PARM_DECLs and RESULT_DECLs too.
(expand_one_stack_var_at): Handle anonymous SSA_NAMEs.  Drop
redundant MEM attr setting.
(expand_one_stack_var_1): Handle anonymous SSA_NAMEs.  Renamed
from...
(expand_one_stack_var): ... this.  New wrapper to check and
skip already expanded SSA partitions.
(record_alignment_for_reg_var): New, factored out of...
(expand_one_var): ... this.
(expand_one_ssa_partition): New.
(adjust_one_expanded_partition_var): New.
(expand_one_register_var): Check and skip already expanded SSA
partitions.
(expand_used_vars): Don't create DECLs for anonymous SSA
names.  Expand all SSA partitions, then adjust all SSA names.
(pass::execute): Replace the loops that set
SA.partition_to_pseudo from partition leaders and cleared
DECL_RTL for multi-location variables, and that which used to
rename vars and set attrs, with one that clears DECL_RTL and
checks that PARMs and RESULTs default_defs match DECL_RTL.
* cfgexpand.h (get_rtl_for_parm_ssa_default_def): Declare.
* emit-rtl.c (set_reg_attrs_for_parm): Handle NULL decl.
* explow.c (promote_ssa_mode): New.
* explow.h (promote_ssa_mode): Declare.
* expr.c (expand_expr_real_1): Handle anonymous SSA_NAMEs.
* function.c: Include cfgexpand.h.
(use_register_for_decl): Handle SSA_NAMEs, anonymous or not.
(use_register_for_parm_decl): Wrapper for the above to
special-case the result_ptr.
(rtl_for_parm): Ditto for get_rtl_for_parm_ssa_default_def.
(maybe_reset_rtl_for_parm): Reset DECL_RTL of parms with
multiple locations.
(assign_parm_adjust_stack_rtl): Add all and parm arguments,
for rtl_for_parm.  For SSA-assigned parms, zero stack_parm.
(assign_parm_setup_block): Prefer SSA-assigned location.
(assign_parm_setup_reg): Likewise.  Use entry_parm for equiv
if stack_parm is NULL.
(assign_parm_setup_stack): Prefer SSA-assigned location.
(assign_parms): Maybe reset DECL_RTL of params.  Adjust stack
rtl before testing for pointer bounds.  Special-case result_ptr.
(expand_function_start): Maybe reset DECL_RTL of result.
Prefer SSA-assigned location for result and static chain.
Factor out DECL_RESULT and SET_DECL_RTL.
* tree-outof-ssa.c (insert_value_copy_on_edge): Handle
anonymous SSA names.  Use promote_ssa_mode.
(get_temp_reg): Likewise.
(remove_ssa_form): Adjust.
* var-tracking.c (dataflow_set_clear_at_call): Take call_insn
and get its reg_usage for reg invalidation.
(compute_bb_dataflow): Pass it insn.
(emit_notes_in_bb): Likewise.
* tree-ssa-loop-niter.c (loop_exits_before_overflow): Don't
fail assert on conversion between unsigned types.

for  gcc/testsuite/ChangeLog

* gcc.dg/guality/pr54200.c: Add -fno-tree-coalesce-vars.
* gcc.dg/ssp-1.c: Make counter a register.
* gcc.dg/ssp-2.c: Likewise.
* gcc.dg/torture/parm-coalesce.c: New.

From-SVN: r224262

9 years agoReset inlined debug variables at the end of the inlined function
Alexandre Oliva [Tue, 9 Jun 2015 05:05:12 +0000 (05:05 +0000)] 
Reset inlined debug variables at the end of the inlined function

for  gcc/ChangeLog

PR debug/58315
* tree-inline.c (reset_debug_binding): New.
(reset_debug_bindings): Likewise.
(expand_call_inline): Call it.

From-SVN: r224261

9 years agoDaily bump.
GCC Administrator [Tue, 9 Jun 2015 00:16:15 +0000 (00:16 +0000)] 
Daily bump.

From-SVN: r224258

9 years agobind_c-2b_0.f90: New testcase.
Jan Hubicka [Mon, 8 Jun 2015 22:37:12 +0000 (22:37 +0000)] 
bind_c-2b_0.f90: New testcase.

* gfortran.dg/lto/bind_c-2b_0.f90: New testcase.
* gfortran.dg/lto/bind_c-2b_1.c: New testcase.

From-SVN: r224253

9 years agolto.c (hash_canonical_type): Drop hashing of TYPE_STRING_FLAG.
Jan Hubicka [Mon, 8 Jun 2015 22:24:57 +0000 (00:24 +0200)] 
lto.c (hash_canonical_type): Drop hashing of TYPE_STRING_FLAG.

* lto.c (hash_canonical_type): Drop hashing of TYPE_STRING_FLAG.
* tree.c (gimple_canonical_types_compatible_p): Drop comparsion of
TYPE_STRING_FLAG.

* gfortran.dg/lto/bind_c-2b_0.f90: New testcase
* gfortran.dg/lto/bind_c-2b_1.c: New testcase

From-SVN: r224252

9 years agolto-streamer-out.c (lto_output_location): Stream reserved locations correctly.
Jan Hubicka [Mon, 8 Jun 2015 22:10:35 +0000 (00:10 +0200)] 
lto-streamer-out.c (lto_output_location): Stream reserved locations correctly.

* lto-streamer-out.c (lto_output_location): Stream
reserved locations correctly.
* lto-streamer-in.c (lto_output_location): Likewise.

From-SVN: r224251

9 years agocoretypes.h: Include hash-table.h and hash-set.h for host files.
Andrew MacLeod [Mon, 8 Jun 2015 21:06:50 +0000 (21:06 +0000)] 
coretypes.h: Include hash-table.h and hash-set.h for host files.

2015-06-08  Andrew MacLeod  <amacleod@redhat.com>

* coretypes.h: Include hash-table.h and hash-set.h for host files.
* ggc.h: Don't include statistics.h>
* hash-map.h: Remove all includes.
* hash-set.h: Likewise.
* hash-table.h: Add statistics.h, inchash.h and hash-map-traits.h to
the include list. Remove <new>.
* inchash.h: Remove all includes.
* mem-stats.h: Likewise.
* vec.h: No special processing for generators or ggc.
* alias.c : Adjust include files.
* alloc-pool.c : Likewise.
* alloc-pool.h : Likewise.
* asan.c : Likewise.
* attribs.c : Likewise.
* auto-inc-dec.c : Likewise.
* auto-profile.c : Likewise.
* bb-reorder.c : Likewise.
* bitmap.c : Likewise.
* bitmap.h : Likewise.
* bt-load.c : Likewise.
* builtins.c : Likewise.
* caller-save.c : Likewise.
* calls.c : Likewise.
* ccmp.c : Likewise.
* cfg.c : Likewise.
* cfganal.c : Likewise.
* cfgbuild.c : Likewise.
* cfgcleanup.c : Likewise.
* cfgexpand.c : Likewise.
* cfghooks.c : Likewise.
* cfgloop.c : Likewise.
* cfgloop.h : Likewise.
* cfgloopanal.c : Likewise.
* cfgloopmanip.c : Likewise.
* cfgrtl.c : Likewise.
* cgraph.c : Likewise.
* cgraphbuild.c : Likewise.
* cgraphclones.c : Likewise.
* cgraphunit.c : Likewise.
* cilk-common.c : Likewise.
* combine-stack-adj.c : Likewise.
* combine.c : Likewise.
* compare-elim.c : Likewise.
* context.c : Likewise.
* convert.c : Likewise.
* coverage.c : Likewise.
* cppbuiltin.c : Likewise.
* cprop.c : Likewise.
* cse.c : Likewise.
* cselib.c : Likewise.
* data-streamer-in.c : Likewise.
* data-streamer-out.c : Likewise.
* data-streamer.c : Likewise.
* data-streamer.h : Likewise.
* dbxout.c : Likewise.
* dce.c : Likewise.
* ddg.c : Likewise.
* debug.c : Likewise.
* df-core.c : Likewise.
* df-problems.c : Likewise.
* df-scan.c : Likewise.
* df.h : Likewise.
* dfp.c : Likewise.
* dojump.c : Likewise.
* dominance.c : Likewise.
* domwalk.c : Likewise.
* double-int.c : Likewise.
* dse.c : Likewise.
* dumpfile.c : Likewise.
* dwarf2asm.c : Likewise.
* dwarf2cfi.c : Likewise.
* dwarf2out.c : Likewise.
* emit-rtl.c : Likewise.
* et-forest.c : Likewise.
* except.c : Likewise.
* except.h : Likewise.
* explow.c : Likewise.
* expmed.c : Likewise.
* expr.c : Likewise.
* final.c : Likewise.
* fixed-value.c : Likewise.
* fold-const.c : Likewise.
* function.c : Likewise.
* fwprop.c : Likewise.
* gcc-plugin.h : Likewise.
* gcc.c : Likewise.
* gcse-common.c : Likewise.
* gcse.c : Likewise.
* genattrtab.c : Likewise.
* genautomata.c : Likewise.
* genconditions.c : Likewise.
* genemit.c : Likewise.
* generic-match-head.c : Likewise.
* genextract.c : Likewise.
* gengtype-state.c : Likewise.
* gengtype.c : Likewise.
* genhooks.c : Likewise.
* genmatch.c : Likewise.
* genmodes.c : Likewise.
* genrecog.c : Likewise.
* gensupport.c : Likewise.
* ggc-common.c : Likewise.
* ggc-internal.h : Likewise.
* ggc-none.c : Likewise.
* ggc-page.c : Likewise.
* gimple-builder.c : Likewise.
* gimple-expr.c : Likewise.
* gimple-fold.c : Likewise.
* gimple-iterator.c : Likewise.
* gimple-low.c : Likewise.
* gimple-match-head.c : Likewise.
* gimple-pretty-print.c : Likewise.
* gimple-ssa-isolate-paths.c : Likewise.
* gimple-ssa-strength-reduction.c : Likewise.
* gimple-ssa.h : Likewise.
* gimple-streamer-in.c : Likewise.
* gimple-streamer-out.c : Likewise.
* gimple-streamer.h : Likewise.
* gimple-walk.c : Likewise.
* gimple.c : Likewise.
* gimplify-me.c : Likewise.
* gimplify.c : Likewise.
* godump.c : Likewise.
* graph.c : Likewise.
* graphds.c : Likewise.
* graphite-blocking.c : Likewise.
* graphite-dependences.c : Likewise.
* graphite-interchange.c : Likewise.
* graphite-isl-ast-to-gimple.c : Likewise.
* graphite-optimize-isl.c : Likewise.
* graphite-poly.c : Likewise.
* graphite-scop-detection.c : Likewise.
* graphite-sese-to-poly.c : Likewise.
* graphite.c : Likewise.
* haifa-sched.c : Likewise.
* hard-reg-set.h : Likewise.
* hw-doloop.c : Likewise.
* ifcvt.c : Likewise.
* inchash.c : Likewise.
* incpath.c : Likewise.
* init-regs.c : Likewise.
* input.c : Likewise.
* internal-fn.c : Likewise.
* ipa-chkp.c : Likewise.
* ipa-comdats.c : Likewise.
* ipa-cp.c : Likewise.
* ipa-devirt.c : Likewise.
* ipa-icf-gimple.c : Likewise.
* ipa-icf.c : Likewise.
* ipa-inline-analysis.c : Likewise.
* ipa-inline-transform.c : Likewise.
* ipa-inline.c : Likewise.
* ipa-polymorphic-call.c : Likewise.
* ipa-profile.c : Likewise.
* ipa-prop.c : Likewise.
* ipa-pure-const.c : Likewise.
* ipa-ref.c : Likewise.
* ipa-reference.c : Likewise.
* ipa-split.c : Likewise.
* ipa-utils.c : Likewise.
* ipa-visibility.c : Likewise.
* ipa.c : Likewise.
* ira-build.c : Likewise.
* ira-color.c : Likewise.
* ira-conflicts.c : Likewise.
* ira-costs.c : Likewise.
* ira-emit.c : Likewise.
* ira-lives.c : Likewise.
* ira.c : Likewise.
* jump.c : Likewise.
* langhooks.c : Likewise.
* lcm.c : Likewise.
* libfuncs.h : Likewise.
* lists.c : Likewise.
* loop-doloop.c : Likewise.
* loop-init.c : Likewise.
* loop-invariant.c : Likewise.
* loop-iv.c : Likewise.
* loop-unroll.c : Likewise.
* lower-subreg.c : Likewise.
* lra-assigns.c : Likewise.
* lra-coalesce.c : Likewise.
* lra-constraints.c : Likewise.
* lra-eliminations.c : Likewise.
* lra-lives.c : Likewise.
* lra-remat.c : Likewise.
* lra-spills.c : Likewise.
* lra.c : Likewise.
* lto-cgraph.c : Likewise.
* lto-compress.c : Likewise.
* lto-opts.c : Likewise.
* lto-section-in.c : Likewise.
* lto-section-out.c : Likewise.
* lto-streamer-in.c : Likewise.
* lto-streamer-out.c : Likewise.
* lto-streamer.c : Likewise.
* lto-streamer.h : Likewise.
* mcf.c : Likewise.
* mode-switching.c : Likewise.
* modulo-sched.c : Likewise.
* omega.c : Likewise.
* omp-low.c : Likewise.
* optabs.c : Likewise.
* opts-global.c : Likewise.
* opts.h : Likewise.
* passes.c : Likewise.
* plugin.c : Likewise.
* postreload-gcse.c : Likewise.
* postreload.c : Likewise.
* predict.c : Likewise.
* print-rtl.c : Likewise.
* print-tree.c : Likewise.
* profile.c : Likewise.
* read-md.c : Likewise.
* read-md.h : Likewise.
* read-rtl.c : Likewise.
* real.c : Likewise.
* realmpfr.c : Likewise.
* recog.c : Likewise.
* ree.c : Likewise.
* reg-stack.c : Likewise.
* regcprop.c : Likewise.
* reginfo.c : Likewise.
* regrename.c : Likewise.
* regstat.c : Likewise.
* reload.c : Likewise.
* reload1.c : Likewise.
* reorg.c : Likewise.
* resource.c : Likewise.
* rtl-chkp.c : Likewise.
* rtl.c : Likewise.
* rtl.h : Likewise.
* rtlanal.c : Likewise.
* rtlhash.c : Likewise.
* rtlhash.h : Likewise.
* rtlhooks.c : Likewise.
* sanopt.c : Likewise.
* sched-deps.c : Likewise.
* sched-ebb.c : Likewise.
* sched-rgn.c : Likewise.
* sched-vis.c : Likewise.
* sdbout.c : Likewise.
* sel-sched-dump.c : Likewise.
* sel-sched-ir.c : Likewise.
* sel-sched-ir.h : Likewise.
* sel-sched.c : Likewise.
* sese.c : Likewise.
* shrink-wrap.c : Likewise.
* shrink-wrap.h : Likewise.
* simplify-rtx.c : Likewise.
* stack-ptr-mod.c : Likewise.
* statistics.c : Likewise.
* stmt.c : Likewise.
* stor-layout.c : Likewise.
* store-motion.c : Likewise.
* stringpool.c : Likewise.
* symtab.c : Likewise.
* target-globals.c : Likewise.
* targhooks.c : Likewise.
* tlink.c : Likewise.
* toplev.c : Likewise.
* tracer.c : Likewise.
* trans-mem.c : Likewise.
* tree-affine.c : Likewise.
* tree-affine.h : Likewise.
* tree-browser.c : Likewise.
* tree-call-cdce.c : Likewise.
* tree-cfg.c : Likewise.
* tree-cfgcleanup.c : Likewise.
* tree-chkp-opt.c : Likewise.
* tree-chkp.c : Likewise.
* tree-chrec.c : Likewise.
* tree-complex.c : Likewise.
* tree-data-ref.c : Likewise.
* tree-dfa.c : Likewise.
* tree-diagnostic.c : Likewise.
* tree-dump.c : Likewise.
* tree-eh.c : Likewise.
* tree-eh.h : Likewise.
* tree-emutls.c : Likewise.
* tree-hasher.h : Likewise.
* tree-if-conv.c : Likewise.
* tree-inline.c : Likewise.
* tree-inline.h : Likewise.
* tree-into-ssa.c : Likewise.
* tree-iterator.c : Likewise.
* tree-loop-distribution.c : Likewise.
* tree-nested.c : Likewise.
* tree-nrv.c : Likewise.
* tree-object-size.c : Likewise.
* tree-outof-ssa.c : Likewise.
* tree-parloops.c : Likewise.
* tree-phinodes.c : Likewise.
* tree-predcom.c : Likewise.
* tree-pretty-print.c : Likewise.
* tree-profile.c : Likewise.
* tree-scalar-evolution.c : Likewise.
* tree-sra.c : Likewise.
* tree-ssa-address.c : Likewise.
* tree-ssa-alias.c : Likewise.
* tree-ssa-ccp.c : Likewise.
* tree-ssa-coalesce.c : Likewise.
* tree-ssa-copy.c : Likewise.
* tree-ssa-copyrename.c : Likewise.
* tree-ssa-dce.c : Likewise.
* tree-ssa-dom.c : Likewise.
* tree-ssa-dse.c : Likewise.
* tree-ssa-forwprop.c : Likewise.
* tree-ssa-ifcombine.c : Likewise.
* tree-ssa-live.c : Likewise.
* tree-ssa-loop-ch.c : Likewise.
* tree-ssa-loop-im.c : Likewise.
* tree-ssa-loop-ivcanon.c : Likewise.
* tree-ssa-loop-ivopts.c : Likewise.
* tree-ssa-loop-manip.c : Likewise.
* tree-ssa-loop-niter.c : Likewise.
* tree-ssa-loop-prefetch.c : Likewise.
* tree-ssa-loop-unswitch.c : Likewise.
* tree-ssa-loop.c : Likewise.
* tree-ssa-math-opts.c : Likewise.
* tree-ssa-operands.c : Likewise.
* tree-ssa-phiopt.c : Likewise.
* tree-ssa-phiprop.c : Likewise.
* tree-ssa-pre.c : Likewise.
* tree-ssa-propagate.c : Likewise.
* tree-ssa-reassoc.c : Likewise.
* tree-ssa-sccvn.c : Likewise.
* tree-ssa-scopedtables.c : Likewise.
* tree-ssa-sink.c : Likewise.
* tree-ssa-strlen.c : Likewise.
* tree-ssa-structalias.c : Likewise.
* tree-ssa-tail-merge.c : Likewise.
* tree-ssa-ter.c : Likewise.
* tree-ssa-threadedge.c : Likewise.
* tree-ssa-threadupdate.c : Likewise.
* tree-ssa-uncprop.c : Likewise.
* tree-ssa-uninit.c : Likewise.
* tree-ssa.c : Likewise.
* tree-ssanames.c : Likewise.
* tree-stdarg.c : Likewise.
* tree-streamer-in.c : Likewise.
* tree-streamer-out.c : Likewise.
* tree-streamer.c : Likewise.
* tree-streamer.h : Likewise.
* tree-switch-conversion.c : Likewise.
* tree-tailcall.c : Likewise.
* tree-vect-data-refs.c : Likewise.
* tree-vect-generic.c : Likewise.
* tree-vect-loop-manip.c : Likewise.
* tree-vect-loop.c : Likewise.
* tree-vect-patterns.c : Likewise.
* tree-vect-slp.c : Likewise.
* tree-vect-stmts.c : Likewise.
* tree-vectorizer.c : Likewise.
* tree-vectorizer.h : Likewise.
* tree-vrp.c : Likewise.
* tree.c : Likewise.
* tsan.c : Likewise.
* ubsan.c : Likewise.
* valtrack.c : Likewise.
* valtrack.h : Likewise.
* value-prof.c : Likewise.
* var-tracking.c : Likewise.
* varasm.c : Likewise.
* varpool.c : Likewise.
* vec.c: Likewise.
* vmsdbgout.c : Likewise.
* vtable-verify.c : Likewise.
* vtable-verify.h : Likewise.
* web.c : Likewise.
* wide-int.cc : Likewise.
* xcoffout.c : Likewise.
* config/aarch64/aarch64-builtins.c : Likewise.
* config/aarch64/aarch64.c : Likewise.
* config/aarch64/cortex-a57-fma-steering.c : Likewise.
* config/alpha/alpha.c : Likewise.
* config/arc/arc.c : Likewise.
* config/arm/aarch-common.c : Likewise.
* config/arm/arm-builtins.c : Likewise.
* config/arm/arm-c.c : Likewise.
* config/arm/arm.c : Likewise.
* config/avr/avr-c.c : Likewise.
* config/avr/avr-log.c : Likewise.
* config/avr/avr.c : Likewise.
* config/bfin/bfin.c : Likewise.
* config/c6x/c6x.c : Likewise.
* config/cr16/cr16.c : Likewise.
* config/cris/cris.c : Likewise.
* config/darwin-c.c : Likewise.
* config/darwin.c : Likewise.
* config/default-c.c : Likewise.
* config/epiphany/epiphany.c : Likewise.
* config/epiphany/mode-switch-use.c : Likewise.
* config/epiphany/resolve-sw-modes.c : Likewise.
* config/fr30/fr30.c : Likewise.
* config/frv/frv.c : Likewise.
* config/ft32/ft32.c : Likewise.
* config/glibc-c.c : Likewise.
* config/h8300/h8300.c : Likewise.
* config/i386/i386-c.c : Likewise.
* config/i386/i386.c : Likewise.
* config/i386/msformat-c.c : Likewise.
* config/i386/winnt-cxx.c : Likewise.
* config/i386/winnt-stubs.c : Likewise.
* config/i386/winnt.c : Likewise.
* config/ia64/ia64-c.c : Likewise.
* config/ia64/ia64.c : Likewise.
* config/iq2000/iq2000.c : Likewise.
* config/lm32/lm32.c : Likewise.
* config/m32c/m32c-pragma.c : Likewise.
* config/m32c/m32c.c : Likewise.
* config/m32r/m32r.c : Likewise.
* config/m68k/m68k.c : Likewise.
* config/mcore/mcore.c : Likewise.
* config/mep/mep-pragma.c : Likewise.
* config/mep/mep.c : Likewise.
* config/microblaze/microblaze-c.c : Likewise.
* config/microblaze/microblaze.c : Likewise.
* config/mips/mips.c : Likewise.
* config/mmix/mmix.c : Likewise.
* config/mn10300/mn10300.c : Likewise.
* config/moxie/moxie.c : Likewise.
* config/msp430/msp430-c.c : Likewise.
* config/msp430/msp430.c : Likewise.
* config/nds32/nds32-cost.c : Likewise.
* config/nds32/nds32-fp-as-gp.c : Likewise.
* config/nds32/nds32-intrinsic.c : Likewise.
* config/nds32/nds32-isr.c : Likewise.
* config/nds32/nds32-md-auxiliary.c : Likewise.
* config/nds32/nds32-memory-manipulation.c : Likewise.
* config/nds32/nds32-pipelines-auxiliary.c : Likewise.
* config/nds32/nds32-predicates.c : Likewise.
* config/nds32/nds32.c : Likewise.
* config/nios2/nios2.c : Likewise.
* config/nvptx/nvptx.c : Likewise.
* config/pa/pa.c : Likewise.
* config/pdp11/pdp11.c : Likewise.
* config/rl78/rl78-c.c : Likewise.
* config/rl78/rl78.c : Likewise.
* config/rs6000/rs6000-c.c : Likewise.
* config/rs6000/rs6000.c : Likewise.
* config/rx/rx.c : Likewise.
* config/s390/s390-c.c : Likewise.
* config/s390/s390.c : Likewise.
* config/sh/sh-c.c : Likewise.
* config/sh/sh-mem.cc : Likewise.
* config/sh/sh.c : Likewise.
* config/sh/sh_optimize_sett_clrt.cc : Likewise.
* config/sh/sh_treg_combine.cc : Likewise.
* config/sol2-c.c : Likewise.
* config/sol2-cxx.c : Likewise.
* config/sol2-stubs.c : Likewise.
* config/sol2.c : Likewise.
* config/sparc/sparc-c.c : Likewise.
* config/sparc/sparc.c : Likewise.
* config/spu/spu-c.c : Likewise.
* config/spu/spu.c : Likewise.
* config/stormy16/stormy16.c : Likewise.
* config/tilegx/mul-tables.c : Likewise.
* config/tilegx/tilegx-c.c : Likewise.
* config/tilegx/tilegx.c : Likewise.
* config/tilepro/mul-tables.c : Likewise.
* config/tilepro/tilepro-c.c : Likewise.
* config/tilepro/tilepro.c : Likewise.
* config/v850/v850-c.c : Likewise.
* config/v850/v850.c : Likewise.
* config/vax/vax.c : Likewise.
* config/visium/visium.c : Likewise.
* config/vms/vms-c.c : Likewise.
* config/vms/vms.c : Likewise.
* config/vxworks.c : Likewise.
* config/winnt-c.c : Likewise.
* config/xtensa/xtensa.c : Likewise.

ada
2015-06-08  Andrew MacLeod  <amacleod@redhat.com>

* gcc-interface/cuintp.c : Adjust include files.
* gcc-interface/decl.c : Likewise.
* gcc-interface/misc.c : Likewise.
* gcc-interface/targtyps.c : Likewise.
* gcc-interface/trans.c : Likewise.
* gcc-interface/utils.c : Likewise.
* gcc-interface/utils2.c : Likewise.

c
2015-06-08  Andrew MacLeod  <amacleod@redhat.com>

* c-array-notation.c : Adjust include files.
* c-aux-info.c : Likewise.
* c-convert.c : Likewise.
* c-decl.c : Likewise.
* c-errors.c : Likewise.
* c-lang.c : Likewise.
* c-lang.h : Likewise.
* c-objc-common.c : Likewise.
* c-parser.c : Likewise.
* c-typeck.c : Likewise.

cfamily
2015-06-08  Andrew MacLeod  <amacleod@redhat.com>

* array-notation-common.c : Adjust include files.
* c-ada-spec.c : Likewise.
* c-cilkplus.c : Likewise.
* c-common.c : Likewise.
* c-common.h : Likewise.
* c-cppbuiltin.c : Likewise.
* c-dump.c : Likewise.
* c-format.c : Likewise.
* c-gimplify.c : Likewise.
* c-indentation.c : Likewise.
* c-lex.c : Likewise.
* c-omp.c : Likewise.
* c-opts.c : Likewise.
* c-pch.c : Likewise.
* c-ppoutput.c : Likewise.
* c-pragma.c : Likewise.
* c-pretty-print.c : Likewise.
* c-semantics.c : Likewise.
* c-ubsan.c : Likewise.
* cilk.c : Likewise.
* stub-objc.c : Likewise.

cp
2015-06-08  Andrew MacLeod  <amacleod@redhat.com>

* call.c : Adjust include files.
* class.c : Likewise.
* constexpr.c : Likewise.
* cp-array-notation.c : Likewise.
* cp-cilkplus.c : Likewise.
* cp-gimplify.c : Likewise.
* cp-lang.c : Likewise.
* cp-objcp-common.c : Likewise.
* cp-tree.h : Likewise.
* cp-ubsan.c : Likewise.
* cvt.c : Likewise.
* decl.c : Likewise.
* decl2.c : Likewise.
* dump.c : Likewise.
* error.c : Likewise.
* except.c : Likewise.
* expr.c : Likewise.
* friend.c : Likewise.
* init.c : Likewise.
* lambda.c : Likewise.
* lex.c : Likewise.
* mangle.c : Likewise.
* method.c : Likewise.
* name-lookup.c : Likewise.
* optimize.c : Likewise.
* parser.c : Likewise.
* pt.c : Likewise.
* ptree.c : Likewise.
* repo.c : Likewise.
* rtti.c : Likewise.
* search.c : Likewise.
* semantics.c : Likewise.
* tree.c : Likewise.
* typeck.c : Likewise.
* typeck2.c : Likewise.
* vtable-class-hierarchy.c : Likewise.

fortran
2015-06-08  Andrew MacLeod  <amacleod@redhat.com>

* convert.c : Adjust include files.
* cpp.c : Likewise.
* decl.c : Likewise.
* f95-lang.c : Likewise.
* gfortran.h : Likewise.
* iresolve.c : Likewise.
* match.c : Likewise.
* module.c : Likewise.
* openmp.c : Likewise.
* options.c : Likewise.
* target-memory.c : Likewise.
* trans-array.c : Likewise.
* trans-common.c : Likewise.
* trans-const.c : Likewise.
* trans-decl.c : Likewise.
* trans-expr.c : Likewise.
* trans-intrinsic.c : Likewise.
* trans-io.c : Likewise.
* trans-openmp.c : Likewise.
* trans-stmt.c : Likewise.
* trans-types.c : Likewise.
* trans.c : Likewise.

go
2015-06-08  Andrew MacLeod  <amacleod@redhat.com>

* go-backend.c : Adjust include files.
* go-gcc.cc : Likewise.
* go-lang.c : Likewise.

java
2015-06-08  Andrew MacLeod  <amacleod@redhat.com>

* boehm.c : Adjust include files.
* builtins.c : Likewise.
* class.c : Likewise.
* constants.c : Likewise.
* decl.c : Likewise.
* except.c : Likewise.
* expr.c : Likewise.
* java-gimplify.c : Likewise.
* java-tree.h : Likewise.
* jcf-dump.c : Likewise.
* jcf-io.c : Likewise.
* jcf-parse.c : Likewise.
* jcf-reader.c : Likewise.
* jvgenmain.c : Likewise.
* lang.c : Likewise.
* mangle.c : Likewise.
* mangle_name.c : Likewise.
* resource.c : Likewise.
* typeck.c : Likewise.
* verify-glue.c : Likewise.
* verify-impl.c : Likewise.

jit
2015-06-08  Andrew MacLeod  <amacleod@redhat.com>

* dummy-frontend.c : Adjust include files.
* jit-common.h : Likewise.
* jit-playback.c : Likewise.

lto
2015-06-08  Andrew MacLeod  <amacleod@redhat.com>

* lto-lang.c : Adjust include files.
* lto-object.c : Likewise.
* lto-partition.c : Likewise.
* lto-partition.h : Likewise.
* lto-symtab.c : Likewise.
* lto.c : Likewise.
* lto.h : Likewise.

objc
2015-06-08  Andrew MacLeod  <amacleod@redhat.com>

* objc-act.c : Adjust include files.
* objc-encoding.c : Likewise.
* objc-gnu-runtime-abi-01.c : Likewise.
* objc-lang.c : Likewise.
* objc-map.c : Likewise.
* objc-next-runtime-abi-01.c : Likewise.
* objc-next-runtime-abi-02.c : Likewise.
* objc-runtime-shared-support.c : Likewise.

objcp
2015-06-08  Andrew MacLeod  <amacleod@redhat.com>

* objcp-decl.c : Adjust include files.
* objcp-lang.c : Likewise.

From-SVN: r224250

9 years agore PR lto/65378 (Tweak to wording of -Wodr message)
Jan Hubicka [Mon, 8 Jun 2015 20:37:53 +0000 (22:37 +0200)] 
re PR lto/65378 (Tweak to wording of -Wodr message)

PR lto/65378
* ipa-utils.h (warn_types_mismatch): Update prototype.
* ipa-devirt.c (odr_types_equivalent_p): Add loc1/loc2
parameters.
(type_mismatch_p): New function.
(warn_types_mismatch): Reorg to work better on non-C++ types.
(odr_types_equivalent_p): Add loc1/loc2 parameters.
(add_type_duplicate): Update.
* lto-symtab.c (warn_type_compatibility_p): Fix call of
odr_or_derived_type_p.
(lto_symtab_merge_decls_2): Update call of warn_types_mismatch.

From-SVN: r224248

9 years agoHandle -fipa-ra in reload_combine
Tom de Vries [Mon, 8 Jun 2015 16:59:31 +0000 (16:59 +0000)] 
Handle -fipa-ra in reload_combine

2015-06-08  Tom de Vries  <tom@codesourcery.com>

PR rtl-optimization/66444
* postreload.c (reload_combine): Use get_call_reg_set_usage instead of
call_used_regs.

* gcc.dg/pr66444.c: New test.

From-SVN: r224240

9 years agore PR fortran/66245 (ICE on select type with empty type spec)
Steven G. Kargl [Mon, 8 Jun 2015 15:55:16 +0000 (15:55 +0000)] 
re PR fortran/66245 (ICE on select type with empty type spec)

2015-06-08  Steven G. Kargl  <kargl@gcc.gnu.org>

PR fortran/66245
* match.c (gfc_match_type_is, gfc_match_class_is):  Check if the
return type spec or derived type spec is validate.

2015-06-08  Steven G. Kargl  <kargl@gcc.gnu.org>

PR fortran/66245
* gfortran.dg/class_is_1.f90: New test.
* gfortran.dg/type_is_1.f90: Ditto.

From-SVN: r224237

9 years agore PR c/66415 (ice in location_column_from_byte_offset)
Marek Polacek [Mon, 8 Jun 2015 15:16:12 +0000 (15:16 +0000)] 
re PR c/66415 (ice in location_column_from_byte_offset)

PR c/66415
* c-format.c (location_from_offset): Return LOC if LINE is null.

* line-map.c (linemap_position_for_loc_and_offset): Remove
linemap_assert_fails; reverse conditions.

* gcc.dg/cpp/pr66415-1.c: New test.
* gcc.dg/cpp/pr66415-2.c: New test.

From-SVN: r224236

9 years agore PR tree-optimization/66422 (-Warray-bounds false positive with -O3)
Richard Biener [Mon, 8 Jun 2015 14:53:19 +0000 (14:53 +0000)] 
re PR tree-optimization/66422 (-Warray-bounds false positive with -O3)

2015-06-08  Richard Biener  <rguenther@suse.de>

PR tree-optimization/66422
* tree-ssa-loop-ivcanon.c (remove_exits_and_undefined_stmts): Split
block after inserted gcc_unreachable.

* gcc.dg/Warray-bounds-16.c: New testcase.

From-SVN: r224235

9 years agorx.c (rx_function_value): Do not promote vector types.
Nick Clifton [Mon, 8 Jun 2015 13:57:58 +0000 (13:57 +0000)] 
rx.c (rx_function_value): Do not promote vector types.

* config/rx/rx.c (rx_function_value): Do not promote vector types.
(rx_promote_function_mode): Likewise.
* config/rx/rx.h (LIBCALL_VALUE): Likewise.

From-SVN: r224228

9 years agogenattrtab.c (insn_alternatives): Change type from int * to uint64_t *.
Jakub Jelinek [Mon, 8 Jun 2015 13:48:12 +0000 (15:48 +0200)] 
genattrtab.c (insn_alternatives): Change type from int * to uint64_t *.

* genattrtab.c (insn_alternatives): Change type from int *
to uint64_t *.
(check_attr_test): Shift ((uint64_t) 1) instead of 1 up.
(get_attr_value): Change type of num_alt to uint64_t.
(compute_alternative_mask): Change return type from
int to uint64_t, shift ((uint64_t) 1) instead of 1 up.
(make_alternative_compare, mk_attr_alt): Change argument type
from int to uint64_t.
(simplify_test_exp): Change type of i from int to uint64_t.
Shift ((uint64_t) 1) instead of 1 up.
(main): Adjust oballocvec first argument from int to uint64_t.
Shift ((uint64_t) 1) instead of 1 up.

From-SVN: r224227

9 years agore PR other/65366 (gdbhooks.py is incompatible with Python3)
Jan Kratochvil [Mon, 8 Jun 2015 13:35:51 +0000 (13:35 +0000)] 
re PR other/65366 (gdbhooks.py is incompatible with Python3)

PR other/65366
* gdbhooks.py: Import sys.
(intptr): New function.  Replace int(...) by intptr(...).

From-SVN: r224223

9 years agore PR libstdc++/66441 (wstring_convert not working correctly)
Jonathan Wakely [Mon, 8 Jun 2015 13:03:45 +0000 (14:03 +0100)] 
re PR libstdc++/66441 (wstring_convert not working correctly)

PR libstdc++/66441
* testsuite/22_locale/conversions/string/66441.cc: New.
* include/bits/locale_conv.h (__do_str_codecvt): Reserve enough space
in the output string for BOM and complete result.

From-SVN: r224222

9 years agotree-vect-stmts.c (vectorizable_load): Compute the pointer adjustment for gaps at...
Richard Biener [Mon, 8 Jun 2015 12:40:20 +0000 (12:40 +0000)] 
tree-vect-stmts.c (vectorizable_load): Compute the pointer adjustment for gaps at the end of a SLP load group properly.

2015-06-08  Richard Biener  <rguenther@suse.de>

* tree-vect-stmts.c (vectorizable_load): Compute the pointer
adjustment for gaps at the end of a SLP load group properly.
* tree-vect-slp.c (vect_supported_load_permutation_p): Allow
all permutations we can generate.
(vect_transform_slp_perm_load): Use the correct group-size.

* gcc.dg/vect/slp-perm-10.c: New testcase.
* gcc.dg/vect/slp-23.c: Adjust.
* gcc.dg/torture/pr53366-2.c: Also verify cross-iteration
vector pointer update.

From-SVN: r224221

9 years agogenmatch.c (expr::gen_transform): For conditions, guess the type from the second...
Marc Glisse [Mon, 8 Jun 2015 12:20:43 +0000 (14:20 +0200)] 
genmatch.c (expr::gen_transform): For conditions, guess the type from the second operand.

2015-06-08  Marc Glisse  <marc.glisse@inria.fr>

* genmatch.c (expr::gen_transform): For conditions, guess the type
from the second operand.

From-SVN: r224220

9 years agoFix try_transform_to_exit_first_loop_alt
Tom de Vries [Mon, 8 Jun 2015 11:53:27 +0000 (11:53 +0000)] 
Fix try_transform_to_exit_first_loop_alt

2015-06-08  Tom de Vries  <tom@codesourcery.com>

PR tree-optimization/66442
* gimple-iterator.h (gimple_seq_nondebug_singleton_p): Add function.
* tree-parloops.c (try_transform_to_exit_first_loop_alt): Return false
if the loop latch is not a singleton.  Use
gimple_seq_nondebug_singleton_p instead of gimple_seq_singleton_p.

From-SVN: r224218

9 years agore PR libstdc++/66417 (std::codecvt_utf16<char32_t, 0x10FFFF, std::codecvt_mode:...
Jonathan Wakely [Mon, 8 Jun 2015 11:09:17 +0000 (12:09 +0100)] 
re PR libstdc++/66417 (std::codecvt_utf16<char32_t, 0x10FFFF, std::codecvt_mode::generate_header> generates incorrect output)

PR libstdc++/66417
* src/c++11/codecvt.cc (write_utf16_code_point): Use adjust_byte_order
for single UTF-16 units.
* testsuite/22_locale/codecvt/codecvt_utf16/66417.cc: New.

From-SVN: r224217

9 years agore PR sanitizer/66452 ([UBSAN] *.Lubsan_data0' defined but not used)
Marek Polacek [Mon, 8 Jun 2015 10:35:24 +0000 (10:35 +0000)] 
re PR sanitizer/66452 ([UBSAN] *.Lubsan_data0' defined but not used)

PR sanitizer/66452
* toplev.c (check_global_declaration): Don't warn about artificial
decls.

* g++.dg/ubsan/pr66452.C: New test.

From-SVN: r224216

9 years agoobjc-runtime-shared-support.c (build_module_descriptor): Set TREE_USED on UOBJC_MODUL...
Aldy Hernandez [Mon, 8 Jun 2015 10:15:34 +0000 (10:15 +0000)] 
objc-runtime-shared-support.c (build_module_descriptor): Set TREE_USED on UOBJC_MODULES_decl.

* objc-runtime-shared-support.c (build_module_descriptor): Set
TREE_USED on UOBJC_MODULES_decl.

From-SVN: r224213

9 years ago* sv.po: Update.
Joseph Myers [Mon, 8 Jun 2015 09:42:56 +0000 (10:42 +0100)] 
* sv.po: Update.

From-SVN: r224211

9 years agoDon't dump low gimple functions in gimple dump
Tom de Vries [Mon, 8 Jun 2015 08:57:50 +0000 (08:57 +0000)] 
Don't dump low gimple functions in gimple dump

2015-06-08  Tom de Vries  <tom@codesourcery.com>

PR tree-optimization/66436
* cgraphunit.c (cgraph_node::analyze): Don't dump function to gimple
dump file.
* gimplify.c: Add tree-dump.h include.
(gimplify_function_tree): Dump function to gimple dump file.
* stor-layout.c (finalize_size_functions): Don't dump function to gimple
dump file.

* gcc.dg/gomp/dump-new-function-2.c: New test.
* gcc.dg/gomp/dump-new-function-3.c: Same.
* gcc.dg/gomp/dump-new-function.c: Same.

From-SVN: r224210

9 years agoAdd debug msg to dump_file in add_new_function
Tom de Vries [Mon, 8 Jun 2015 08:57:39 +0000 (08:57 +0000)] 
Add debug msg to dump_file in add_new_function

2015-06-08  Tom de Vries  <tom@codesourcery.com>

PR tree-optimization/66435
* cgraphunit.c (cgraph_node::add_new_function): Dump message on new
function.

* gcc.dg/gomp/notify-new-function-2.c: New test.
* gcc.dg/gomp/notify-new-function-3.c: Same.
* gcc.dg/gomp/notify-new-function.c: Same.

From-SVN: r224209

9 years agoAdd missing file.
Eric Botcazou [Mon, 8 Jun 2015 07:28:30 +0000 (07:28 +0000)] 
Add missing file.

From-SVN: r224208

9 years agoconfigure.ac (*-*-dragonfly*): New configuration.
John Marino [Mon, 8 Jun 2015 07:27:56 +0000 (07:27 +0000)] 
configure.ac (*-*-dragonfly*): New configuration.

gnattools/
* configure.ac (*-*-dragonfly*): New configuration.
* configure: Regenerate.
gcc/ada/
* a-intnam-dragonfly.ads: New.
* s-osinte-dragonfly.adb: Likewise.
* s-osinte-dragonfly.ads: Likewise.
* system-dragonfly-x86_64.ads: Likewise.
* adaint.c: Add BSD macros.
* cstreams.c: Likewise.
* gsocket.h: Likewise.
* link.c: Likewise.
* socket.c: Likewise.
* env.c: Add __DragonFly__, remove __FreeBSD__ macro.
* init.c: Add __DragonFly__, change __gnat_install_handler
prototype from empty to void.
* initialize.c: Add __DragonFly__.
* sysdep.c: Likewise.
* s-osinte-freebsd.adb: Use __get_errno instead of __error.
* tracebak.c: Set unwinder for i386 BSD.
* gcc-interface/Makefile.in: Add x86_64 DragonFly, tweak
x86_64 FreeBSD and x86 FreeBSD.

From-SVN: r224207

9 years agoDaily bump.
GCC Administrator [Mon, 8 Jun 2015 00:16:14 +0000 (00:16 +0000)] 
Daily bump.

From-SVN: r224206

9 years agoFix my previous commit.
Jan Hubicka [Mon, 8 Jun 2015 00:13:40 +0000 (00:13 +0000)] 
Fix my previous commit.

From-SVN: r224202

9 years agoalias.c (get_alias_set): Be ready for TYPE_CANONICAL of ptr_type_node to not be ptr_t...
Jan Hubicka [Sun, 7 Jun 2015 21:30:58 +0000 (23:30 +0200)] 
alias.c (get_alias_set): Be ready for TYPE_CANONICAL of ptr_type_node to not be ptr_to_node.

* alias.c (get_alias_set): Be ready for TYPE_CANONICAL
of ptr_type_node to not be ptr_to_node.
* tree.c (gimple_types_compatible_p): Do not match TREE_CODE of
TREE_TYPE of pointers.
* gimple-expr.c (useless_type_conversion): Reorder the check for
function pointers and TYPE_CANONICAL.
* lto.c (hash_canonical_type): Do not hash TREE_CODE of TREE_TYPE of
pointers.
* gfortran.dg/lto/bind_c-1_0.f90: New testcase.
* gfortran.dg/lto/bind_c-1_1.c: New testcase.
* gcc.dg/lto/c-compatible-types_0.c: Rename to ...
* gcc.dg/lto/c-compatible-types-1_0.c: this one; fix template
* gcc.dg/lto/c-compatible-types_1.c: Rename to ...
* gcc.dg/lto/c-compatible-types-1_1.c: this one; harden for
-fshort-enum.

From-SVN: r224201

9 years agostl_tree.h (_Rb_tree<>::__is_transparent<>): Move to outer scope and rename to ...
François Dumont [Sun, 7 Jun 2015 20:45:57 +0000 (20:45 +0000)] 
stl_tree.h (_Rb_tree<>::__is_transparent<>): Move to outer scope and rename to ...

2015-06-07  François Dumont  <fdumont@gcc.gnu.org>

* include/bits/stl_tree.h (_Rb_tree<>::__is_transparent<>): Move to
outer scope and rename to ...
(std::__hash_is_transparent<>): ... this.
* include/debug/stl_map.h (map::find<>,
map::lower_bound<>, map::upper_bound<>, map::equal_range<>): New
member function templates to perform heterogeneous lookup.
* include/debug/stl_multimap.h (multimap::find<>,
multimap::lower_bound<>, multimap::upper_bound<>,
multimap::equal_range<>): Likewise.
* include/debug/stl_multiset.h (multiset::find<>,
multiset::lower_bound<>, multiset::upper_bound<>,
multiset::equal_range<>): Likewise.
* include/debug/stl_set.h (set::find<>,
set::lower_bound<>, set::upper_bound<>, set::equal_range<>): Likewise.
* include/profile/stl_map.h (map::find<>, map::count<>,
map::lower_bound<>, map::upper_bound<>, map::equal_range<>): Likewise.
* include/profile/stl_multimap.h (multimap::find<>, multimap::count<>,
multimap::lower_bound<>, multimap::upper_bound<>,
multimap::equal_range<>): Likewise.
* include/profile/stl_multiset.h (multiset::find<>, multiset::count<>,
multiset::lower_bound<>, multiset::upper_bound<>,
multiset::equal_range<>): Likewise.
* include/profile/stl_set.h (set::find<>, set::count<>,
set::lower_bound<>, set::upper_bound<>, set::equal_range<>): Likewise.
* testsuite/23_containers/map/operations/1.cc: Check const variants.
* testsuite/23_containers/multimap/operations/1.cc: Likewise.
* testsuite/23_containers/multiset/operations/1.cc: Likewise.
* testsuite/23_containers/set/operations/1.cc: Likewise.

From-SVN: r224200

9 years agoDaily bump.
GCC Administrator [Sun, 7 Jun 2015 00:16:16 +0000 (00:16 +0000)] 
Daily bump.

From-SVN: r224198