This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 1b5d21e [Hexagon] Handle instruction latency for 0 or 2 cycles
new 0d9b855 StructurizeCFG: Fix inverting constantexpr conditions
new 6be3e7c [pdb] Use MsfBuilder to handle the writing PDBs.
new 93a8d14 [pdb] Round trip the NameMap data structure to YAML.
new 9b30e73 [pdb] Teach MsfBuilder and other classes about the Free Page Map.
new 6417b3c [lanai] Fix build by updating calls to getLoad & getStore.
The 5 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/DebugInfo/CodeView/StreamArray.h | 12 ++-
include/llvm/DebugInfo/PDB/Raw/DbiStreamBuilder.h | 7 +-
include/llvm/DebugInfo/PDB/Raw/InfoStream.h | 2 +-
include/llvm/DebugInfo/PDB/Raw/InfoStreamBuilder.h | 15 +--
include/llvm/DebugInfo/PDB/Raw/MsfBuilder.h | 5 +
include/llvm/DebugInfo/PDB/Raw/MsfCommon.h | 11 +-
include/llvm/DebugInfo/PDB/Raw/NameMap.h | 4 +-
include/llvm/DebugInfo/PDB/Raw/NameMapBuilder.h | 41 ++++++++
include/llvm/DebugInfo/PDB/Raw/PDBFile.h | 43 +-------
include/llvm/DebugInfo/PDB/Raw/PDBFileBuilder.h | 13 ++-
lib/DebugInfo/PDB/CMakeLists.txt | 1 +
lib/DebugInfo/PDB/Raw/DbiStream.cpp | 31 +++++-
lib/DebugInfo/PDB/Raw/DbiStreamBuilder.cpp | 13 ++-
lib/DebugInfo/PDB/Raw/InfoStream.cpp | 6 +-
lib/DebugInfo/PDB/Raw/InfoStreamBuilder.cpp | 17 ++-
lib/DebugInfo/PDB/Raw/MsfBuilder.cpp | 59 +++++++++--
lib/DebugInfo/PDB/Raw/NameMap.cpp | 44 +++++++-
lib/DebugInfo/PDB/Raw/NameMapBuilder.cpp | 50 +++++++++
lib/DebugInfo/PDB/Raw/PDBFile.cpp | 55 ++--------
lib/DebugInfo/PDB/Raw/PDBFileBuilder.cpp | 115 ++++++++-------------
lib/Target/Lanai/LanaiISelLowering.cpp | 16 ++-
lib/Transforms/Scalar/StructurizeCFG.cpp | 10 +-
test/DebugInfo/PDB/pdbdump-headers.test | 9 +-
test/DebugInfo/PDB/pdbdump-write.test | 10 +-
test/DebugInfo/PDB/pdbdump-yaml.test | 10 +-
.../StructurizeCFG/invert-constantexpr.ll | 30 ++++++
tools/llvm-pdbdump/LLVMOutputStyle.cpp | 3 +-
tools/llvm-pdbdump/PdbYaml.cpp | 15 ++-
tools/llvm-pdbdump/PdbYaml.h | 27 +++--
tools/llvm-pdbdump/YAMLOutputStyle.cpp | 18 ++--
tools/llvm-pdbdump/llvm-pdbdump.cpp | 52 +++++++---
unittests/DebugInfo/PDB/MsfBuilderTest.cpp | 72 +++++++++++--
32 files changed, 539 insertions(+), 277 deletions(-)
create mode 100644 include/llvm/DebugInfo/PDB/Raw/NameMapBuilder.h
create mode 100644 lib/DebugInfo/PDB/Raw/NameMapBuilder.cpp
create mode 100644 test/Transforms/StructurizeCFG/invert-constantexpr.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 clang.
from 97fe2e8 Revert r275481, r275490. This broke modules bootstrap.
new 51856a5 [index] Create different USR if a property is a class property.
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/Index/USRGeneration.h | 2 +-
lib/Index/USRGeneration.cpp | 11 ++++++-----
test/Index/index-decls.m | 2 ++
tools/libclang/CIndexUSRs.cpp | 2 +-
4 files changed, 10 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 dj/malloc
in repository glibc.
from 0eacff3 Fix mmap/munmap trace bits
new fcf17bd Fix NULL return value handling
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:
malloc/trace2wl.cc | 13 ++++++++-----
malloc/trace_run.c | 16 ++++++++++++++++
2 files changed, 24 insertions(+), 5 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 35290cc AMDGPU: Remove brev intrinsic
new 1b5d21e [Hexagon] Handle instruction latency for 0 or 2 cycles
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/Hexagon/HexagonInstrInfo.cpp | 32 +++++
lib/Target/Hexagon/HexagonInstrInfo.h | 4 +
lib/Target/Hexagon/HexagonMachineScheduler.cpp | 22 ++++
lib/Target/Hexagon/HexagonSubtarget.cpp | 159 +++++++++++++++++++++++++
lib/Target/Hexagon/HexagonSubtarget.h | 10 ++
5 files changed, 227 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 clang.
from ab693fe Push alias-declarations and alias-template declarations into [...]
new 34f54fa AMDGPU: Update for rsq intrinsic changes
new 571b15e AMDGPU: Remove legacy ldexp builtin
new 97fe2e8 Revert r275481, r275490. This broke modules bootstrap.
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:
include/clang/Basic/BuiltinsAMDGPU.def | 10 +--
include/clang/Serialization/ASTReader.h | 28 +------
lib/CodeGen/CGBuiltin.cpp | 18 +----
lib/Serialization/ASTReader.cpp | 90 ----------------------
lib/Serialization/ASTReaderDecl.cpp | 17 ++--
lib/Serialization/ASTWriterDecl.cpp | 2 +-
test/CodeGenOpenCL/builtins-amdgcn.cl | 30 --------
test/CodeGenOpenCL/builtins-r600.cl | 32 ++------
test/Modules/Inputs/unused-global-init/init.h | 1 -
.../Inputs/unused-global-init/module.modulemap | 3 -
test/Modules/Inputs/unused-global-init/other.h | 1 -
test/Modules/Inputs/unused-global-init/unused.h | 1 -
test/Modules/Inputs/unused-global-init/used.h | 2 -
test/Modules/unused-global-init.cpp | 36 ---------
14 files changed, 24 insertions(+), 247 deletions(-)
delete mode 100644 test/Modules/Inputs/unused-global-init/init.h
delete mode 100644 test/Modules/Inputs/unused-global-init/module.modulemap
delete mode 100644 test/Modules/Inputs/unused-global-init/other.h
delete mode 100644 test/Modules/Inputs/unused-global-init/unused.h
delete mode 100644 test/Modules/Inputs/unused-global-init/used.h
delete mode 100644 test/Modules/unused-global-init.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 newlib.
from 7475b65 Put previous doc in correct section
new 52d940e math.h: fix guards on basic M_ constants
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:
newlib/libc/include/math.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 compiler-rt.
from 35348de [Profile] instroduce portability macro for dir separator(s
new b2df854 [sanitizers] add interceptor for memmem; add weak hooks for s [...]
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/sanitizer/common_interface_defs.h | 11 +++
.../sanitizer_common_interceptors.inc | 54 +++++++++++++-
lib/sanitizer_common/sanitizer_flags.inc | 2 +
.../sanitizer_platform_interceptors.h | 1 +
test/asan/TestCases/memmem_test.cc | 21 ++++++
.../TestCases/Linux/weak_hook_test.cc | 82 ++++++++++++++++++++++
6 files changed, 169 insertions(+), 2 deletions(-)
create mode 100644 test/asan/TestCases/memmem_test.cc
create mode 100644 test/sanitizer_common/TestCases/Linux/weak_hook_test.cc
--
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 dj/malloc
in repository glibc.
from cfc8967 Add trace_dump tool
new 0eacff3 Fix mmap/munmap trace bits
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:
malloc/malloc.c | 6 ++----
1 file changed, 2 insertions(+), 4 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 32cf292 [pdb] Introduce MsfBuilder for laying out PDB files.
new bf4114e Make processInstruction from LCSSA.cpp externally available.
new 1083a52 CodeGen: avoid emitting unnecessary CFI
new db823e2 DebugInfo: reorder some initializers
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:
include/llvm/Transforms/Utils/LoopUtils.h | 14 ++
lib/CodeGen/AsmPrinter/DwarfCFIException.cpp | 9 +-
lib/DebugInfo/PDB/Raw/MsfBuilder.cpp | 4 +-
lib/Transforms/Utils/LCSSA.cpp | 246 ++++++++++++++-------------
test/CodeGen/ARM/2009-08-31-LSDA-Name.ll | 8 +-
test/DebugInfo/ARM/prologue_end.ll | 1 -
6 files changed, 152 insertions(+), 130 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.