This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 15889d480c6 [AArch64] Add parsing of aarch64_vector_pcs attribute.
new f8479a89f43 [ARM] Allow bitcasts in ARMCodeGenPrepare
new ddd717485f1 [ARM] Exchange MAC operands in ARMParallelDSP
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:
lib/Target/ARM/ARMCodeGenPrepare.cpp | 9 +-
lib/Target/ARM/ARMParallelDSP.cpp | 269 ++++++++++++---------
.../{arm-cgp-zext-truncs.ll => arm-cgp-casts.ll} | 44 ++++
test/CodeGen/ARM/smladx-1.ll | 240 ++++++++++++++++++
test/CodeGen/ARM/smlaldx-1.ll | 249 +++++++++++++++++++
test/CodeGen/ARM/smlaldx-2.ll | 248 +++++++++++++++++++
6 files changed, 939 insertions(+), 120 deletions(-)
rename test/CodeGen/ARM/{arm-cgp-zext-truncs.ll => arm-cgp-casts.ll} (87%)
create mode 100644 test/CodeGen/ARM/smladx-1.ll
create mode 100644 test/CodeGen/ARM/smlaldx-1.ll
create mode 100644 test/CodeGen/ARM/smlaldx-2.ll
--
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 cf397e4d395 [LV] Move InterleaveGroup and InterleavedAccessInfo to Vect [...]
new 15889d480c6 [AArch64] Add parsing of aarch64_vector_pcs attribute.
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:
include/llvm/IR/CallingConv.h | 3 +++
lib/AsmParser/LLLexer.cpp | 1 +
lib/AsmParser/LLParser.cpp | 2 ++
lib/AsmParser/LLToken.h | 1 +
lib/IR/AsmWriter.cpp | 1 +
lib/Target/AArch64/AArch64ISelLowering.cpp | 2 ++
lib/Target/AArch64/AArch64RegisterInfo.cpp | 6 ++++++
test/Bitcode/vector-pcs.ll | 11 +++++++++++
8 files changed, 27 insertions(+)
create mode 100644 test/Bitcode/vector-pcs.ll
--
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 lldb.
from db5c77d1b [MIPS] Fix signed overflow in DADDIU emulation
new e0f20056a Reduce alignment on struct XSAVE, fixing a gcc warning
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:
source/Plugins/Process/Utility/RegisterContext_x86.h | 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 clang.
from fc01a51bbe [Tooling] Wait for all threads to finish before resetting CWD.
new 082eb3d9bb Fix Check test to avoid output string mismatch
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:
test/Driver/print-multi-directory.c | 14 ++++++--------
1 file changed, 6 insertions(+), 8 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 6208c64db7 [Driver] Search LibraryPaths when handling -print-file-name
new fc01a51bbe [Tooling] Wait for all threads to finish before resetting CWD.
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/Tooling/AllTUsExecution.cpp | 2 ++
1 file changed, 2 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 llvm.
from ab4b357430e Remove unused include from IVDescriptors.cpp.
new cf397e4d395 [LV] Move InterleaveGroup and InterleavedAccessInfo to Vect [...]
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:
include/llvm/Analysis/VectorUtils.h | 333 ++++++++++
include/llvm/IR/Instructions.h | 19 +
lib/Analysis/VectorUtils.cpp | 327 ++++++++++
lib/Transforms/Vectorize/LoopVectorize.cpp | 705 +--------------------
.../SystemZ/mem-interleaving-costs.ll | 2 +-
5 files changed, 691 insertions(+), 695 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-tools-extra.
from 8e1fbe17 [clangd] Implement a Proof-of-Concept tool for symbol index e [...]
new f723f89d [clangd] Add index benchmarks
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:
clangd/CMakeLists.txt | 4 ++
clangd/benchmarks/CMakeLists.txt | 9 +++
clangd/benchmarks/IndexBenchmark.cpp | 114 +++++++++++++++++++++++++++++++++
test/clangd/Inputs/BenchmarkHeader.h | 19 ++++++
test/clangd/Inputs/BenchmarkSource.cpp | 1 +
test/clangd/Inputs/requests.log | 5 ++
test/clangd/index-tools.test | 2 +
test/lit.cfg | 6 ++
8 files changed, 160 insertions(+)
create mode 100644 clangd/benchmarks/CMakeLists.txt
create mode 100644 clangd/benchmarks/IndexBenchmark.cpp
create mode 100644 test/clangd/Inputs/BenchmarkHeader.h
create mode 100644 test/clangd/Inputs/BenchmarkSource.cpp
create mode 100644 test/clangd/Inputs/requests.log
create mode 100644 test/clangd/index-tools.test
--
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-tools-extra.
from 08df45ee [NFC] Fix build breakage due to missing dep caused by D51950
new 8e1fbe17 [clangd] Implement a Proof-of-Concept tool for symbol index e [...]
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:
clangd/CMakeLists.txt | 1 +
clangd/index/dex/dexp/CMakeLists.txt | 15 ++++
clangd/index/dex/dexp/Dexp.cpp | 161 +++++++++++++++++++++++++++++++++++
3 files changed, 177 insertions(+)
create mode 100644 clangd/index/dex/dexp/CMakeLists.txt
create mode 100644 clangd/index/dex/dexp/Dexp.cpp
--
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 175895dc1ca * tree-vrp.c (vrp_shift_undefined_p): Remove. (extract_ra [...]
new f1e7f337be6 [debug] Add -gdescribe-dies
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 | 16 ++++++++++++++
gcc/common.opt | 4 ++++
gcc/doc/invoke.texi | 8 ++++++-
gcc/dwarf2out.c | 57 +++++++++++++++++++++++++++++++++++++++++++++++++
gcc/tree-pretty-print.c | 10 +++++++++
gcc/tree-pretty-print.h | 1 +
6 files changed, 95 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 llvm.
from 867f48781f0 Revert "AMDGPU: Move isa version and EF_AMDGPU_MACH_* deter [...]
new ab4b357430e Remove unused include from IVDescriptors.cpp.
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/Analysis/IVDescriptors.cpp | 1 -
1 file changed, 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.