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