This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from c4cd817 [MBP] Split placement and alignment into two functions. NFC. new 4c9f41e [BasicAA] Treat llvm.assume as not accessing memory in getMod [...] new 89509a3 Do not read callee name when matching IR to profile as it is [...] new 64cc1b2 Refactor the PDB Stream reading interface.
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/DebugInfo/PDB/Raw/ByteStream.h | 47 +++++++++++++++++ include/llvm/DebugInfo/PDB/Raw/MappedBlockStream.h | 38 ++++++++++++++ include/llvm/DebugInfo/PDB/Raw/PDBDbiStream.h | 20 ++++---- include/llvm/DebugInfo/PDB/Raw/PDBInfoStream.h | 4 +- include/llvm/DebugInfo/PDB/Raw/PDBNameMap.h | 4 +- include/llvm/DebugInfo/PDB/Raw/PDBStream.h | 46 ----------------- include/llvm/DebugInfo/PDB/Raw/StreamInterface.h | 29 +++++++++++ include/llvm/DebugInfo/PDB/Raw/StreamReader.h | 46 +++++++++++++++++ lib/Analysis/BasicAliasAnalysis.cpp | 6 +++ lib/DebugInfo/PDB/CMakeLists.txt | 6 ++- lib/DebugInfo/PDB/Raw/ByteStream.cpp | 60 ++++++++++++++++++++++ .../Raw/{PDBStream.cpp => MappedBlockStream.cpp} | 46 ++++------------- lib/DebugInfo/PDB/Raw/PDBDbiStream.cpp | 52 +++++++++---------- lib/DebugInfo/PDB/Raw/PDBInfoStream.cpp | 16 +++--- lib/DebugInfo/PDB/Raw/PDBNameMap.cpp | 5 +- lib/DebugInfo/PDB/Raw/StreamReader.cpp | 40 +++++++++++++++ lib/Transforms/IPO/SampleProfile.cpp | 11 ++-- test/Transforms/Util/MemorySSA/assume.ll | 17 ++++++ tools/llvm-pdbdump/llvm-pdbdump.cpp | 11 ++-- 19 files changed, 359 insertions(+), 145 deletions(-) create mode 100644 include/llvm/DebugInfo/PDB/Raw/ByteStream.h create mode 100644 include/llvm/DebugInfo/PDB/Raw/MappedBlockStream.h delete mode 100644 include/llvm/DebugInfo/PDB/Raw/PDBStream.h create mode 100644 include/llvm/DebugInfo/PDB/Raw/StreamInterface.h create mode 100644 include/llvm/DebugInfo/PDB/Raw/StreamReader.h create mode 100644 lib/DebugInfo/PDB/Raw/ByteStream.cpp rename lib/DebugInfo/PDB/Raw/{PDBStream.cpp => MappedBlockStream.cpp} (54%) create mode 100644 lib/DebugInfo/PDB/Raw/StreamReader.cpp create mode 100644 test/Transforms/Util/MemorySSA/assume.ll