This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 1bf6297ee85 Add support for DW_TAG_thrown_type.
new 089cd2cb501 Revert r301487: Replace HashString algorithm with xxHash64
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/ADT/StringExtras.h | 15 +++++++-----
include/llvm/Support/xxhash.h | 2 +-
lib/Support/xxhash.cpp | 3 ++-
.../Generic/accel-table-hash-collisions.ll | 4 ++--
test/DebugInfo/PDB/pdbdump-headers.test | 4 ++--
test/DebugInfo/X86/gnu-public-names.ll | 27 ++++++++++------------
6 files changed, 28 insertions(+), 27 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 lldb.
from d6cc6f8ca Update lldb to match clang r301442.
new e82f6c4f5 Re-landing IPv6 support for LLDB Host
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:
cmake/modules/LLDBConfig.cmake | 9 +-
include/lldb/Host/Config.h | 4 +
include/lldb/Host/Config.h.cmake | 4 +
include/lldb/Host/MainLoop.h | 95 +++++++-
include/lldb/Host/Socket.h | 7 +-
include/lldb/Host/common/TCPSocket.h | 22 +-
include/lldb/Host/common/UDPSocket.h | 9 +-
include/lldb/Host/linux/AbstractSocket.h | 2 +-
include/lldb/Host/posix/DomainSocket.h | 10 +-
include/lldb/Host/posix/MainLoopPosix.h | 104 ---------
lldb.xcodeproj/project.pbxproj | 8 +-
source/Host/CMakeLists.txt | 2 +-
.../MainLoopPosix.cpp => common/MainLoop.cpp} | 144 +++++++++---
source/Host/common/Socket.cpp | 38 ++--
source/Host/common/SocketAddress.cpp | 3 +-
source/Host/common/TCPSocket.cpp | 250 ++++++++++++---------
source/Host/common/UDPSocket.cpp | 84 ++++---
source/Host/linux/AbstractSocket.cpp | 4 +-
.../Host/posix/ConnectionFileDescriptorPosix.cpp | 4 +-
source/Host/posix/DomainSocket.cpp | 35 +--
.../Android/PlatformAndroidRemoteGDBServer.cpp | 2 +-
.../debugserver.xcodeproj/project.pbxproj | 4 +
tools/debugserver/source/CMakeLists.txt | 1 +
tools/debugserver/source/RNBSocket.cpp | 246 ++++++++++----------
tools/debugserver/source/debugserver.cpp | 16 +-
tools/lldb-server/Acceptor.cpp | 3 +-
unittests/Host/SocketTest.cpp | 21 +-
.../Process/gdb-remote/GDBRemoteTestUtils.cpp | 5 +-
unittests/debugserver/RNBSocketTest.cpp | 31 ++-
29 files changed, 680 insertions(+), 487 deletions(-)
delete mode 100644 include/lldb/Host/posix/MainLoopPosix.h
rename source/Host/{posix/MainLoopPosix.cpp => common/MainLoop.cpp} (59%)
--
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 3670d2ef78 Replace HashString algorithm with xxHash64
new 4deadfaaec Revert r301487: Replace HashString algorithm with xxHash64
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/CodeGen/target-features-error-2.c | 9 +++------
test/CodeGen/target-features-error.c | 3 ++-
test/SemaCXX/typo-correction-delayed.cpp | 7 +------
unittests/Tooling/CompilationDatabaseTest.cpp | 4 ++--
4 files changed, 8 insertions(+), 15 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 lld.
from 49ec94fe9 Removes createELFFile which takes a template class as a templ [...]
new 9f0c6b776 Remove unnecessary instantiation of StringRef.
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/InputFiles.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 llvm.
from 2db23b3bbe9 Replace HashString algorithm with xxHash64
new 1bf6297ee85 Add support for DW_TAG_thrown_type.
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/DIBuilder.h | 23 +++----
include/llvm/IR/DebugInfoMetadata.h | 40 ++++++------
lib/AsmParser/LLParser.cpp | 17 +++---
lib/Bitcode/Reader/MetadataLoader.cpp | 48 ++++++++-------
lib/Bitcode/Writer/BitcodeWriter.cpp | 1 +
lib/CodeGen/AsmPrinter/DwarfUnit.cpp | 10 +++
lib/CodeGen/AsmPrinter/DwarfUnit.h | 3 +
lib/IR/AsmWriter.cpp | 1 +
lib/IR/DIBuilder.cpp | 26 ++++----
lib/IR/DebugInfoMetadata.cpp | 12 ++--
lib/IR/LLVMContextImpl.h | 12 ++--
lib/IR/Verifier.cpp | 8 +++
test/Assembler/disubprogram.ll | 16 +++--
test/DebugInfo/Generic/thrownTypes.ll | 38 ++++++++++++
test/Verifier/DISubprogram.ll | 22 +++++++
unittests/IR/IRBuilderTest.cpp | 19 ++++++
unittests/IR/MetadataTest.cpp | 112 +++++++++++++++++++---------------
17 files changed, 272 insertions(+), 136 deletions(-)
create mode 100644 test/DebugInfo/Generic/thrownTypes.ll
create mode 100644 test/Verifier/DISubprogram.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 lld.
from 02091467f Create an OutputSection for each non-empty OutputSectionCommand.
new 49ec94fe9 Removes createELFFile which takes a template class as a templ [...]
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/InputFiles.cpp | 109 +++++++++++++++++++++++++---------------------------
ELF/InputFiles.h | 2 +-
ELF/SymbolTable.cpp | 3 ++
3 files changed, 57 insertions(+), 57 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 f49f90e97b1 [MC] Fix some Clang-tidy modernize-use-using warnings; othe [...]
new 2db23b3bbe9 Replace HashString algorithm with xxHash64
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/ADT/StringExtras.h | 15 +++++-------
include/llvm/Support/xxhash.h | 2 +-
lib/Support/xxhash.cpp | 3 +--
.../Generic/accel-table-hash-collisions.ll | 4 ++--
test/DebugInfo/PDB/pdbdump-headers.test | 4 ++--
test/DebugInfo/X86/gnu-public-names.ll | 27 ++++++++++++----------
6 files changed, 27 insertions(+), 28 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 1e2ea9a764 [ubsan] nullability-assign: Check assignments into C++ structs
new bf6842052a Fix comment. NFC
new 3670d2ef78 Replace HashString algorithm with xxHash64
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/Sema/SemaExpr.cpp | 3 +--
test/CodeGen/target-features-error-2.c | 9 ++++++---
test/CodeGen/target-features-error.c | 3 +--
test/SemaCXX/typo-correction-delayed.cpp | 7 ++++++-
unittests/Tooling/CompilationDatabaseTest.cpp | 4 ++--
5 files changed, 16 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 release_40
in repository llvm.
from 9d5771aefb4 Merging r294786:
new 7b1ecc9ffb8 Merging r292034: (PR32315)
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/ADT/DenseSet.h | 4 ++++
1 file changed, 4 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 2f1bbeb63f6 [LibCallsShrinkWrap] Remove an unnecessary class member variable.
new f49f90e97b1 [MC] Fix some Clang-tidy modernize-use-using warnings; othe [...]
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/MC/ConstantPools.h | 4 ++--
include/llvm/MC/LaneBitmask.h | 9 +++++---
include/llvm/MC/MCAssembler.h | 34 ++++++++++++++--------------
include/llvm/MC/MCContext.h | 6 ++++-
include/llvm/MC/MCDwarf.h | 8 +++----
include/llvm/MC/MCExpr.h | 3 ++-
include/llvm/MC/MCFragment.h | 4 ++--
include/llvm/MC/MCInst.h | 5 ++--
include/llvm/MC/MCLinkerOptimizationHint.h | 8 +++----
include/llvm/MC/MCParser/MCAsmParser.h | 6 ++---
include/llvm/MC/MCParser/MCTargetAsmParser.h | 2 +-
include/llvm/MC/MCRegisterInfo.h | 8 +++----
include/llvm/MC/MCSection.h | 10 ++++----
include/llvm/MC/MCStreamer.h | 3 +--
include/llvm/MC/MCSubtargetInfo.h | 8 +++----
include/llvm/MC/MCSymbol.h | 4 ++--
lib/MC/ELFObjectWriter.cpp | 8 +++----
lib/MC/StringTableBuilder.cpp | 2 +-
lib/MC/WinCOFFObjectWriter.cpp | 15 ++++++------
19 files changed, 78 insertions(+), 69 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.