This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 34c8056 2015-08-13 Richard Biener <rguenther(a)suse.de>
new 9e2853e 2015-08-13 Eelis van der Weegen <eelis(a)eelis.net>
new 94ca06a * testsuite/30_threads/mutex/unlock/2.cc: New. * testsuite/ [...]
new a65c36d * include/bits/alloc_traits.h: Add feature-test macro. * in [...]
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
libstdc++-v3/ChangeLog | 21 ++++++++++++
libstdc++-v3/include/bits/alloc_traits.h | 2 ++
libstdc++-v3/include/bits/allocator.h | 1 +
libstdc++-v3/include/bits/range_access.h | 1 +
libstdc++-v3/include/bits/stl_map.h | 4 +++
libstdc++-v3/include/bits/unordered_map.h | 2 ++
libstdc++-v3/include/std/shared_mutex | 2 +-
.../hardware_concurrency.cc => mutex/unlock/2.cc} | 23 ++++++++-----
.../unlock/2.cc} | 23 ++++++++-----
.../unlock/2.cc} | 23 ++++++++-----
.../30_threads/shared_mutex/{cons => unlock}/1.cc | 38 +++++++++-------------
.../unlock/1.cc} | 29 ++++++++++-------
.../unlock/2.cc} | 23 ++++++++-----
13 files changed, 126 insertions(+), 66 deletions(-)
copy libstdc++-v3/testsuite/30_threads/{thread/members/hardware_concurrency.cc => [...]
copy libstdc++-v3/testsuite/30_threads/{thread/members/hardware_concurrency.cc => [...]
copy libstdc++-v3/testsuite/30_threads/{thread/members/hardware_concurrency.cc => [...]
copy libstdc++-v3/testsuite/30_threads/shared_mutex/{cons => unlock}/1.cc (72%)
copy libstdc++-v3/testsuite/30_threads/{thread/members/hardware_concurrency.cc => [...]
copy libstdc++-v3/testsuite/30_threads/{thread/members/hardware_concurrency.cc => [...]
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch bernie/benchmarking
in repository toolchain/abe.
The following commit(s) were added to refs/heads/bernie/benchmarking by this push:
new 7f3268f Add xz-utils to host deps
7f3268f is described below
commit 7f3268f6916a63947b6ca01e36d9c70b6b1a6f40
Author: Bernard Ogden <bernie.ogden(a)linaro.org>
Date: Thu Aug 13 15:55:44 2015 +0200
Add xz-utils to host deps
Needed to untar prebuilts
Change-Id: I3b577860bdd539ae72031c3a9b2b2420f5856496
---
config/bench/lava/host-session.yaml | 1 +
1 file changed, 1 insertion(+)
diff --git a/config/bench/lava/host-session.yaml b/config/bench/lava/host-session.yaml
index 95ebaef..295ec43 100644
--- a/config/bench/lava/host-session.yaml
+++ b/config/bench/lava/host-session.yaml
@@ -34,6 +34,7 @@ install:
- rsync
- texinfo
- wget
+ - xz-utils
run:
steps:
- ./config/bench/lava/setup "$PUB_KEY"
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch bernie/benchmarking
in repository toolchain/abe.
The following commit(s) were added to refs/heads/bernie/benchmarking by this push:
new 7241071 Only download/unpack toolchain if building benchmark
7241071 is described below
commit 72410713060c3d92785c8ef19f6d9927fc6ac782
Author: Bernard Ogden <bernie.ogden(a)linaro.org>
Date: Thu Aug 13 15:19:49 2015 +0200
Only download/unpack toolchain if building benchmark
Was previously hanging on to the toolchain so that infrastructure
could do some analysis of binaries - mainly code size. But that
should happen at build time, so not needed for prebuilt binaries.
Change-Id: I48e7076cdca367f698de3b498ecb99d329ca78ca
---
scripts/Benchmark.job | 44 ++++++++++++++++++++++----------------------
1 file changed, 22 insertions(+), 22 deletions(-)
diff --git a/scripts/Benchmark.job b/scripts/Benchmark.job
index f95fb3b..5f94a0b 100755
--- a/scripts/Benchmark.job
+++ b/scripts/Benchmark.job
@@ -46,32 +46,32 @@ maindir="`pwd`"
echo "${ABE_DIR}"/configure --with-fileserver=148.251.136.42 --with-remote-snapsho [...]
"${ABE_DIR}"/configure --with-fileserver=148.251.136.42 --with-remote-snapsho [...]
-#Install toolchain - needed even for prebuilt case, so we can do analysis of binaries
-mkdir bin
-if test x"${toolchain:0:1}" = x/; then
- echo "Toolchain assumed to be path on builder"
- benchgccpath="${toolchain}"
-else
- tarball="`get_thing ${toolchain}`"
- tar xf "${tarball}" -C bin
- benchgccpath="`ls ${PWD}/bin/*/bin/*gcc`"
- rm "${tarball}"
-fi
+#Install toolchain, or unpack prebuilt tarball
+if test x"${prebuilt:-}" = x; then
+ mkdir bin
+ if test x"${toolchain:0:1}" = x/; then
+ echo "Toolchain assumed to be path on builder"
+ benchgccpath="${toolchain}"
+ else
+ tarball="`get_thing ${toolchain}`"
+ tar xf "${tarball}" -C bin
+ benchgccpath="`ls ${PWD}/bin/*/bin/*gcc`"
+ rm "${tarball}"
+ fi
-if test "`echo ${benchgccpath} | wc -w`" -ne 1; then
- echo "Should be exactly one GCC path" 1>&2
- echo "Got: ${benchgccpath}" 1>&2
- exit 1
-fi
-if test x"${benchgccpath}" != x; then
- if ! test -x "${benchgccpath}"; then
- echo "GCC binary '${benchgccpath}' does not exist or is not executable" 1>&2
+ if test "`echo ${benchgccpath} | wc -w`" -ne 1; then
+ echo "Should be exactly one GCC path" 1>&2
+ echo "Got: ${benchgccpath}" 1>&2
exit 1
fi
-fi
+ if test x"${benchgccpath}" != x; then
+ if ! test -x "${benchgccpath}"; then
+ echo "GCC binary '${benchgccpath}' does not exist or is not executable" 1>&2
+ exit 1
+ fi
+ fi
-#Build
-if test x"${prebuilt:-}" = x; then
+ #Build
echo "${ABE_DIR}"/scripts/benchmark.sh -s buildonly ${compiler_flags:+-f \"${com [...]
"${ABE_DIR}"/scripts/benchmark.sh -s buildonly ${compiler_flags:+-f "${com [...]
else
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch trunk
in repository gcc.
from 7bb3407 [MIPS] Enable load/store bonding for I6400
new 34c8056 2015-08-13 Richard Biener <rguenther(a)suse.de>
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/ChangeLog | 10 ++++++
gcc/tree-ssa-sccvn.c | 87 +++++++++++++++++++++++++++++++++++-----------------
gcc/tree-vrp.c | 62 -------------------------------------
gcc/tree.c | 63 +++++++++++++++++++++++++++++++++++++
gcc/tree.h | 2 ++
5 files changed, 134 insertions(+), 90 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch trunk
in repository gcc.
from 68760c9 * gcc.target/aarch64/atomic-inst-cas.c: New. * gcc.target/a [...]
new 7bb3407 [MIPS] Enable load/store bonding for I6400
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/ChangeLog | 5 +++++
gcc/config/mips/mips.h | 2 +-
2 files changed, 6 insertions(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 48b48f6 * gcc.dg/tree-ssa/vrp33.c: Add -fno-tree-fre.
new 06a381d * config/aarch64/aarch64.h (AARCH64_ISA_LSE): New. (TARGET_ [...]
new b658282 * config/aarch64/aarch64-protos.h (aarch64_gen_atomic_cas): [...]
new 68760c9 * gcc.target/aarch64/atomic-inst-cas.c: New. * gcc.target/a [...]
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/ChangeLog | 18 ++++
gcc/config/aarch64/aarch64-protos.h | 1 +
gcc/config/aarch64/aarch64.c | 66 +++++++++++-
gcc/config/aarch64/aarch64.h | 4 +
gcc/config/aarch64/atomics.md | 117 +++++++++++++++++++--
gcc/testsuite/ChangeLog | 5 +
gcc/testsuite/gcc.target/aarch64/atomic-inst-cas.c | 61 +++++++++++
.../gcc.target/aarch64/atomic-inst-ops.inc | 53 ++++++++++
8 files changed, 313 insertions(+), 12 deletions(-)
create mode 100644 gcc/testsuite/gcc.target/aarch64/atomic-inst-cas.c
create mode 100644 gcc/testsuite/gcc.target/aarch64/atomic-inst-ops.inc
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 089af8b 2015-08-13 Richard Biener <rguenther(a)suse.de>
new 8aefb23 2015-08-13 Paolo Carlini <paolo.carlini(a)oracle.com>
new 48b48f6 * gcc.dg/tree-ssa/vrp33.c: Add -fno-tree-fre.
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/testsuite/ChangeLog | 9 +++++++++
gcc/testsuite/g++.dg/torture/pr62164.C | 14 ++++++++++++++
gcc/testsuite/gcc.dg/tree-ssa/vrp33.c | 2 +-
3 files changed, 24 insertions(+), 1 deletion(-)
create mode 100644 gcc/testsuite/g++.dg/torture/pr62164.C
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch trunk
in repository gcc.
from e6646b0 [RTL-ifcvt] Improve conditional select ops on immediates (fix [...]
new 089af8b 2015-08-13 Richard Biener <rguenther(a)suse.de>
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/ChangeLog | 7 ++
gcc/testsuite/ChangeLog | 6 ++
gcc/testsuite/g++.dg/torture/pr67191.C | 117 +++++++++++++++++++++++++++++++++
gcc/testsuite/gcc.dg/torture/pr67191.c | 13 ++++
gcc/tree-ssa-sccvn.c | 12 ++--
5 files changed, 147 insertions(+), 8 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/torture/pr67191.C
create mode 100644 gcc/testsuite/gcc.dg/torture/pr67191.c
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch trunk
in repository gcc.
from b3be594 2015-08-12 Richard Biener <rguenther(a)suse.de>
new e6646b0 [RTL-ifcvt] Improve conditional select ops on immediates (fix [...]
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/ChangeLog | 8 +++++++
gcc/ifcvt.c | 77 ++++++++++++++++++++++++++++++++++++++++++++++-------------
2 files changed, 69 insertions(+), 16 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a change to branch bernie/benchmarking
in repository toolchain/abe.
from d2510ae Use xargs rather than expansion to kill sleeper
new c167cdc Be more space efficient with target tarball extraction
new f3c0ac3 On early failure, report completion to host
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
scripts/runbenchmark.sh | 17 +++++++++++------
1 file changed, 11 insertions(+), 6 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.