]> git.ipfire.org Git - thirdparty/gcc.git/log
thirdparty/gcc.git
9 years agoUse combined_fn in tree-ssa-reassoc.c
rsandifo [Tue, 17 Nov 2015 18:45:20 +0000 (18:45 +0000)] 
Use combined_fn in tree-ssa-reassoc.c

Another patch to extend uses of built_in_function to combined_fn, this time
in tree-ssa-reassoc.c.

Tested on x86_64-linux-gnu, aarch64-linux-gnu and arm-linux-gnueabi.

gcc/
* tree-ssa-reassoc.c: Include case-cfn-macros.h.
(stmt_is_power_of_op): Use combined_fn instead of built-in codes.
(decrement_power, acceptable_pow_call): Likewise.
(attempt_builtin_copysign): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230480 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoUse combined_fn in tree-vrp.c
rsandifo [Tue, 17 Nov 2015 18:44:22 +0000 (18:44 +0000)] 
Use combined_fn in tree-vrp.c

Another patch to extend uses of built_in_function to combined_fn, this time
in tree-vrp.c.

Tested on x86_64-linux-gnu, aarch64-linux-gnu and arm-linux-gnueabi.

gcc/
* tree-vrp.c: Include case-cfn-macros.h.
(extract_range_basic): Switch on combined_fn rather than handling
built-in functions and internal functions separately.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230479 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoMake more use of combined_fn
rsandifo [Tue, 17 Nov 2015 18:43:42 +0000 (18:43 +0000)] 
Make more use of combined_fn

This patch generalises fold-const.[hc] routines to use combined_fn
instead of built_in_function.  It also updates gimple-ssa-backprop,c
since the update is simple and it avoids churn on the call to
negate_mathfn_p.

Tested on x86_64-linux-gnu, aarch64-linux-gnu and arm-linux-gnueabi.

gcc/
* fold-const.h (negate_mathfn_p): Take a combined_fn rather
than a built_in_function.
(tree_call_nonnegative_warnv_p): Take a combined_fn rather than
a function decl.
(integer_valued_real_call_p): Likewise.
* fold-const.c: Include case-cfn-macros.h
(negate_mathfn_p): Take a combined_fn rather than a built_in_function.
(negate_expr_p): Update accordingly.
(tree_call_nonnegative_warnv_p): Take a combined_fn rather than
a function decl.
(integer_valued_real_call_p): Likewise.
(tree_invalid_nonnegative_warnv_p): Update accordingly.
(integer_valued_real_p): Likewise.
* gimple-fold.c (gimple_call_nonnegative_warnv_p): Update call
to tree_call_nonnegative_warnv_p.
(gimple_call_integer_valued_real_p): Likewise
integer_valued_real_call_p.
* gimple-ssa-backprop.c: Include case-cfn-macros.h.
(backprop::process_builtin_call_use): Extend to combined_fn.
(strip_sign_op_1): Likewise.
(backprop::process_use): Don't check for built-in calls here.
(backprop::execute): Likewise.
(backprop::optimize_builtin_call): Update call to negate_mathfn_p.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230478 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoExtend fold_const_call to combined_fn
rsandifo [Tue, 17 Nov 2015 18:42:48 +0000 (18:42 +0000)] 
Extend fold_const_call to combined_fn

This patch extends fold_const_call so that it can handle internal
as well as built-in functions.

Tested on x86_64-linux-gnu, aarch64-linux-gnu and arm-linux-gnueabi.

gcc/
* fold-const-call.h (fold_const_call): Replace built_in_function
arguments with combined_fn arguments.
* fold-const-call.c: Include case-cfn-macros.h.
(fold_const_call_ss, fold_const_call_cs, fold_const_call_sc)
(fold_const_call_cc, fold_const_call_sss, fold_const_call_ccc)
(fold_const_call_ssss, fold_const_call_1, fold_const_call): Replace
built_in_function arguments with combined_fn arguments.
* builtins.c (fold_builtin_sincos, fold_builtin_1, fold_builtin_2)
(fold_builtin_3): Update calls to fold_const_call.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230477 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoAdd gencfn-macros.c
rsandifo [Tue, 17 Nov 2015 18:41:55 +0000 (18:41 +0000)] 
Add gencfn-macros.c

This patch automatically generates case macros such as:

        CASE_CFN_SQRT

for each {F,,L} floating-point built-in function and each {,L,LL,IMAX}
integer built-in function.  The macros match the same built-in
functions as CASE_FLT_FN and CASE_INT_FN but in addition include
the associated internal function, if any.

The idea is to make sure that users of combined_fn don't need to know
which built-in functions have internal-function equivalents.  If we add
a new function to internal-fn.def, all combined_fn users should pick it
up automatically.

The generator wants to use "hash_set <nofree_string_hash>",
so the patch follows hash_map in using the types given by the
traits as the key.  This is a no-op for current users of hash_set.

Tested on x86_64-linux-gnu, aarch64-linux-gnu and arm-linux-gnueabi.

