This is an automated email from the git hooks/post-receive script.
unknown user pushed a commit to branch hjl/pr67215/master
in repository gcc.
The following commit(s) were added to refs/heads/hjl/pr67215/master by this push:
new 09e56e8 Add comments.
09e56e8 is described below
commit 09e56e8c124c0a0fbef6b5970f9f30cdbcf54759
Author: H.J. Lu <hjl.tools(a)gmail.com>
Date: Sun Aug 16 13:13:36 2015 -0700
Add comments.
---
gcc/config/i386/i386.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c
index bf8a21d..7219964 100644
--- a/gcc/config/i386/i386.c
+++ b/gcc/config/i386/i386.c
@@ -25690,6 +25690,10 @@ ix86_expand_call (rtx retval, rtx fnaddr, rtx callarg1,
fnaddr);
}
fnaddr = gen_const_mem (Pmode, fnaddr);
+ /* Pmode may not be the same as word_mode for x32, which
+ doesn't support indirect branch va 32-bit memory slot.
+ Since x32 GOT slot is 64 bit with zero upper 32 bits,
+ indirect branch via x32 GOT slot is OK. */
if (GET_MODE (fnaddr) != word_mode)
fnaddr = gen_rtx_ZERO_EXTEND (word_mode, fnaddr);
fnaddr = gen_rtx_MEM (QImode, fnaddr);
@@ -25715,6 +25719,8 @@ ix86_expand_call (rtx retval, rtx fnaddr, rtx callarg1,
&& GET_CODE (XEXP (fnaddr, 0)) == SYMBOL_REF
&& !local_symbolic_operand (XEXP (fnaddr, 0), VOIDmode))
fnaddr = gen_rtx_MEM (QImode, construct_plt_address (XEXP (fnaddr, 0)));
+ /* Since x32 GOT slot is 64 bit with zero upper 32 bits, indirect
+ branch via x32 GOT slot is OK. */
else if (!(TARGET_X32
&& MEM_P (fnaddr)
&& GET_CODE (XEXP (fnaddr, 0)) == ZERO_EXTEND
--
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.
discards 84cc8c8 Make target compression-algorithm-agnostic
new 62ec0e4 Make target compression-algorithm-agnostic
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (84cc8c8)
\
N -- N -- N refs/heads/bernie/benchmarking (62ec0e4)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omits" are not gone; other references still
refer to them. Any revisions marked "discards" are gone forever.
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:
config/bench/lava/target-session-kvm.yaml | 1 +
1 file changed, 1 insertion(+)
--
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 84cc8c8 Make target compression-algorithm-agnostic
84cc8c8 is described below
commit 84cc8c882e0595f76eef4cfa32e96f67895b1030
Author: Bernard Ogden <bernie.ogden(a)linaro.org>
Date: Mon Aug 17 12:05:10 2015 +0200
Make target compression-algorithm-agnostic
Let tar figure out what the compression algorithm is.
Add xz-utils to target, so that it can decompress .xz files.
Change-Id: I3fe0d605870d2931375abfdb651de112f3e52c79
---
config/bench/lava/target-session.yaml | 1 +
scripts/runbenchmark.sh | 4 ++--
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/config/bench/lava/target-session.yaml b/config/bench/lava/target-session.yaml
index 04215d8..5af9645 100644
--- a/config/bench/lava/target-session.yaml
+++ b/config/bench/lava/target-session.yaml
@@ -12,6 +12,7 @@ install:
- openssh-server
- make
- cpufrequtils
+ - xz-utils
run:
steps:
diff --git a/scripts/runbenchmark.sh b/scripts/runbenchmark.sh
index 3202797..4699233 100755
--- a/scripts/runbenchmark.sh
+++ b/scripts/runbenchmark.sh
@@ -186,8 +186,8 @@ fi
}; \
trap phonehome EXIT; \
cd ${target_dir} && \
- tar xjf `basename ${buildtar}` --exclude='*.git/.git/*' && \
- cd `tar tjf ${buildtar} | head -n1` && \
+ tar xf `basename ${buildtar}` --exclude='*.git/.git/*' && \
+ cd `tar tf ${buildtar} | head -n1` && \
rm ../`basename ${buildtar}` && \
../controlledrun.sh ${cautious} ${flags} -l ${tee_output} -- ./linarobench.sh [...]
ret=\\\$?; \
--
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 5702129 2015-08-17 Richard Biener <rguenther(a)suse.de> Naveen H [...]
new 6645b02 [ARM] arm memcpy of aligned data
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 | 6 ++++++
gcc/config/arm/arm.c | 10 ++++++++--
gcc/testsuite/ChangeLog | 5 +++++
gcc/testsuite/gcc.target/arm/memcpy-aligned-1.c | 12 ++++++++++++
4 files changed, 31 insertions(+), 2 deletions(-)
create mode 100644 gcc/testsuite/gcc.target/arm/memcpy-aligned-1.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.
bernie.ogden pushed a change to branch bernie/benchmarking
in repository toolchain/abe.
discards aed91da Only download tarball if we need it
discards 60ae60c Invoke runbenchmark.sh directly when running-only
new 95dbbd6 Invoke runbenchmark.sh directly when running-only
new 17610b1 Only download tarball if we need it
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (aed91da)
\
N -- N -- N refs/heads/bernie/benchmarking (17610b1)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omits" are not gone; other references still
refer to them. Any revisions marked "discards" are gone forever.
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/Benchmark.job | 4 ++--
1 file changed, 2 insertions(+), 2 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 6e79e8c Daily bump.
new 5702129 2015-08-17 Richard Biener <rguenther(a)suse.de> Naveen H [...]
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 | 6 ++++++
gcc/match.pd | 9 +++++++++
gcc/testsuite/gcc.dg/pr16107.c | 16 ++++++++++++++++
3 files changed, 31 insertions(+)
create mode 100644 gcc/testsuite/gcc.dg/pr16107.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 6de19d8 PR fortran/54656
new 6e79e8c Daily bump.
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/DATESTAMP | 2 +-
1 file changed, 1 insertion(+), 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.
robert.savoye pushed a commit to branch parser
in repository toolchain/abe.
The following commit(s) were added to refs/heads/parser by this push:
new 70887d9 extract the subdirectory from a tarball URL so the path is complete.
70887d9 is described below
commit 70887d90e5efd2bc7eb7097ce37485840c0ee609
Author: Rob Savoye <rob.savoye(a)linaro.org>
Date: Sun Aug 16 17:14:03 2015 -0600
extract the subdirectory from a tarball URL so the path is complete.
Change-Id: I9db5892e3b72247459656818898ac7b7fb0be22b
---
lib/fetch.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/fetch.sh b/lib/fetch.sh
index 8e93408..ad35937 100755
--- a/lib/fetch.sh
+++ b/lib/fetch.sh
@@ -115,7 +115,7 @@ fetch()
# decompress and untar a fetched tarball
extract()
{
-# trace "$*"
+ trace "$*"
local extractor=
local taropt=
@@ -140,7 +140,7 @@ extract()
# Initialize component data structures
local builddir="`get_builddir $1`"
- local url="http://${fileserver}${remote_snapshots}"
+ local url="http://${fileserver}${remote_snapshots}/`dirname $1`"
component_init ${tool} URL="$1" URL="${url}" SRCDIR="${srcdir}" FILESPEC="${fi [...]
--
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.
robert.savoye pushed a change to branch parser
in repository toolchain/abe.
from e69116f move common functions to a seperate file so they can be usd i [...]
new c421778 add test for get_component_branch()
new a1b0ba4 include new component.sh functions.
new dfbc072 Initialize the data array of components after checking out so [...]
new df2c8a5 Add new component_dump() function to do a pretty print dump o [...]
The 4 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:
lib/checkout.sh | 4 +++
lib/common.sh | 1 +
lib/component.sh | 70 +++++++++++++++++++++++++++++++++++---------
lib/fetch.sh | 8 +++++
testsuite/component-tests.sh | 18 +++++++++++-
5 files changed, 86 insertions(+), 15 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.