This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository binutils-gdb.
from 293f5f6 Reimplement .no87/.nommx/.nosse/.noavx directives
new f1360d5 Enable VREX for AVX512 directives
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:
gas/ChangeLog | 7 +++++++
gas/testsuite/gas/i386/i386.exp | 1 +
gas/testsuite/gas/i386/{rdpid.d => x86-64-pr20141.d} | 3 +--
gas/testsuite/gas/i386/x86-64-pr20141.s | 5 +++++
opcodes/ChangeLog | 7 +++++++
opcodes/i386-gen.c | 8 ++++----
opcodes/i386-init.h | 8 ++++----
7 files changed, 29 insertions(+), 10 deletions(-)
copy gas/testsuite/gas/i386/{rdpid.d => x86-64-pr20141.d} (54%)
create mode 100644 gas/testsuite/gas/i386/x86-64-pr20141.s
--
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.
Peter Smith pushed a change to branch linaro-local/ARMportforupstream
in repository toolchain/llvm/lld.
discards 8ae4f1b Initial support for ARM in lld.
adds 2c10f20 Use range loop.
adds ac7ef31 Create Relocations.cpp and move scanRelocs there.
adds 45f9187 Add a few options for compatibility with GNU.
adds f8b2b7f Add `static` to a file-scope function.
adds fcb5a97 Reduce code duplication.
adds 0d838bd Fix comment.
adds d9bfe48 Really define --export-dynamic-symbol= as an alias to --expor [...]
adds a677405 [ELF] - Implemented optimization for R_X86_64_GOTPCREL relocation.
adds c0c60e9 ELF: Handle empty CIE augmentation string
adds 60dea62 ELF: improve CIE no-augmentation test
adds 351abca Do not ignore --no_ctors_in_init_array flag.
adds 53fd567 Make SectionPiece 8 bytes smaller on LP64.
adds e6985d0 [ELF] - Added support for jmp/call relaxations when R_X86_64_ [...]
new 52e71de Initial support for ARM in lld.
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 (8ae4f1b)
\
N -- N -- N refs/heads/linaro-local/ARMportforupstream (52e71de)
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:
ELF/CMakeLists.txt | 1 +
ELF/EhFrame.cpp | 2 +-
ELF/InputSection.cpp | 4 +
ELF/InputSection.h | 68 +--
ELF/Options.td | 3 +
ELF/OutputSections.cpp | 21 +-
ELF/Relocations.cpp | 643 +++++++++++++++++++++
ELF/Relocations.h | 70 +++
ELF/Target.cpp | 105 +++-
ELF/Target.h | 3 +
ELF/Writer.cpp | 571 +-----------------
test/ELF/Inputs/gotpc-relax-und-dso.s | 4 +
test/ELF/Inputs/no-augmentation.o | Bin 0 -> 3640 bytes
.../{relocation-copy.s => relocation-copy-arm.s} | 6 +-
test/ELF/arm-copy.s | 80 +++
test/ELF/arm-data-prel.s | 42 +-
test/ELF/arm-data-relocs.s | 21 +
test/ELF/arm-mov-relocs.s | 52 ++
test/ELF/dynamic-list.s | 2 +
test/ELF/gotpc-relax-und-dso.s | 72 +++
test/ELF/gotpc-relax.s | 98 ++++
test/ELF/no-augmentation.s | 17 +
22 files changed, 1198 insertions(+), 687 deletions(-)
create mode 100644 ELF/Relocations.cpp
create mode 100644 ELF/Relocations.h
create mode 100644 test/ELF/Inputs/gotpc-relax-und-dso.s
create mode 100644 test/ELF/Inputs/no-augmentation.o
copy test/ELF/Inputs/{relocation-copy.s => relocation-copy-arm.s} (73%)
create mode 100644 test/ELF/arm-copy.s
create mode 100644 test/ELF/arm-data-relocs.s
create mode 100644 test/ELF/arm-mov-relocs.s
create mode 100644 test/ELF/gotpc-relax-und-dso.s
create mode 100644 test/ELF/gotpc-relax.s
create mode 100644 test/ELF/no-augmentation.s
--
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 llvm.
from cab076f [x86] avoid code explosion from LoopVectorizer for gather loo [...]
new 068cdec AMDGPU: Fix inconsistent lowering of select of vectors
new 92cd490 [PM] CorrelatedValuePropagation: pass state to function. NFCI.
new 53d233a AMDGPU: Make vectorization defeating test changes
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:
lib/Target/AMDGPU/AMDGPUISelLowering.cpp | 10 ++-
.../Scalar/CorrelatedValuePropagation.cpp | 45 +++++-------
test/CodeGen/AMDGPU/drop-mem-operand-move-smrd.ll | 2 +-
.../ds-negative-offset-addressing-mode-loop.ll | 16 ++---
test/CodeGen/AMDGPU/madak.ll | 10 +--
test/CodeGen/AMDGPU/schedule-global-loads.ll | 4 +-
test/CodeGen/AMDGPU/select-vectors.ll | 81 +++++++++++++++++++---
test/CodeGen/AMDGPU/si-triv-disjoint-mem-access.ll | 36 +++++-----
8 files changed, 130 insertions(+), 74 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 master
in repository libcxxabi.
from 5985dd6 libc++abi: make __cxa_call_unexpected visible
new b06c53c Allow explicit pthread opt-in
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:
CMakeLists.txt | 10 ++++++++++
1 file changed, 10 insertions(+)
--
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 zorg.
from 5a9b9ed Pass the stage2 configuration as a argument.
new 7e71abb Set haltOnFailure=False for clean directory step ClangAndLLDB [...]
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:
zorg/buildbot/builders/ClangAndLLDBuilder.py | 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.
unknown user pushed a change to branch master
in repository libcxx.
from fc1962d Reorganize locale extension fallbacks. NFCI
new 5163e46 [libcxx] Allow explicit pthread opt-in
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:
CMakeLists.txt | 7 +++++++
include/__config | 10 +++++++---
include/__config_site.in | 1 +
include/__threading_support | 6 +++---
4 files changed, 18 insertions(+), 6 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 master
in repository glibc.
from 1f921a9 Do not raise "inexact" from powerpc32 ceil, floor, trunc (bug [...]
new b4d8034 Do not raise "inexact" from powerpc64 ceil, floor, trunc (bug [...]
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:
ChangeLog | 11 +++++++++++
sysdeps/powerpc/powerpc64/fpu/s_ceil.S | 9 ++++++---
sysdeps/powerpc/powerpc64/fpu/s_ceilf.S | 9 ++++++---
sysdeps/powerpc/powerpc64/fpu/s_floor.S | 9 ++++++---
sysdeps/powerpc/powerpc64/fpu/s_floorf.S | 9 ++++++---
sysdeps/powerpc/powerpc64/fpu/s_trunc.S | 9 ++++++---
sysdeps/powerpc/powerpc64/fpu/s_truncf.S | 9 ++++++---
7 files changed, 47 insertions(+), 18 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 master
in repository llvm.
from c863690 Use new triple API to check if comdat is supported
new cab076f [x86] avoid code explosion from LoopVectorizer for gather loo [...]
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:
lib/Target/X86/X86TargetTransformInfo.cpp | 12 ++++++--
test/Transforms/LoopVectorize/X86/cost-model.ll | 41 +++++++++++++++++++++++++
2 files changed, 51 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 master
in repository clang.
from 1e97a43 [X86][AVX2] Full set of AVX2 intrinsics tests
new 82f6d5c Use new triple API to check comdat /NFC
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:
lib/CodeGen/TargetInfo.cpp | 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.
unknown user pushed a change to branch master
in repository compiler-rt.
from 1ae308d [tsan] Change some OS X tests to include system headers (xpc. [...]
new 4502401 [profile] Further cleanup/refactor file handling code
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:
lib/profile/InstrProfilingFile.c | 60 +++++++++++++++++-----------------------
1 file changed, 26 insertions(+), 34 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.