gcc/
* Makefile.in (HASH_TABLE_H): Add GGC_H.
(MOSTLYCLEANFILES, generated_files): Add case-fn-macros.h.
(s-case-cfn-macros, case-cfn-macros.h, build/gencfn-macros.o)
(build/gencfn-macros$(build_exeext): New rules.
(genprogerr): Add cfn-macros.
* hash-set.h (hash_set): Use the traits value_type as the key.
* gencfn-macros.c: New file.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230476 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoAdd internal bitcount functions
rsandifo [Tue, 17 Nov 2015 18:40:31 +0000 (18:40 +0000)] 
Add internal bitcount functions

This patch adds internal function equivalents of all the INT_FN functions.
Unlike the math functions, these functions never set errno and the internal
functions should be exactly equivalent to the built-in ones.  The reason
for defining the internal functions is so that we can extend the
functionality to other modes, in particular vector modes.

Tested on x86_64-linux-gnu, aarch64-linux-gnu and arm-linux-gnueabi.

gcc/
* internal-fn.def (DEF_INTERNAL_INT_FN): New macro.
(CLRSB, CLZ, CTZ, FFS, PARITY, POPCOUNT): New functions.
* builtins.c (associated_internal_fn): Handle them.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230475 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoAdd internal math functions
rsandifo [Tue, 17 Nov 2015 18:39:02 +0000 (18:39 +0000)] 
Add internal math functions

This patch adds internal functions for simple FLT_FN built-in functions,
in cases where an associated optab already exists.  Unlike some of the
built-in functions, these internal functions never set errno.

LDEXP is an odd-one out in that its second operand is an integer.
All the others operate on uniform types.

The patch also adds a function to query the internal function associated
with a built-in function (if any), and another to test whether a given
gcall could be replaced by a call to an internal function on the current
target (as long as the caller deals with errno appropriately).

Tested on x86_64-linux-gnu, aarch64-linux-gnu and arm-linux-gnueabi.

gcc/
* builtins.h (associated_internal_fn): Declare.
(replacement_internal_fn): Likewise.
* builtins.c: Include internal-fn.h
(associated_internal_fn, replacement_internal_fn): New functions.
* internal-fn.def (DEF_INTERNAL_FLT_FN): New macro.
(ACOS, ASIN, ATAN, COS, EXP, EXP10, EXP2, EXPM1, LOG, LOG10, LOG1P)
(LOG2, LOGB, SIGNIFICAND, SIN, SQRT, TAN, CEIL, FLOOR, NEARBYINT)
(RINT, ROUND, TRUNC, ATAN2, COPYSIGN, FMOD, POW, REMAINDER, SCALB)
(LDEXP): New functions.
* internal-fn.c: Include recog.h.
(unary_direct, binary_direct): New macros.
(expand_direct_optab_fn): New function.
(expand_unary_optab_fn): New macro.
(expand_binary_optab_fn): Likewise.
(direct_unary_optab_supported_p): Likewise.
(direct_binary_optab_supported_p): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230474 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoAdd basic support for direct_optab internal functions
rsandifo [Tue, 17 Nov 2015 18:37:45 +0000 (18:37 +0000)] 
Add basic support for direct_optab internal functions

This patch adds a concept of internal functions that map directly to an
optab (here called "direct internal functions").  The function can only
be used if the associated optab can be used.

We currently have four functions like that:

- LOAD_LANES
- STORE_LANES
- MASK_LOAD
- MASK_STORE

so the patch converts them to the new infrastructure.  These four
all need different types of optabs, but future patches will add
regular unary and binary ones.

In general we need one or two modes to decide whether an optab is
supported, depending on whether it's a convert_optab or not.
This in turn means that we need up to two types to decide whether
an internal function is supported.  The patch records which types
are needed for each internal function, using -1 if the return type
should be used and N>=0 if the type of argument N should be used.

(LOAD_LANES and STORE_LANES are unusual in that both optab modes
come from the same array type.)

Tested on x86_64-linux-gnu, aarch64-linux-gnu and arm-linux-gnueabi.

gcc/
* coretypes.h (tree_pair): New type.
* internal-fn.def (DEF_INTERNAL_OPTAB_FN): New macro.  Use it
for MASK_LOAD, LOAD_LANES, MASK_STORE and STORE_LANES.
* internal-fn.h (direct_internal_fn_info): New structure.
(direct_internal_fn_array): Declare.
(direct_internal_fn_p, direct_internal_fn): New functions.
(direct_internal_fn_types, direct_internal_fn_supported_p): Declare.
* internal-fn.c (not_direct, mask_load_direct, load_lanes_direct)
(mask_store_direct, store_lanes_direct): New macros.
(direct_internal_fn_array) New array.
(get_multi_vector_move): Return the optab handler without asserting
that it is available.
(expand_LOAD_LANES): Rename to...
(expand_load_lanes_optab_fn): ...this and add an optab argument.
(expand_STORE_LANES): Rename to...
(expand_store_lanes_optab_fn): ...this and add an optab argument.
(expand_MASK_LOAD): Rename to...
(expand_mask_load_optab_fn): ...this and add an optab argument.
(expand_MASK_STORE): Rename to...
(expand_mask_store_optab_fn): ...this and add an optab argument.
(direct_internal_fn_types, direct_optab_supported_p)
(multi_vector_optab_supported_p, direct_internal_fn_supported_p)
(direct_internal_fn_supported_p): New functions.
(direct_mask_load_optab_supported_p): New macro.
(direct_load_lanes_optab_supported_p): Likewise.
(direct_mask_store_optab_supported_p): Likewise.
(direct_store_lanes_optab_supported_p): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230473 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoAdd a combined_fn enum
rsandifo [Tue, 17 Nov 2015 18:34:47 +0000 (18:34 +0000)] 
Add a combined_fn enum

I'm working on a patch series that needs to be able to treat built-in
functions and internal functions in a similar way.  This patch adds a
new enum, combined_fn, that combines the two together.  It also adds
utility functions for seeing which combined_fn (if any) is called by
a given CALL_EXPR or gcall.

Tested on x86_64-linux-gnu, aarch64-linux-gnu and arm-linux-gnueabi.

gcc/
* tree-core.h (internal_fn): Move immediately after the definition
of built_in_function.
(combined_fn): New enum.
* tree.h (as_combined_fn, builtin_fn_p, as_builtin_fn)
(internal_fn_p, as_internal_fn): New functions.
(get_call_combined_fn, combined_fn_name): Declare.
* tree.c (get_call_combined_fn): New function.
(combined_fn_name): Likewise.
* gimple.h (gimple_call_combined_fn): Declare.
* gimple.c (gimple_call_combined_fn): New function.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230472 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago PR bootstrap/68346
jason [Tue, 17 Nov 2015 18:16:35 +0000 (18:16 +0000)] 
PR bootstrap/68346

* c-common.c (warn_tautological_cmp): Fold before checking for
constants.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230471 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago PR bootstrap/68361
jason [Tue, 17 Nov 2015 18:16:29 +0000 (18:16 +0000)] 
PR bootstrap/68361

* cvt.c (cp_convert_and_check): Use warning_sentinel to suppress
-Wparentheses.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230470 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoFix PR number in ChangeLog
sandra [Tue, 17 Nov 2015 18:15:34 +0000 (18:15 +0000)] 
Fix PR number in ChangeLog

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230469 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoPR c++/68308 - [6 Regression] ICE: tree check: expected integer_cst,
msebor [Tue, 17 Nov 2015 18:09:36 +0000 (18:09 +0000)] 
PR c++/68308 - [6 Regression] ICE: tree check: expected integer_cst,
have var_decl in decompose, at tree.h:5105

gcc/
    * cp/init.c (build_new_1): Check for expression constness
    the right way.

testsuite/
    * g++.dg/init/new46.C: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230468 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago2015-11-17 Sandra Loosemore <sandra@codesourcery.com>
sandra [Tue, 17 Nov 2015 18:06:01 +0000 (18:06 +0000)] 
2015-11-17  Sandra Loosemore  <sandra@codesourcery.com>

PR target/56036
* doc/invoke.texi (Option Summary): Add -mms-bitfields to x86
option list.
(x86 Options): Add -mms-bitfields and -mno-ms-bitfields.  Move
discussion of the Microsoft structure layout details here from
its former home in extend.texi.
* doc/extend.texi (x86 Variable Attributes): Replace detailed
discussion with pointer to its new location.  Add cross-reference
to corresponding type attributes.
(x86 Type Attributes): Add cross-references to command-line options
and variable attributes.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230467 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago libgomp/
cesar [Tue, 17 Nov 2015 17:29:34 +0000 (17:29 +0000)] 
libgomp/
* config/nvptx/priority_queue.c: New file.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230466 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago2015-11-17 Dominique d'Humieres <dominiq@lps.ens.fr>
dominiq [Tue, 17 Nov 2015 16:29:45 +0000 (16:29 +0000)] 
2015-11-17  Dominique d'Humieres <dominiq@lps.ens.fr>

PR fortran/65751
* expr.c (gfc_check_pointer_assign): Fix error message.

* gfortran.dg/unlimited_polymorphic_2.f03: Update test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230465 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agogcc/
ienkovich [Tue, 17 Nov 2015 13:22:40 +0000 (13:22 +0000)] 
gcc/

PR middle-end/68134
* targhooks.c (default_get_mask_mode): Filter out
scalar modes returned by mode_for_vector.

gcc/testsuite/

PR middle-end/68134
* gcc.dg/pr68134.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230463 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago[ARM] PR 68143 Properly update memory offsets when expanding setmem
ktkachov [Tue, 17 Nov 2015 13:20:08 +0000 (13:20 +0000)] 
[ARM] PR 68143 Properly update memory offsets when expanding setmem

PR target/68143
* config/arm/arm.c (arm_block_set_unaligned_vect): Keep track of
offset from dstbase and use it appropriately in
adjust_automodify_address.
(arm_block_set_aligned_vect): Likewise.

* gcc.c-torture/execute/pr68143_1.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230462 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago * ChangeLog: Add missing entry.
uros [Tue, 17 Nov 2015 11:00:08 +0000 (11:00 +0000)] 
* ChangeLog: Add missing entry.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230460 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago * config/visium/t-visium (MULTILIB_OPTIONS): Add muser-mode.
ebotcazou [Tue, 17 Nov 2015 10:54:13 +0000 (10:54 +0000)] 
* config/visium/t-visium (MULTILIB_OPTIONS): Add muser-mode.
(MULTILIB_DIRNAMES): Adjust accordingly.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230459 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago[Patch AArch64] Add support for Cortex-A35
jgreenhalgh [Tue, 17 Nov 2015 10:41:17 +0000 (10:41 +0000)] 
[Patch AArch64] Add support for Cortex-A35

gcc/

* config/aarch64/aarch64-cores.def (cortex-a35): New.
* config/aarch64/aarch64.c (cortexa35_tunings): New.
* config/aarch64/aarch64-tune.md: Regenerate.
* doc/invoke.texi (-mcpu): Add Cortex-A35

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230458 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoFix commit date
ebotcazou [Tue, 17 Nov 2015 10:28:23 +0000 (10:28 +0000)] 
Fix commit date

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230457 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago PR target/68263
uros [Tue, 17 Nov 2015 09:45:35 +0000 (09:45 +0000)] 
PR target/68263
* config/i386/i386.h (BIGGEST_ALIGNMENT): Always define
to 32 for IAMCU.
* config/i386/sse.md (*mov<mode>_internal): Always enable
AVX and SSE unaligned moves for IAMCU.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230456 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago * gcc.dg/torture/pr68264.c: Use dg-add-options ieee.
uros [Tue, 17 Nov 2015 09:17:36 +0000 (09:17 +0000)] 
* gcc.dg/torture/pr68264.c: Use dg-add-options ieee.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230455 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoRelax trap assumptions in tree if convert.
vekumar [Tue, 17 Nov 2015 07:41:08 +0000 (07:41 +0000)] 
Relax trap assumptions in tree if convert.

2015-11-17  Venkataramanan Kumar  <Venkataramanan.Kumar@amd.com>

* tree-if-conv.c: Include varasm.h
(ref_DR_map): Define.
(baseref_DR_map): Like wise
(struct ifc_dr): Add new tree predicate field.
(hash_memrefs_baserefs_and_store_DRs_read_written_info): New function.
(memrefs_read_or_written_unconditionally): Remove.
(write_memrefs_written_at_least_once): Remove.
(ifcvt_memrefs_wont_trap): Use hash maps to query
unconditional read/written information.
(if_convertible_loop_p_1):  Initialize hash maps and predicates
before hashing data references and delete hashmaps at the end.

2015-11-17  Venkataramanan Kumar  <Venkataramanan.Kumar@amd.com>

* gcc.dg/tree-ssa/ifc-8.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230454 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago * constexpr.c (cxx_eval_builtin_function_call): Use cp_fully_fold
jason [Tue, 17 Nov 2015 03:58:18 +0000 (03:58 +0000)] 
* constexpr.c (cxx_eval_builtin_function_call): Use cp_fully_fold
to fold arguments to __builtin_constant_p.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230453 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago2015-11-16 Thomas Preud'homme <thomas.preudhomme@arm.com>
sandra [Tue, 17 Nov 2015 01:56:17 +0000 (01:56 +0000)] 
2015-11-16  Thomas Preud'homme <thomas.preudhomme@arm.com>

PR 56036
* doc/invoke.texi (Optimize Options): Move @end table to the right
place.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230452 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago2015-11-16 Sandra Loosemore <sandra@codesourcery.com>
sandra [Tue, 17 Nov 2015 01:19:59 +0000 (01:19 +0000)] 
2015-11-16  Sandra Loosemore  <sandra@codesourcery.com>

PR 65129
* doc/extend.texi (__builtin_assume_aligned): Fix formatting of
return value.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230451 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoDaily bump.
gccadmin [Tue, 17 Nov 2015 00:16:12 +0000 (00:16 +0000)] 
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230448 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago * sv.po: Update.
jsm28 [Mon, 16 Nov 2015 23:15:57 +0000 (23:15 +0000)] 
* sv.po: Update.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230442 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago2015-11-16 Michael Meissner <meissner@linux.vnet.ibm.com>
meissner [Mon, 16 Nov 2015 22:13:21 +0000 (22:13 +0000)] 
2015-11-16  Michael Meissner  <meissner@linux.vnet.ibm.com>

* config/rs6000/vsx.md (VSX_L): Do not include IBM extended double
128-bit types, just types that fit in a single vector.
* config/rs6000/rs6000.md (FMOVE128_GPR): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230440 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoinline asm and multi-alternative constraints
law [Mon, 16 Nov 2015 21:57:12 +0000 (21:57 +0000)] 
inline asm and multi-alternative constraints

* doc/md.texi ('#' and '*' constraint modifiers): Do not include these
in the user documentation.
(define_peephole2, define_split): Similarly.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230439 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago PR libstdc++/67440
devans [Mon, 16 Nov 2015 21:32:26 +0000 (21:32 +0000)] 
PR libstdc++/67440
* python/libstdcxx/v6/printers.py (find_type): Handle "const" in
type name.
* testsuite/libstdc++-prettyprinters/debug.cc: Add test for
const set<int>.
* testsuite/libstdc++-prettyprinters/simple.cc: Ditto.
* testsuite/libstdc++-prettyprinters/simple11.cc: Ditto.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230437 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago * lto-streamer-out.c (write_global_references): Adjust integer type.
law [Mon, 16 Nov 2015 21:13:37 +0000 (21:13 +0000)] 
* lto-streamer-out.c (write_global_references): Adjust integer type.
(lto_output_decl_state_refs): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230436 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago PR c++/68362
mpolacek [Mon, 16 Nov 2015 20:16:57 +0000 (20:16 +0000)] 
PR c++/68362
* c-common.c (check_case_bounds): Fold low and high cases.

* g++.dg/delayedfold/switch-1.C: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230435 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago2015-11-16 Steven G. Kargl <kargl@gcc.gnu.org>
kargl [Mon, 16 Nov 2015 19:15:25 +0000 (19:15 +0000)] 
2015-11-16  Steven G. Kargl  <kargl@gcc.gnu.org>

PR fortran/58027
PR fortran/60993
* expr.c (gfc_check_init_expr): Prevent a redundant check when a
__convert_* function was inserted into an array constructor.
(gfc_check_assign_symbol): Check for an initialization expression
when a __convert_* was inserted.

2015-11-16  Steven G. Kargl  <kargl@gcc.gnu.org>

PR fortran/58027
PR fortran/60993
* gfortran.dg/pr58027.f90: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230433 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago * c-ada-spec.c (dump_ada_template): Use RECORD_OR_UNION_TYPE_P.
mpolacek [Mon, 16 Nov 2015 17:58:39 +0000 (17:58 +0000)] 
* c-ada-spec.c (dump_ada_template): Use RECORD_OR_UNION_TYPE_P.
* c-common.c (c_common_get_alias_set): Likewise.
(handle_visibility_attribute): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230432 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago[Patch ARM] Add support for Cortex-A35
jgreenhalgh [Mon, 16 Nov 2015 17:41:10 +0000 (17:41 +0000)] 
[Patch ARM] Add support for Cortex-A35

gcc/

* config/arm/arm-cores.def (cortex-a35): New.
* config/arm/arm.c (arm_cortex_a35_tune): New.
* config/arm/arm-tables.opt: Regenerate.
* config/arm/arm-tune.md: Regenerate.
* config/arm/bpabi.h (BE8_LINK_SPEC): Add cortex-a35.
* config/arm/t-aprofile: Likewise.
* doc/invoke.texi (-mcpu): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230431 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoAdd missing v8a cpus to the t-aprofile file.
wilson [Mon, 16 Nov 2015 16:30:44 +0000 (16:30 +0000)] 
Add missing v8a cpus to the t-aprofile file.

gcc/
* config/arm/t-aprofile (MULTILIB_MATCHES): Add lines for exynos-m1
and qdf24xx and xgene1 to match -march=armv8-a.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230430 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agosimplify-rtx: Simplify sign_extend of lshiftrt to zero_extend (PR68330)
segher [Mon, 16 Nov 2015 15:51:33 +0000 (15:51 +0000)] 
simplify-rtx: Simplify sign_extend of lshiftrt to zero_extend (PR68330)

Since r230164, in PR68330 combine ends up with a sign_extend of an
lshiftrt by some constant, and it does not know to morph that into a
zero_extract (the extend will always extend with zeroes).  I think
it is best to let simplify-rtx always replace such a sign_extend by
a zero_extend, after which everything works as expected.

2015-11-15  Segher Boessenkool  <segher@kernel.crashing.org>

PR rtl-optimization/68330
* simplify-rtx.c (simplify_unary_operation_1): Simplify SIGN_EXTEND
of LSHIFTRT by a non-zero constant integer.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230429 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago2015-11-16 Richard Biener <rguenther@suse.de>
rguenth [Mon, 16 Nov 2015 15:04:00 +0000 (15:04 +0000)] 
2015-11-16  Richard Biener  <rguenther@suse.de>

        PR tree-optimization/68306
* tree-vect-data-refs.c (vect_verify_datarefs_alignment): Fix
bogus copying from verify_data_ref_alignment and use continue
instead of return.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230428 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agogcc/
olegendo [Mon, 16 Nov 2015 14:11:50 +0000 (14:11 +0000)] 
gcc/
PR target/68277
* config/sh/sh.md (addsi3_scr): Handle reg overlap of operands[0] and
operands[2].
(*addsi3): Add another insn_and_split variant for reload.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230425 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago2015-11-16 Richard Biener <rguenther@suse.de>
rguenth [Mon, 16 Nov 2015 14:06:08 +0000 (14:06 +0000)] 
2015-11-16  Richard Biener  <rguenther@suse.de>

PR middle-end/68117
* cfgexpand.c (pass_expand::execute): Destroy the edge
redirection var map before setting RTL CFG hooks.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230424 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago[i386]Migrate reduction optabs to reduc_<op>_scal
alalaw01 [Mon, 16 Nov 2015 13:53:23 +0000 (13:53 +0000)] 
[i386]Migrate reduction optabs to reduc_<op>_scal

* config/i386/sse.md (reduc_splus_v8df): Rename to...
(reduc_plus_scal_v8df): ...here; reduce to temp and extract scalar.

(reduc_splus_v4df): Rename to...
(reduc_plus_scal_v4df): ...here; reduce to temp and extract scalar.

(reduc_splus_v2df): Rename to...
(reduc_plus_scal_v2df): ...here; reduce to temp and extract scalar.

(reduc_splus_v16sf): Rename to...
(reduc_plus_scal_v16sf): ...here; reduce to temp and extract scalar.

(reduc_splus_v8sf): Rename to...
(reduc_plus_scal_v8sf): ...here; reduce to temp and extract scalar.

(reduc_splus_v4sf): Rename to...
(reduc_plus_scal_v4sf): ...here; reduce to temp and extract scalar.

(reduc_<code>_<mode>, all 3 variants): Rename each to...
(reduc_<code>_scal_<mode>): ...here; reduce to temp and extract scalar.

(reduc_umin_v8hf): Rename to...
(reduc_umin_scal_v8hf): ...here; reduce to temp and extract scalar.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230423 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoAdd __attribute__((__simd__)) to GCC.
kyukhin [Mon, 16 Nov 2015 13:14:57 +0000 (13:14 +0000)] 
Add __attribute__((__simd__)) to GCC.

gcc/
* omp-low.c (pass_omp_simd_clone::gate): If target allows - call
without additional conditions.
* doc/extend.texi (@item simd): New.
gcc/c-family/
* c-common.c (handle_simd_attribute): New.
(struct attribute_spec): Add entry for "simd".
(handle_simd_attribute): New.
gcc/c/
* c-parser.c (c_finish_omp_declare_simd): Look for
"simd" attribute as well. Update error message.
gcc/cp/
* parser.c (cp_parser_late_parsing_cilk_simd_fn_info): Look for
"simd" attribute as well. Update error message.
gcc/testsuite/
* c-c++-common/attr-simd.c: New test.
* c-c++-common/attr-simd-2.c: New test.
* c-c++-common/attr-simd-3.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230422 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago[AArch64] Fix gcc.target/aarch64/vclz.c
alalaw01 [Mon, 16 Nov 2015 12:41:20 +0000 (12:41 +0000)] 
[AArch64] Fix gcc.target/aarch64/vclz.c

* gcc.target/aarch64/vclz.c: Correctly place INHIB_OPTIMIZATION.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230421 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoRemove first_pass_instance
vries [Mon, 16 Nov 2015 12:40:50 +0000 (12:40 +0000)] 
Remove first_pass_instance

2015-11-16  Tom de Vries  <tom@codesourcery.com>

* passes.c (first_pass_instance): Remove variable.
(execute_todo): Remove setting of first_pass_instance.
* tree-pass.h (first_pass_instance): Remove declaration.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230420 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoRemove first_pass_instance from pass_ccp
vries [Mon, 16 Nov 2015 12:40:41 +0000 (12:40 +0000)] 
Remove first_pass_instance from pass_ccp

2015-11-16  Tom de Vries  <tom@codesourcery.com>

* passes.def: Add arg to pass_ccp pass instantiation.
* tree-ssa-ccp.c (ccp_finalize): Add param nonzero_p.  Use nonzero_p
instead of first_pass_instance.
(do_ssa_ccp): Add and handle param nonzero_p.
(pass_ccp::pass_ccp): Initialize nonzero_p.
(pass_ccp::set_pass_param): New member function.  Set nonzero_p.
(pass_ccp::execute): Call do_ssa_ccp with extra arg.
(pass_ccp::nonzero_p): New private member.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230419 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoRemove first_pass_instance from pass_object_sizes
vries [Mon, 16 Nov 2015 12:40:33 +0000 (12:40 +0000)] 
Remove first_pass_instance from pass_object_sizes

2015-11-16  Tom de Vries  <tom@codesourcery.com>

* passes.def: Add arg to pass_object_sizes pass instantiation.
* tree-object-size.c (pass_object_sizes::pass_object_sizes): Initialize
insert_min_max_p.
(pass_object_sizes::set_pass_param): New member function.  Set
insert_min_max_p.
(pass_object_sizes::insert_min_max_p): New private member.
(pass_object_sizes::execute): Use insert_min_max_p instead of
first_pass_instance.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230418 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoRemove first_pass_instance from pass_dominator
vries [Mon, 16 Nov 2015 12:40:24 +0000 (12:40 +0000)] 
Remove first_pass_instance from pass_dominator

2015-11-16  Tom de Vries  <tom@codesourcery.com>

* passes.def: Add arg to pass_dominator pass instantiation.
* tree-pass.h (first_pass_instance): Remove pass_dominator-related bit
of comment.
* tree-ssa-dom.c (pass_dominator::pass_dominator): Initialize
may_peel_loop_headers_p.
(pass_dominator::set_pass_param): New member function.  Set
may_peel_loop_headers_p.
(pass_dominator::may_peel_loop_headers_p): New private member.
(pass_dominator::execute): Use may_peel_loop_headers_p instead of
first_pass_instance.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230417 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoRemove first_pass_instance from pass_reassoc
vries [Mon, 16 Nov 2015 12:40:14 +0000 (12:40 +0000)] 
Remove first_pass_instance from pass_reassoc

2015-11-16  Tom de Vries  <tom@codesourcery.com>

* passes.def: Add arg to pass_reassoc pass instantiation.
* tree-ssa-reassoc.c (reassoc_insert_powi_p): New static variable.
(acceptable_pow_call, reassociate_bb): Use reassoc_insert_powi_p instead
of first_pass_instance.
(execute_reassoc): Add and handle insert_powi_p parameter.
(pass_reassoc::insert_powi_p): New private member.
(pass_reassoc::pass_reassoc): Initialize insert_powi_p.
(pass_reassoc::set_pass_param): New member function.  Set insert_powi_p.
(pass_reassoc::execute): Call execute_reassoc with extra arg.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230416 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoRemove first_pass_instance from pass_vrp
vries [Mon, 16 Nov 2015 12:40:05 +0000 (12:40 +0000)] 
Remove first_pass_instance from pass_vrp

2015-11-16  Tom de Vries  <tom@codesourcery.com>

* gdbhooks.py (class PassNames): Handle extra arg NEXT_PASS argument.
* gen-pass-instances.awk (handle_line): Same.
* pass_manager.h (class pass_manager): Define and undefine
NEXT_PASS_WITH_ARG.
* passes.c (opt_pass::set_pass_param): New function.
(pass_manager::pass_manager): Define and undefine NEXT_PASS_WITH_ARG.
* passes.def: Add extra arg to NEXT_PASS (pass_vrp).
* tree-pass.h (gimple_opt::set_pass_param): Declare.
* tree-vrp.c (vrp_finalize, execute_vrp): Add and handle
warn_array_bounds_p parameter.
(pass_vrp::pass_vrp): Initialize warn_array_bounds_p.
(pass_vrp::set_pass_param): New function.
(pass_vrp::execute): Add warn_array_bounds_p arg to execute_vrp call.
(pass_vrp::warn_array_bounds_p): New private member.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230415 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago * config/sparc/sparc.c (sparc_emit_probe_stack_range): Adjust.
ebotcazou [Mon, 16 Nov 2015 12:19:22 +0000 (12:19 +0000)] 
* config/sparc/sparc.c (sparc_emit_probe_stack_range): Adjust.
(output_probe_stack_range): Rotate the loop and simplify.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230414 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago * config/rs6000/rs6000.c (rs6000_emit_probe_stack_rang): Adjust.
ebotcazou [Mon, 16 Nov 2015 12:17:51 +0000 (12:17 +0000)] 
* config/rs6000/rs6000.c (rs6000_emit_probe_stack_rang): Adjust.
(output_probe_stack_range): Rotate the loop and simplify.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230413 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago * config/i386/i386.c (ix86_adjust_stack_and_probe): Adjust and use
ebotcazou [Mon, 16 Nov 2015 12:16:54 +0000 (12:16 +0000)] 
* config/i386/i386.c (ix86_adjust_stack_and_probe): Adjust and use
an lea instruction when possible.
(output_adjust_stack_and_probe): Rotate the loop and simplify.
(ix86_emit_probe_stack_range): Adjust.
(output_probe_stack_range): Rotate the loop and simplify.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230412 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago2015-11-16 Christian Bruel <christian.bruel@st.com>
chrbr [Mon, 16 Nov 2015 11:25:02 +0000 (11:25 +0000)] 
2015-11-16  Christian Bruel  <christian.bruel@st.com>

* config/arm/arm_neon.h: Remove #ifndef check on __ARM_NEON.
Replace #ifdef __ARM_FEATURE_CRYPTO, __ARM_FEATURE_FMA, __ARM_FP
with appropriate pragma GCC target.

2015-11-16  Christian Bruel  <christian.bruel@st.com>

* lib/target-supports.exp (check_effective_target_arm_neon_ok_nocache):
 Check __ARM_NEON__ instead of "arm_neon.h.
* gcc.target/arm/attr-neon3.c: New test.
* gcc.target/arm/attr-neon-fp16.c: Likewise

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230411 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago2015-11-16 Christian Bruel <christian.bruel@st.com>
chrbr [Mon, 16 Nov 2015 11:20:02 +0000 (11:20 +0000)] 
2015-11-16  Christian Bruel  <christian.bruel@st.com>

PR target/65837
* config/arm/arm-c.c (arm_cpu_builtins): Conditionally set and reset
__ARM_FEATURE_FMA and __ARM_NEON_FP, __ARM_FP.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230410 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago[AArch64] Cortex-A57 Choose some new branch costs.
jgreenhalgh [Mon, 16 Nov 2015 10:30:21 +0000 (10:30 +0000)] 
[AArch64] Cortex-A57 Choose some new branch costs.

gcc/

* config/aarch64/aarch64.c (cortexa57_branch_costs): New.
(cortexa57_tunings): Use it.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230409 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago2015-11-16 Christian Bruel <christian.bruel@st.com>
chrbr [Mon, 16 Nov 2015 10:21:09 +0000 (10:21 +0000)] 
2015-11-16  Christian Bruel  <christian.bruel@st.com>

PR target/65837
* config/arm/arm-c.c (arm_cpu_builtins): Set or reset
__ARM_FEATURE_CRYPTO, __VFP_FP__, __ARM_NEON__
(arm_pragma_target_parse): Change check for arm_cpu_builtins.
undefine __ARM_FP.
* config/arm/arm.c (arm_can_inline_p): Check FPUs.
(arm_valid_target_attribute_rec): Handle -mfpu attribute target.
* doc/invoke.texi (-mfpu=): Mention attribute and pragma.
* doc/extend.texi (-mfpu=): Describe attribute.

2015-11-16  Christian Bruel  <christian.bruel@st.com>

PR target/65837
gcc.target/arm/lto/pr65837_0.c
gcc.target/arm/attr-neon2.c
gcc.target/arm/attr-neon.c
gcc.target/arm/attr-neon-builtin-fail.c
gcc.target/arm/attr-crypto.c

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230408 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agocoding nit
chrbr [Mon, 16 Nov 2015 09:38:29 +0000 (09:38 +0000)] 
coding nit

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230407 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago2015-11-16 Christian Bruel <christian.bruel@st.com>
chrbr [Mon, 16 Nov 2015 09:00:09 +0000 (09:00 +0000)] 
2015-11-16  Christian Bruel  <christian.bruel@st.com>

PR target/65837
* config/arm/arm-protos.h (arm_init_neon_builtins): Declare.
* config/arm/arm.c (arm_valid_target_attribute_tree): Call
arm_init_neon_builtins.
* config/arm/arm-builtins.c (arm_init_neon_builtins): Split into...
(arm_init_neon_builtins_internal)
(arm_init_crypto_builtins_internal):
Test and set neon_set_p, neon_crypto_set_p.
(neon_set_p, neon_crypto_set_p): New static booleans.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230406 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago2015-11-16 Richard Biener <rguenther@suse.de>
rguenth [Mon, 16 Nov 2015 08:57:42 +0000 (08:57 +0000)] 
2015-11-16  Richard Biener  <rguenther@suse.de>

* gcc.dg/vect/bb-slp-32.c: Adjust testcase.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230405 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago2015-11-16 Christian Bruel <christian.bruel@st.com>
chrbr [Mon, 16 Nov 2015 08:46:42 +0000 (08:46 +0000)] 
2015-11-16  Christian Bruel  <christian.bruel@st.com>

PR target/65837
* config/arm/arm.c (arm_fpu_desc): Remove.
(all_fpus): Make global.
(arm_option_override): Use FPU TARGET accessors.
(arm_declare_function_name): Likewise.
* config/arm/arm.h (TARGET_VFP, TARGET_VFPD32, TARGET_VFP5)
(TARGET_VFP_SINGLE, TARGET_VFP_DOUBLE, TARGET_NEON_FP16)
(TARGET_FP16, TARGET_FMA, TARGET_FPU_ARMV8, TARGET_CRYPTO)
(TARGET_NEON): Likewise.
(all_fpus): Declare extern.
(TARGET_FPU_NAME, TARGET_FPU_MODEL, TARGET_FPU_REV)
(TARGET_FPU_REGS, TARGET_FPU_FEATURES): Define all_fpus accessors.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230404 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoPR 68366 - include emit-rtl.h in sdbout.c
tbsaunde [Mon, 16 Nov 2015 02:28:15 +0000 (02:28 +0000)] 
PR 68366 - include emit-rtl.h in sdbout.c

Some of the pa target macros rely on macros in emit-rtl.h and sdbout.c
uses some of those macros, which means that sdbout.c needs to include
emit-rtl.h.

gcc/ChangeLog:

2015-11-15  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>

PR middle-end/68366
* sdbout.c: Include emit-rtl.h and function.h.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230402 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoDaily bump.
gccadmin [Mon, 16 Nov 2015 00:16:12 +0000 (00:16 +0000)] 
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230401 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago * config/rs6000/on_exit.c: New file.
dje [Sun, 15 Nov 2015 23:41:44 +0000 (23:41 +0000)] 
    * config/rs6000/on_exit.c: New file.
        * config/rs6000/t-aix-cxa (LIB2ADDEH): Build on_exit.c.
        * config/rs6000/libgcc-aix-cxa.ver (on_exit): Add symbol to exports.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230398 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago * config/i386/freebsd.h (SUBTARGET32_DEFAULT_CPU): Change to i586.
gerald [Sun, 15 Nov 2015 20:03:24 +0000 (20:03 +0000)] 
* config/i386/freebsd.h (SUBTARGET32_DEFAULT_CPU): Change to i586.
Remove support for FreeBSD 5 and earlier.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230397 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago2015-11-15 Paul Thomas <pault@gcc.gnu.org>
pault [Sun, 15 Nov 2015 14:07:52 +0000 (14:07 +0000)] 
2015-11-15  Paul Thomas  <pault@gcc.gnu.org>

PR fortran/50221
PR fortran/68216
PR fortran/63932
PR fortran/66408
* trans_array.c (gfc_conv_scalarized_array_ref): Pass the
symbol decl for deferred character length array references.
* trans-stmt.c (gfc_trans_allocate): Keep the string lengths
to update deferred length character string lengths.
* trans-types.c (gfc_get_dtype_rank_type); Use the string
length of deferred character types for the dtype size.
* trans.c (gfc_build_array_ref): For references to deferred
character arrays, use the domain max value, if it is a variable
to set the 'span' and use pointer arithmetic for acces to the
element.
(trans_code): Set gfc_current_locus for diagnostic purposes.

PR fortran/67674
* trans-expr.c (gfc_conv_procedure_call): Do not fix deferred
string lengths of components.

PR fortran/49954
* resolve.c (deferred_op_assign): New function.
(gfc_resolve_code): Call it.
* trans-array.c (concat_str_length): New function.
(gfc_alloc_allocatable_for_assignment): Jump directly to alloc/
realloc blocks for deferred character length arrays because the
string length might change, even if the shape is the same. Call
concat_str_length to obtain the string length for concatenation
since it is needed to compute the lhs string length.
Set the descriptor dtype appropriately for the new string
length.
* trans-expr.c (gfc_trans_assignment_1): Use the rse string
length for all characters, other than deferred types. For
concatenation operators, push the rse.pre block to the inner
most loop so that the temporary pointer and the assignments
are properly placed.

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

PR fortran/50221
* gfortran.dg/deferred_character_1.f90: New test.
* gfortran.dg/deferred_character_4.f90: New test for comment
#4 of the PR.

PR fortran/68216
* gfortran.dg/deferred_character_2.f90: New test.

PR fortran/67674
* gfortran.dg/deferred_character_3.f90: New test.

PR fortran/63932
* gfortran.dg/deferred_character_5.f90: New test.

PR fortran/66408
* gfortran.dg/deferred_character_6.f90: New test.

PR fortran/49954
* gfortran.dg/deferred_character_7.f90: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230396 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoPR libstdc++/68353 fix _GLIBCXX_USE_C99_WCHAR test
redi [Sun, 15 Nov 2015 11:15:08 +0000 (11:15 +0000)] 
PR libstdc++/68353 fix _GLIBCXX_USE_C99_WCHAR test

PR libstdc++/68353
* include/bits/basic_string.h: Test value of _GLIBCXX_USE_C99_WCHAR
not whether it is defined.
* include/ext/vstring.h: Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230395 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoalways define ENABLE_OFFLOADING
tbsaunde [Sun, 15 Nov 2015 00:18:08 +0000 (00:18 +0000)] 
always define ENABLE_OFFLOADING

gcc/cp/ChangeLog:

2015-11-14  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>

* parser.c (cp_parser_omp_declare_target): Adjust.

gcc/ChangeLog:

2015-11-14  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>

* configure: Regenerate.
* configure.ac: Always define ENABLE_OFFLOADING.
* cgraph.c (cgraph_node::create): Adjust.
* gcc.c (process_command): Likewise.
* omp-low.c (create_omp_child_function): Likewise.
(expand_omp_target): Likewise.
* varpool.c (varpool_node::get_create): Likewise.

gcc/c/ChangeLog:

2015-11-14  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>

* c-parser.c (c_parser_omp_declare_target): Adjust.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230393 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoalways define EH_RETURN_HANDLER_RTX
tbsaunde [Sun, 15 Nov 2015 00:18:01 +0000 (00:18 +0000)] 
always define EH_RETURN_HANDLER_RTX

gcc/ChangeLog:

2015-11-14  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>

* defaults.h (EH_RETURN_HANDLER_RTX): New default definition.
* df-scan.c (df_get_exit_block_use_set): Adjust.
* except.c (expand_eh_return): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230392 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoalways define TARGET_PECOFF
tbsaunde [Sun, 15 Nov 2015 00:17:56 +0000 (00:17 +0000)] 
always define TARGET_PECOFF

gcc/ChangeLog:

2015-11-14  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>

* config/i386/i386.h (TARGET_PECOFF): Remove define.
* defaults.h (TARGET_PECOFF): New default definition.
* varasm.c (handle_vtv_comdat_section): Adjust.

gcc/cp/ChangeLog:

2015-11-14  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>

* vtable-class-hierarchy.c (vtv_generate_init_routine): Adjust.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230391 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoremove conditional compilation of sdb debug info
tbsaunde [Sun, 15 Nov 2015 00:17:51 +0000 (00:17 +0000)] 
remove conditional compilation of sdb debug info

gcc/ChangeLog:

2015-11-14  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>

* defaults.h: New definition of SDB_DEBUGGING_INFO.
* doc/tm.texi: Regenerate.
* doc/tm.texi.in: Adjust.
* final.c (rest_of_clean_state): Remove check if
SDB_DEBUGGING_INFO is defined.
* function.c (number_blocks): Likewise.
* output.h: Likewise.
* sdbout.c: Likewise.
* toplev.c (process_options): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230390 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoremove EXTENDED_SDB_BASIC_TYPES
tbsaunde [Sun, 15 Nov 2015 00:17:43 +0000 (00:17 +0000)] 
remove EXTENDED_SDB_BASIC_TYPES

The last target using this was i960, which was removed many years ago,
so there's no reason to keep it.

gcc/ChangeLog:

2015-11-14  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>

* gsyms.h (enum sdb_type): Remove code for
EXTENDED_SDB_BASIC_TYPES.
(enum sdb_masks): Likewise.
* sdbout.c (plain_type_1): Likewise.
* system.h: Poison EXTENDED_SDB_BASIC_TYPES macro.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230389 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoDaily bump.
gccadmin [Sun, 15 Nov 2015 00:16:15 +0000 (00:16 +0000)] 
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230388 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago * libgomp.texi: Update references from OpenMP 4.0 to OpenMP 4.5
jakub [Sat, 14 Nov 2015 22:02:42 +0000 (22:02 +0000)] 
* libgomp.texi: Update references from OpenMP 4.0 to OpenMP 4.5
sections.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230384 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago2015-11-14 Andreas Tobler <andreast@gcc.gnu.org>
andreast [Sat, 14 Nov 2015 21:17:24 +0000 (21:17 +0000)] 
2015-11-14  Andreas Tobler  <andreast@gcc.gnu.org>

    * acinclude.m4 (GLIBCXX_ENABLE_CLOCALE): Change locale implementation
    from darwin to DragonFly.
    * configure: Regenerate.
    * config/os/bsd/freebsd/ctype_configure_char.cc: Improve locale
    support, do it the same as DragonFly.
    * config/os/bsd/freebsd/os_defines.h: Add fine grained C99 defines.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230383 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago PR bootstrap/68346
jason [Sat, 14 Nov 2015 18:54:16 +0000 (18:54 +0000)] 
PR bootstrap/68346
* call.c (build_new_op_1): Don't fold arguments to
warn_tautological_cmp.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230382 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agogcc/
jakub [Sat, 14 Nov 2015 18:42:13 +0000 (18:42 +0000)] 
gcc/
2015-11-14  Jakub Jelinek  <jakub@redhat.com>

* omp-low.c (lower_omp_ordered): Add argument to GOMP_SMD_ORDERED_*
internal calls - 0 if ordered simd and 1 for ordered threads simd.
* tree-vectorizer.c (adjust_simduid_builtins): If GOMP_SIMD_ORDERED_*
argument is 1, replace it with GOMP_ordered_* call instead of removing
it.
gcc/c/
2015-11-14  Jakub Jelinek  <jakub@redhat.com>

* c-typeck.c (c_finish_omp_clauses): Don't mark
GOMP_MAP_FIRSTPRIVATE_POINTER decls addressable.
gcc/cp/
2015-11-14  Jakub Jelinek  <jakub@redhat.com>

* semantics.c (finish_omp_clauses): Don't mark
GOMP_MAP_FIRSTPRIVATE_POINTER decls addressable.
libgomp/
2015-11-14  Jakub Jelinek  <jakub@redhat.com>
    Aldy Hernandez  <aldyh@redhat.com>
    Ilya Verbin  <ilya.verbin@intel.com>

* ordered.c (gomp_doacross_init, GOMP_doacross_post,
GOMP_doacross_wait, gomp_doacross_ull_init, GOMP_doacross_ull_post,
GOMP_doacross_ull_wait): For GFS_GUIDED don't divide number of
iterators or IV by chunk size.
* parallel.c (gomp_resolve_num_threads): Don't assume that
if thr->ts.team is non-NULL, then pool must be non-NULL.
* libgomp-plugin.h (GOMP_PLUGIN_target_task_completion): Declare.
* libgomp.map (GOMP_PLUGIN_1.1): New symbol version, export
GOMP_PLUGIN_target_task_completion.
* Makefile.am (libgomp_la_SOURCES): Add priority_queue.c.
* Makefile.in: Regenerate.
* libgomp.h: Shuffle prototypes and forward definitions around so
priority queues can be defined.
(enum gomp_task_kind): Add GOMP_TASK_ASYNC_RUNNING.
(enum gomp_target_task_state): New enum.
(struct gomp_target_task): Add state, tgt, task and team fields.
(gomp_create_target_task): Change return type to bool, add
state argument.
(gomp_target_task_fn): Change return type to bool.
(struct gomp_device_descr): Add async_run_func.
(struct gomp_task): Remove children, next_child, prev_child,
next_queue, prev_queue, next_taskgroup, prev_taskgroup.
Add pnode field.
(struct gomp_taskgroup): Remove children.
Add taskgroup_queue.
(struct gomp_team): Change task_queue type to a priority queue.
(splay_compare): Define inline.
(priority_queue_offset): New.
(priority_node_to_task): New.
(task_to_priority_node): New.
* oacc-mem.c: Do not include splay-tree.h.
* priority_queue.c: New file.
* priority_queue.h: New file.
* splay-tree.c: Do not include splay-tree.h.
(splay_tree_foreach_internal): New.
(splay_tree_foreach): New.
* splay-tree.h: Become re-entrant if splay_tree_prefix is defined.
(splay_tree_callback): Define typedef.
* target.c (splay_compare): Move to libgomp.h.
(GOMP_target): Don't adjust *thr in any way around running offloaded
task.
(GOMP_target_ext): Likewise.  Handle target nowait.
(GOMP_target_update_ext, GOMP_target_enter_exit_data): Check
return value from gomp_create_target_task, if false, fallthrough
as if no dependencies exist.
(gomp_target_task_fn): Change return type to bool, return true
if the task should have another part scheduled later.  Handle
target nowait.
(gomp_load_plugin_for_device): Initialize async_run.
* task.c (gomp_init_task): Initialize children_queue.
(gomp_clear_parent_in_list): New.
(gomp_clear_parent_in_tree): New.
(gomp_clear_parent): Handle priorities.
(GOMP_task): Likewise.
(priority_queue_move_task_first,
gomp_target_task_completion, GOMP_PLUGIN_target_task_completion):
New functions.
(gomp_create_target_task): Use priority queues.  Change return type
to bool, add state argument, return false if for async
{{enter,exit} data,update} constructs no dependencies need to be
waited for, handle target nowait.  Set task->fn to NULL instead of
gomp_target_task_fn.
(verify_children_queue): Remove.
(priority_list_upgrade_task): New.
(priority_queue_upgrade_task): New.
(verify_task_queue): Remove.
(priority_list_downgrade_task): New.
(priority_queue_downgrade_task): New.
(gomp_task_run_pre): Use priority queues.
Abstract code out to priority_queue_downgrade_task.
(gomp_task_run_post_handle_dependers): Use priority queues.
(gomp_task_run_post_remove_parent): Likewise.
(gomp_task_run_post_remove_taskgroup): Likewise.
(gomp_barrier_handle_tasks): Likewise.  Handle target nowait target
tasks specially.
(GOMP_taskwait): Likewise.
(gomp_task_maybe_wait_for_dependencies): Likewise.  Abstract code to
priority-queue_upgrade_task.
(GOMP_taskgroup_start): Use priority queues.
(GOMP_taskgroup_end): Likewise.  Handle target nowait target tasks
specially.  If taskgroup is NULL, and thr->ts.level is 0, act as a
barrier.
* taskloop.c (GOMP_taskloop): Handle priorities.
* team.c (gomp_new_team): Call priority_queue_init.
(free_team): Call priority_queue_free.
(gomp_free_thread): Call gomp_team_end if thr->ts.team is artificial
team created for target nowait in implicit parallel region.
(gomp_team_start): For nested check, test thr->ts.level instead of
thr->ts.team != NULL.
* testsuite/libgomp.c/doacross-3.c: New test.
* testsuite/libgomp.c/ordered-5.c: New test.
* testsuite/libgomp.c/priority.c: New test.
* testsuite/libgomp.c/target-31.c: New test.
* testsuite/libgomp.c/target-32.c: New test.
* testsuite/libgomp.c/target-33.c: New test.
* testsuite/libgomp.c/target-34.c: New test.
liboffloadmic/
2015-11-14  Ilya Verbin  <ilya.verbin@intel.com>

* runtime/offload_host.cpp (task_completion_callback): New
variable.
(offload_proxy_task_completed_ooo): Call task_completion_callback.
(__offload_register_task_callback): New function.
* runtime/offload_host.h (__offload_register_task_callback): New
declaration.
* plugin/libgomp-plugin-intelmic.cpp (offload): Add async_data
argument, handle async offloading.
(register_main_image): Call register_main_image.
(GOMP_OFFLOAD_init_device, get_target_table, GOMP_OFFLOAD_alloc,
GOMP_OFFLOAD_free, GOMP_OFFLOAD_host2dev, GOMP_OFFLOAD_dev2host,
GOMP_OFFLOAD_dev2dev) Adjust offload callers.
(GOMP_OFFLOAD_async_run): New function.
(GOMP_OFFLOAD_run): Implement using GOMP_OFFLOAD_async_run.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230381 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago2015-11-14 Steven G. Kargl <kargl@gcc.gnu.org>
kargl [Sat, 14 Nov 2015 17:31:16 +0000 (17:31 +0000)] 
2015-11-14  Steven G. Kargl  <kargl@gcc.gnu.org>

    PR fortran/67803
    * array.c (gfc_match_array_constructor): If array constructor included
    a CHARACTER typespec, check array elements for compatible type.

2015-11-14  Steven G. Kargl  <kargl@gcc.gnu.org>

    PR fortran/67803
    * gfortran.dg/pr67803.f90: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230379 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoFix std::wstring capacity test for short wchar_t
redi [Sat, 14 Nov 2015 17:24:42 +0000 (17:24 +0000)] 
Fix std::wstring capacity test for short wchar_t

* testsuite/21_strings/basic_string/capacity/char/18654.cc: Use
real minimum capacity.
* testsuite/21_strings/basic_string/capacity/wchar_t/18654.cc:
Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230378 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago* testsuite/experimental/random/randint.cc: Add dg-add-options tls.
dje [Sat, 14 Nov 2015 14:22:53 +0000 (14:22 +0000)] 
* testsuite/experimental/random/randint.cc: Add dg-add-options tls.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230377 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago * g++.dg/cpp/ucn-1.C: Fix typo.
dje [Sat, 14 Nov 2015 13:36:15 +0000 (13:36 +0000)] 
    * g++.dg/cpp/ucn-1.C: Fix typo.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230376 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago * c-decl.c: Use RECORD_OR_UNION_TYPE_P throughout.
mpolacek [Sat, 14 Nov 2015 12:31:45 +0000 (12:31 +0000)] 
* c-decl.c: Use RECORD_OR_UNION_TYPE_P throughout.
* c-typeck.c: Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230375 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago2015-11-13 Arnaud Charlet <charlet@adacore.com>
charlet [Sat, 14 Nov 2015 09:09:01 +0000 (09:09 +0000)] 
2015-11-13  Arnaud Charlet  <charlet@adacore.com>

PR ada/68345
* s-osinte-dragonfly.ads (Get_Page_Size): C function returns an int.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230373 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago * ChangeLog: Fix whitespace.
uros [Sat, 14 Nov 2015 07:58:17 +0000 (07:58 +0000)] 
* ChangeLog: Fix whitespace.
* testsuite/ChangeLog: Ditto.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230372 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago* g++.dg/init/vbase1.C: XFAIL powerpc*-*-*.
dje [Sat, 14 Nov 2015 00:35:30 +0000 (00:35 +0000)] 
* g++.dg/init/vbase1.C: XFAIL powerpc*-*-*.
* g++.dg/cpp/ucn-1.C: Expect error for dollar sign identifier on AIX.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230371 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoDaily bump.
gccadmin [Sat, 14 Nov 2015 00:16:13 +0000 (00:16 +0000)] 
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230370 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago2015-11-13 Rich Felker <dalias@libc.org>
kkojima [Sat, 14 Nov 2015 00:08:41 +0000 (00:08 +0000)] 
2015-11-13  Rich Felker <dalias@libc.org>
* config/sh/sh.md (symGOT_load): Don't set stack_chk_guard_p for TARGET_FDPIC.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230366 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago Merge C++ delayed folding branch.
jason [Sat, 14 Nov 2015 00:08:05 +0000 (00:08 +0000)] 
Merge C++ delayed folding branch.

* call.c (build_conditional_expr_1, convert_like_real)
(convert_arg_to_ellipsis, convert_for_arg_passing): Don't fold.
(build_new_op_1, build_over_call, build_cxx_call): Fold for warnings.
* class.c (build_base_path, determine_primary_bases)
(update_vtable_entry_for_fn, check_bitfield_decl)
(layout_nonempty_base_or_field, layout_empty_base)
(propagate_binfo_offsets, include_empty_classes)
(layout_class_type, build_vbase_offset_vtbl_entries): Use
fold_convert.
* constexpr.c (cxx_eval_builtin_function_call): Fold away the NOP_EXPR.
(cxx_eval_call_expression): Handle MEM_REF.
(cxx_eval_pointer_plus_expression): Fold the second operand.
(cxx_eval_constant_expression): Handle MEM_REF, UNARY_PLUS_EXPR.
(fold_simple_1, fold_simple): New.
(maybe_constant_value_1): Factor out from maybe_constant_value.
(cv_cache, maybe_constant_value): Cache results.
(maybe_constant_init): Handle null input.
(potential_constant_expression_1): Handle RESULT_DECL, EMPTY_CLASS_EXPR.
* cp-array-notation.c (build_array_notation_ref): Fold operands.
* cp-gimplify.c (cp_fold_r, cp_fold): New.
(cp_genericize_r): Use fold_convert.  Don't fold SIZEOF_EXPR.
(cp_genericize): Fold everything.
(contains_label_1, contains_label_p): New.
(cp_fold, cp_fully_fold): New.
* cp-tree.h (class cache_map): New.
* cvt.c (cp_convert_to_pointer, ocp_convert): Use convert_to_*_nofold.
(cp_convert_and_check): Use cp_fully_fold.
(convert, convert_force): Don't fold.
* decl.c (fold_sizeof_expr): Change from fold_sizeof_expr_r.
(compute_array_index_type): Use cp_fully_fold.
(build_enumerator): Use fold_convert.
* decl2.c (get_guard_cond, set_guard): Use fold_convert.
* init.c (build_zero_init_1): Fold zero-initializers.
(build_new_1): Fold nelts calculations.
(build_vec_delete_1): Fold conversions.
(build_vec_init): Fold maxindex.
* parser.c (cp_parser_binary_expression): Fold LHS of || and &&.
(cp_parser_question_colon_clause): Fold LHS.
* pt.c (convert_nontype_argument): Fold nullptr conversion.
* semantics.c (finish_unary_op_expr): Fold for warnings.
(handle_omp_array_sections_1): Fold length and low bound.
(handle_omp_for_class_iterator): Fold various things.
* tree.c (builtin_valid_in_constant_expr_p): Add
BUILT_IN_ATOMIC_ALWAYS_LOCK_FREE.
(convert_bitfield_to_declared_type): Don't fold.
(handle_init_priority_attribute): Fold.
(fold_if_not_in_template): Remove.
* typeck.c (decay_conversion, build_class_member_access_expr)
(build_simple_component_ref, cp_build_array_ref, build_vec_cmp)
(cp_pointer_int_sum, pointer_diff): Don't fold.
(cp_build_binary_op): Fold for warnings and PMF ops.
(cp_build_unary_op): Fold negation of a constant, nothing else.
(expand_ptrmemfunc_cst): Fold operations.
* typeck2.c (split_nonconstant_init): Fold initializer.
(store_init_value): Likewise.
(check_narrowing): Try folding.
* config-lang.in (gtfiles): Add cp-gimplify.c.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230365 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago[Patch,tree-optimization]: Add new path Splitting pass on tree ssa
law [Fri, 13 Nov 2015 23:31:51 +0000 (23:31 +0000)] 
[Patch,tree-optimization]: Add new path Splitting pass on tree ssa
representation

* Makefile.in (OBJS): Add gimple-ssa-split-paths.o
* common.opt (-fsplit-paths): New flag controlling path splitting.
* doc/invoke.texi (fsplit-paths): Document.
* opts.c (default_options_table): Add -fsplit-paths to -O2.
* passes.def: Add split_paths pass.
* timevar.def (TV_SPLIT_PATHS): New timevar.
* tracer.c: Include "tracer.h"
(ignore_bb_p): No longer static.
(transform_duplicate): New function, broken out of tail_duplicate.
(tail_duplicate): Use transform_duplicate.
* tracer.h (ignore_bb_p): Declare
(transform_duplicate): Likewise.
* tree-pass.h (make_pass_split_paths): Declare.
* gimple-ssa-split-paths.c: New file.

* gcc.dg/tree-ssa/split-path-1.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230364 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agoAdd non-folding variants for convert_to_*.
jason [Fri, 13 Nov 2015 22:24:45 +0000 (22:24 +0000)] 
Add non-folding variants for convert_to_*.

2015-11-13  Kai Tietz  <ktietz70@googlemail.com>
    Marek Polacek  <polacek@redhat.com>
    Jason Merrill  <jason@redhat.com>

gcc/
* convert.c (maybe_fold_build1_loc): New.
(maybe_fold_build2_loc): New.
(convert_to_pointer_1): Split out from convert_to_pointer.
(convert_to_pointer_nofold): New.
(convert_to_real_1): Split out from convert_to_real.
(convert_to_real_nofold): New.
(convert_to_integer_1): Split out from convert_to_integer.
(convert_to_integer_nofold): New.
(convert_to_complex_1): Split out from convert_to_complex.
(convert_to_complex_nofold): New.
* convert.h: Declare new functions.
* tree-complex.c (create_one_component_var): Break up line to
avoid sequence point issues.
gcc/c-family/
* c-lex.c (interpret_float): Use fold_convert.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230359 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago * fold-const.c (fold_convert_const): Fold changing cv-quals on
jason [Fri, 13 Nov 2015 22:24:39 +0000 (22:24 +0000)] 
* fold-const.c (fold_convert_const): Fold changing cv-quals on
VECTOR_CST.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230358 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago * hash-map.h (hash_map::empty): New.
jason [Fri, 13 Nov 2015 22:24:30 +0000 (22:24 +0000)] 
* hash-map.h (hash_map::empty): New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230357 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago gcc/
nathan [Fri, 13 Nov 2015 21:51:32 +0000 (21:51 +0000)] 
gcc/
* gcc/omp-low.c (scan_sharing_clauses): Accept INDEPENDENT, AUTO &
SEQ.
(oacc_loop_fixed_partitions): Correct return type to bool.
(oacc_loop_auto_partitions): New.
(oacc_loop_partition): Take mask argument, call
oacc_loop_auto_partitions.
(execute_oacc_device_lower): Provide mask to oacc_loop_partition.

gcc/testsuite/
* c-c++-common/goacc/loop-auto-1.c: New.

libgomp/
* testsuite/libgomp.oacc-c-c++-common/loop-auto-1.c: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230354 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago * lib/target-supports.exp (check_effective_target_offload_nvptx): New.
nathan [Fri, 13 Nov 2015 21:48:23 +0000 (21:48 +0000)] 
* lib/target-supports.exp (check_effective_target_offload_nvptx): New.
* gcc.dg/goacc/nvptx-merged-loop.c: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230353 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago2015-11-13 Steven G. Kargl <kargl@gccc.gnu.org>
kargl [Fri, 13 Nov 2015 21:11:42 +0000 (21:11 +0000)] 
2015-11-13  Steven G. Kargl  <kargl@gccc.gnu.org>

PR fortran/68319
* decl.c (gfc_match_data, gfc_match_entry): Enforce F2008:C1206.
* io.c (gfc_match_format): Ditto.
* match.c (gfc_match_st_function): Ditto.

2015-11-13  Steven G. Kargl  <kargl@gccc.gnu.org>

PR fortran/68319
* gfortran.dg/pr68319.f90: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230351 138bc75d-0d04-0410-961f-82ee72b054a4

9 years agofix ChangeLog entry
meissner [Fri, 13 Nov 2015 20:15:13 +0000 (20:15 +0000)] 
fix ChangeLog entry

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230345 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago[gcc]
meissner [Fri, 13 Nov 2015 20:02:56 +0000 (20:02 +0000)] 
[gcc]
2015-11-13  Michael Meissner  <meissner@linux.vnet.ibm.com>

* config/rs6000/constraints.md (we constraint): New constraint for
64-bit power9 vector support.
(wL constraint): New constraint for the element in a vector that
can be addressed by the MFVSRLD instruction.

* config/rs6000/rs6000-protos.h (convert_float128_to_int): Add
declaration.
(convert_int_to_float128): Likewise.
(rs6000_generate_compare): Add support for ISA 3.0 (power9)
hardware support for IEEE 128-bit floating point.
(rs6000_expand_float128_convert): Likewise.
(convert_float128_to_int): Likewise.
(convert_int_to_float128): Likewise.

* config/rs6000/rs6000.md (UNSPEC_ROUND_TO_ODD): New unspecs for
ISA 3.0 hardware IEEE 128-bit floating point.
(UNSPEC_IEEE128_MOVE): Likewise.
(UNSPEC_IEEE128_CONVERT): Likewise.
(FMA_F): Add support for IEEE 128-bit floating point hardware
support.
(Ff): Add support for DImode.
(Fv): Likewise.
(any_fix code iterator): New and updated iterators for IEEE
128-bit floating point hardware support.
(any_float code iterator): Likewise.
(s code attribute): Likewise.
(su code attribute): Likewise.
(az code attribute): Likewise.
(uns code attribute): Likewise.
(neg<mode>2, FLOAT128 iterator): Add support for IEEE 128-bit
floating point hardware support.
(abs<mode>2, FLOAT128 iterator): Likewise.
(add<mode>3, IEEE128 iterator): New insns for IEEE 128-bit
floating point hardware.
(sub<mode>3, IEEE128 iterator): Likewise.
(mul<mode>3, IEEE128 iterator): Likewise.
(div<mode>3, IEEE128 iterator): Likewise.
(copysign<mode>3, IEEE128 iterator): Likewise.
(sqrt<mode>2, IEEE128 iterator): Likewise.
(neg<mode>2, IEEE128 iterator): Likewise.
(abs<mode>2, IEEE128 iterator): Likewise.
(nabs<mode>2, IEEE128 iterator): Likewise.
(fma<mode>4_hw, IEEE128 iterator): Likewise.
(fms<mode>4_hw, IEEE128 iterator): Likewise.
(nfma<mode>4_hw, IEEE128 iterator): Likewise.
(nfms<mode>4_hw, IEEE128 iterator): Likewise.
(extend<SFDF:mode><IEEE128:mode>2_hw): Likewise.
(trunc<mode>df2_hw, IEEE128 iterator): Likewise.
(trunc<mode>sf2_hw, IEEE128 iterator): Likewise.
(fix_fixuns code attribute): Likewise.
(float_floatuns code attribute): Likewise.
(fix<uns>_<mode>si2_hw): Likewise.
(fix<uns>_<mode>di2_hw): Likewise.
(float<uns>_<mode>si2_hw): Likewise.
(float<uns>_<mode>di2_hw): Likewise.
(xscvqp<su>wz_<mode>): Likewise.
(xscvqp<su>dz_<mode>): Likewise.
(xscv<su>dqp_<mode): Likewise.
(ieee128_mfvsrd): Likewise.
(ieee128_mfvsrwz): Likewise.
(ieee128_mtvsrw): Likewise.
(ieee128_mtvsrd): Likewise.
(trunc<mode>df2_odd): Likewise.
(cmp<mode>_h): Likewise.
(128-bit GPR splitters): Don't split a 128-bit move that is a
direct move between GPR and vector registers using ISA 3.0 direct
move instructions.
(<u>mul<mode><dmode>3): Add support for the ISA 3.0 integer
multiply-add instruction.

* config/rs6000/rs6000.c (rs6000_debug_reg_global): Add ISA 3.0
debugging.
(rs6000_init_hard_regno_mode_ok): If ISA 3.0 and 64-bit, enable we
constraint.  Disable the VSX<->GPR direct move helpers if we have
the MFVSRLD and MTVSRDD instructions.
(rs6000_secondary_reload_simple_move): Add support for doing
vector direct moves directly without additional scratch registers
if we have ISA 3.0 instructions.
(rs6000_secondary_reload_direct_move): Update comments.
(rs6000_output_move_128bit): Add support for ISA 3.0 vector
instructions.

* config/rs6000/vsx.md (vsx_mov<mode>): Add support for ISA 3.0
direct move instructions.
(vsx_movti_64bit): Likewise.
(vsx_extract_<mode>): Likewise.

* config/rs6000/rs6000.h (VECTOR_ELEMENT_MFVSRLD_64BIT): New
macros for ISA 3.0 direct move instructions.
(TARGET_DIRECT_MOVE_128): Likewise.
(TARGET_MADDLD): Add support for the ISA 3.0 integer multiply-add
instruction.

* doc/md.texi (RS/6000 constraints): Document we, wF, wG, wL
constraints.  Update wa documentation to say not to use %x<n> on
instructions that only take Altivec registers.

[gcc/testsuite]
2015-11-13  Michael Meissner  <meissner@linux.vnet.ibm.com>

* gcc.target/powerpc/float128-hw.c: New test for IEEE 128-bit
hardware floating point support.

* gcc.target/powerpc/direct-move-vector.c: New test for 128-bit
vector direct move instructions.

* gcc.target/powerpc/maddld.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230342 138bc75d-0d04-0410-961f-82ee72b054a4

9 years ago * gcc.dg/pr68306.c (dg-additional-options): Add i?86-*-* target.
uros [Fri, 13 Nov 2015 18:39:46 +0000 (18:39 +0000)] 
* gcc.dg/pr68306.c (dg-additional-options): Add i?86-*-* target.
* gcc.dg/pr68306-2.c (dg-additional-options): Ditto.
* gcc.dg/pr68306-3.c (dg-additional-options): Ditto.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230339 138bc75d-0d04-0410-961f-82ee72b054a4