This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from df6ca162269 bpf: add new insns for bswap_to_le and negation
new e6d6266fc76 [DAGCombiner] Fix an off-by-one error in vector logic
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/SelectionDAG/DAGCombiner.cpp | 4 ++--
test/CodeGen/ARM/crash-on-pow2-shufflevector.ll | 24 ++++++++++++++++++++++++
2 files changed, 26 insertions(+), 2 deletions(-)
create mode 100644 test/CodeGen/ARM/crash-on-pow2-shufflevector.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 compiler-rt.
from 59f023a92 [ubsan] Merge ubsan_standalone_cxx shared library.
new af46bb333 [XRay] [compiler-rt] FDR logging arg1 handler
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/xray/xray_log_interface.h | 3 +
lib/xray/xray_fdr_log_records.h | 1 +
lib/xray/xray_fdr_logging.cc | 17 +++-
lib/xray/xray_fdr_logging.h | 1 +
lib/xray/xray_fdr_logging_impl.h | 130 ++++++++++++++++---------------
lib/xray/xray_trampoline_x86_64.S | 6 +-
test/xray/TestCases/Linux/arg1-logger.cc | 6 +-
test/xray/TestCases/Linux/fdr-mode.cc | 13 +++-
8 files changed, 106 insertions(+), 71 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 3e89b3da [clangd] Handle InitializeParams and store rootUri
new 1c629791 [clangd] LSP extension to switch between source/header file
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/ClangdLSPServer.cpp | 17 +++++++++
clangd/ClangdServer.cpp | 60 ++++++++++++++++++++++++++++++
clangd/ClangdServer.h | 4 ++
clangd/ProtocolHandlers.cpp | 19 ++++++++++
clangd/ProtocolHandlers.h | 2 +
unittests/clangd/ClangdTests.cpp | 79 ++++++++++++++++++++++++++++++++++++++++
6 files changed, 181 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 a420002dfe2 [ORC] Update the GlobalMappingLayer interface to fit the er [...]
new e87cf87e451 Use a BumpPtrAllocator for Loop objects
new df6ca162269 bpf: add new insns for bswap_to_le and negation
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:
include/llvm/Analysis/LoopInfo.h | 72 ++++++++++++++--------
include/llvm/Analysis/LoopInfoImpl.h | 2 +-
include/llvm/Analysis/LoopPass.h | 4 ++
include/llvm/CodeGen/MachineLoopInfo.h | 4 +-
include/llvm/IR/PassManager.h | 4 +-
include/llvm/Support/Allocator.h | 3 +
include/llvm/Transforms/Scalar/LoopPassManager.h | 4 +-
lib/Analysis/CGSCCPassManager.cpp | 2 +-
lib/Analysis/LoopAnalysisManager.cpp | 2 +-
lib/Analysis/LoopInfo.cpp | 4 +-
lib/Analysis/LoopPass.cpp | 26 +++++---
lib/Target/BPF/AsmParser/BPFAsmParser.cpp | 41 +++++++++---
lib/Target/BPF/BPFInstrFormats.td | 1 +
lib/Target/BPF/BPFInstrInfo.td | 42 +++++++++++--
lib/Transforms/IPO/Inliner.cpp | 4 +-
lib/Transforms/IPO/LoopExtractor.cpp | 3 +-
.../Scalar/InductiveRangeCheckElimination.cpp | 2 +-
lib/Transforms/Scalar/LoopDeletion.cpp | 13 +++-
lib/Transforms/Scalar/LoopUnrollPass.cpp | 23 ++++---
lib/Transforms/Scalar/LoopUnswitch.cpp | 2 +-
lib/Transforms/Utils/CloneFunction.cpp | 2 +-
lib/Transforms/Utils/LoopSimplify.cpp | 2 +-
lib/Transforms/Utils/LoopUnroll.cpp | 2 +-
lib/Transforms/Vectorize/LoopVectorize.cpp | 2 +-
test/CodeGen/BPF/intrinsics.ll | 39 ++++++++----
test/CodeGen/BPF/objdump_intrinsics.ll | 39 ++++++++----
test/MC/BPF/insn-unit-32.s | 2 +
test/MC/BPF/insn-unit.s | 14 +++--
.../LoopUnroll/unroll-loop-invalidation.ll | 4 +-
.../Transforms/Scalar/LoopPassManagerTest.cpp | 15 ++---
30 files changed, 258 insertions(+), 121 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 76b3e046e79 Fix a UBsan bot.
new a420002dfe2 [ORC] Update the GlobalMappingLayer interface to fit the er [...]
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:
.../llvm/ExecutionEngine/Orc/GlobalMappingLayer.h | 11 +--
.../Orc/CompileOnDemandLayerTest.cpp | 21 +++--
.../ExecutionEngine/Orc/GlobalMappingLayerTest.cpp | 28 ++++---
unittests/ExecutionEngine/Orc/OrcTestCommon.h | 90 ++++++++++------------
4 files changed, 72 insertions(+), 78 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 hjl/pie/static
in repository glibc.
discards 1dc22c71a3 Add --enable-static-pie to build-many-glibcs.py
discards 03d0631c58 Don't use hidden visibility in libc.a with PIE on i386
discards d5b617dac5 Add --enable-static-pie configure option to build static PIE
new 89cd185bfd Add --enable-static-pie configure option to build static PIE
new 2a6941ee87 Don't use hidden visibility in libc.a with PIE on i386
new b4be70c384 Add --enable-static-pie to build-many-glibcs.py
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 (1dc22c71a3)
\
N -- N -- N refs/heads/hjl/pie/static (b4be70c384)
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 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:
INSTALL | 8 +++++---
NEWS | 5 ++++-
manual/install.texi | 8 +++++---
3 files changed, 14 insertions(+), 7 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 35b54a9ed7 [NFC] Modernize MacroArgs using TrailingObjects
new 29487927c0 [NFC] Don't use C++17 standard lib variable template helper [...]
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/Lex/MacroArgs.cpp | 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 release/2.26/master
in repository glibc.
from d37c951fde Let fpclassify use the builtin when optimizing for size in C [...]
new 548cc83c38 Fix nearbyint arithmetic moved before feholdexcept (bug 22225).
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 | 13 +++++++++++++
sysdeps/ieee754/dbl-64/s_nearbyint.c | 4 ++--
sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c | 8 ++++----
sysdeps/ieee754/flt-32/s_nearbyintf.c | 4 ++--
sysdeps/ieee754/ldbl-128/s_nearbyintl.c | 4 ++--
5 files changed, 23 insertions(+), 10 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 36c5bf71e4 Look through parentheses.
new 35b54a9ed7 [NFC] Modernize MacroArgs using TrailingObjects
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/clang/Lex/MacroArgs.h | 6 +++++-
lib/Lex/MacroArgs.cpp | 25 +++++++++++++++----------
2 files changed, 20 insertions(+), 11 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 7edd06916d Update sysdeps/unix/sysv/linux/ifaddrs.c
new f124cb3811 Fix nearbyint arithmetic moved before feholdexcept (bug 22225).
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 | 13 +++++++++++++
sysdeps/ieee754/dbl-64/s_nearbyint.c | 4 ++--
sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c | 8 ++++----
sysdeps/ieee754/flt-32/s_nearbyintf.c | 4 ++--
sysdeps/ieee754/ldbl-128/s_nearbyintl.c | 4 ++--
5 files changed, 23 insertions(+), 10 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.