This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from c590383 Speculative build fix for codeview type dumper API change new 1cd242f CodeGen: Refactor renameDisconnectedComponents() as a pass new e781066 [pdb] Add unit tests for PDB MappedBlockStream and zero copy
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/CodeGen/LiveInterval.h | 72 ---- include/llvm/CodeGen/LiveIntervalAnalysis.h | 5 - include/llvm/CodeGen/Passes.h | 5 + include/llvm/DebugInfo/PDB/Raw/IPDBFile.h | 8 +- include/llvm/DebugInfo/PDB/Raw/InfoStream.h | 1 + include/llvm/DebugInfo/PDB/Raw/MappedBlockStream.h | 8 +- include/llvm/DebugInfo/PDB/Raw/PDBFile.h | 10 +- include/llvm/InitializePasses.h | 1 + include/llvm/Support/Allocator.h | 2 + lib/CodeGen/CMakeLists.txt | 1 + lib/CodeGen/CodeGen.cpp | 1 + lib/CodeGen/LiveInterval.cpp | 267 +------------- lib/CodeGen/LiveIntervalAnalysis.cpp | 16 - lib/CodeGen/LiveRangeUtils.h | 62 ++++ lib/CodeGen/MachineScheduler.cpp | 12 +- lib/CodeGen/RenameIndependentSubregs.cpp | 388 +++++++++++++++++++++ lib/CodeGen/TargetPassConfig.cpp | 5 + lib/DebugInfo/PDB/Raw/InfoStream.cpp | 1 + lib/DebugInfo/PDB/Raw/MappedBlockStream.cpp | 7 +- lib/DebugInfo/PDB/Raw/ModStream.cpp | 1 + lib/DebugInfo/PDB/Raw/SymbolStream.cpp | 1 + lib/DebugInfo/PDB/Raw/TpiStream.cpp | 1 + test/CodeGen/AMDGPU/rename-independent-subregs.mir | 30 ++ unittests/DebugInfo/PDB/CMakeLists.txt | 1 + unittests/DebugInfo/PDB/MappedBlockStreamTest.cpp | 161 +++++++++ 25 files changed, 682 insertions(+), 385 deletions(-) create mode 100644 lib/CodeGen/LiveRangeUtils.h create mode 100644 lib/CodeGen/RenameIndependentSubregs.cpp create mode 100644 test/CodeGen/AMDGPU/rename-independent-subregs.mir create mode 100644 unittests/DebugInfo/PDB/MappedBlockStreamTest.cpp