This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 1f37794 Revert "[pdb] Allow zero-copy read support for symbol streams." new e8799b6 Resubmit "[pdb] Allow zero-copy read support for symbol streams."" new 1ae94e2 [MC] Support symbolic expressions in assembly directives new cb3c571 Don't assume that there will be another null byte new ff1f039 Don't assume that there will be enough padding bytes new 6dc6bd9 Avoid overflow when computing the size of an array new c21577e Make sure data is available before dereferencing it new 780aab5 [X86] Detect SAD patterns and emit psadbw instructions.
The 7 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/CVSymbolVisitor.h | 2 +- include/llvm/DebugInfo/CodeView/CVTypeVisitor.h | 13 +- include/llvm/DebugInfo/CodeView/RecordIterator.h | 38 +- .../llvm/DebugInfo/CodeView/RecordSerialization.h | 6 + include/llvm/DebugInfo/CodeView/StreamArray.h | 71 +- include/llvm/DebugInfo/CodeView/StreamReader.h | 9 + include/llvm/DebugInfo/CodeView/SymbolDumper.h | 2 +- include/llvm/DebugInfo/CodeView/SymbolRecord.h | 4 + include/llvm/DebugInfo/CodeView/TypeDumper.h | 2 +- include/llvm/DebugInfo/PDB/Raw/DbiStream.h | 1 - include/llvm/DebugInfo/PDB/Raw/ModInfo.h | 15 +- include/llvm/DebugInfo/PDB/Raw/ModStream.h | 6 +- include/llvm/MC/MCObjectStreamer.h | 5 + include/llvm/MC/MCStreamer.h | 22 + lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 18 +- lib/DebugInfo/CodeView/RecordSerialization.cpp | 14 + lib/DebugInfo/CodeView/SymbolDumper.cpp | 2 +- lib/DebugInfo/CodeView/TypeDumper.cpp | 2 +- lib/DebugInfo/PDB/Raw/DbiStream.cpp | 10 +- lib/DebugInfo/PDB/Raw/ModInfo.cpp | 2 + lib/DebugInfo/PDB/Raw/ModStream.cpp | 13 +- lib/MC/MCAsmStreamer.cpp | 40 +- lib/MC/MCObjectStreamer.cpp | 38 + lib/MC/MCParser/AsmParser.cpp | 42 +- lib/MC/MCStreamer.cpp | 16 +- lib/Target/X86/X86ISelLowering.cpp | 140 +++ test/CodeGen/X86/sad.ll | 1094 ++++++++++++++++++++ test/MC/AsmParser/directive_fill.s | 53 +- test/MC/AsmParser/directive_space.s | 5 + test/MC/AsmParser/symbolic-expression.s | 17 + 30 files changed, 1570 insertions(+), 132 deletions(-) create mode 100644 test/CodeGen/X86/sad.ll create mode 100644 test/MC/AsmParser/symbolic-expression.s