This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 02b91a8b773 Fix the Windows build in GlobalISel new 6d4c271eeb2 [codeview] Emit S_FRAMEPROC and use S_DEFRANGE_FRAMEPOINTER_REL
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/llvm/CodeGen/MIRYamlMapping.h | 5 + include/llvm/CodeGen/MachineFrameInfo.h | 13 + include/llvm/DebugInfo/CodeView/CodeView.h | 13 + include/llvm/DebugInfo/CodeView/SymbolRecord.h | 38 +-- lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | 196 ++++++++++--- lib/CodeGen/AsmPrinter/CodeViewDebug.h | 30 +- lib/CodeGen/MIRParser/MIRParser.cpp | 1 + lib/CodeGen/MIRPrinter.cpp | 2 + lib/DebugInfo/CodeView/SymbolRecordMapping.cpp | 72 +++++ lib/Target/X86/X86FrameLowering.cpp | 1 + test/CodeGen/MIR/Generic/frame-info.mir | 3 + test/CodeGen/MIR/X86/diexpr-win32.mir | 31 +- test/DebugInfo/COFF/asm.ll | 2 +- test/DebugInfo/COFF/frameproc-flags.ll | 379 +++++++++++++++++++++++++ test/DebugInfo/COFF/local-variables.ll | 45 +-- test/DebugInfo/COFF/multifile.ll | 4 +- test/DebugInfo/COFF/multifunction.ll | 86 +++++- test/DebugInfo/COFF/pieces.ll | 10 +- test/DebugInfo/COFF/simple.ll | 34 ++- test/DebugInfo/COFF/types-array.ll | 7 +- test/DebugInfo/COFF/vframe-fpo.ll | 264 +++++++++++++++++ test/DebugInfo/X86/dbg-declare-inalloca.ll | 21 +- test/MC/ARM/coff-debugging-secrel.ll | 4 +- 23 files changed, 1099 insertions(+), 162 deletions(-) create mode 100644 test/DebugInfo/COFF/frameproc-flags.ll create mode 100644 test/DebugInfo/COFF/vframe-fpo.ll