[codeview] Add new directives to record inlined call site line info
authorReid Kleckner <rnk@google.com>
Wed, 7 Sep 2016 16:15:31 +0000 (16:15 +0000)
committerReid Kleckner <rnk@google.com>
Wed, 7 Sep 2016 16:15:31 +0000 (16:15 +0000)
commita9f4cc9510546f5728258524d344a3e03e43500b
tree8c6bd504353371952bd5a670e5ce63aebeceb36e
parent9aa7d66aabe554ad9c34a938ce776f45ae3f3db9
[codeview] Add new directives to record inlined call site line info

Summary:
Previously we were trying to represent this with the "contains" list of
the .cv_inline_linetable directive, which was not enough information.
Now we directly represent the chain of inlined call sites, so we know
what location to emit when we encounter a .cv_loc directive of an inner
inlined call site while emitting the line table of an outer function or
inlined call site. Fixes PR29146.

Also fixes PR29147, where we would crash when .cv_loc directives crossed
sections. Now we write down the section of the first .cv_loc directive,
and emit an error if any other .cv_loc directive for that function is in
a different section.

Also fixes issues with discontiguous inlined source locations, like in
this example:

  volatile int unlikely_cond = 0;
  extern void __declspec(noreturn) abort();
  __forceinline void f() {
    if (!unlikely_cond) abort();
  }
  int main() {
    unlikely_cond = 0;
    f();
    unlikely_cond = 0;
  }

Previously our tables gave bad location information for the 'abort'
call, and the debugger wouldn't snow the inlined stack frame for 'f'.
It is important to emit good line tables for this code pattern, because
it comes up whenever an asan bug occurs in an inlined function. The
__asan_report* stubs are generally placed after the normal function
epilogue, leading to discontiguous regions of inlined code.

Reviewers: majnemer, amccarth

Subscribers: llvm-commits

Differential Revision: https://reviews.llvm.org/D24014

llvm-svn: 280822
23 files changed:
llvm/include/llvm/MC/MCCodeView.h
llvm/include/llvm/MC/MCFragment.h
llvm/include/llvm/MC/MCObjectStreamer.h
llvm/include/llvm/MC/MCStreamer.h
llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
llvm/lib/MC/MCAsmStreamer.cpp
llvm/lib/MC/MCCodeView.cpp
llvm/lib/MC/MCObjectStreamer.cpp
llvm/lib/MC/MCParser/AsmParser.cpp
llvm/lib/MC/MCStreamer.cpp
llvm/test/DebugInfo/COFF/inlining-header.ll
llvm/test/DebugInfo/COFF/inlining-levels.ll
llvm/test/DebugInfo/COFF/inlining.ll
llvm/test/DebugInfo/COFF/local-variables.ll
llvm/test/MC/COFF/cv-def-range.s
llvm/test/MC/COFF/cv-empty-linetable.s
llvm/test/MC/COFF/cv-errors.s [new file with mode: 0644]
llvm/test/MC/COFF/cv-inline-linetable-infloop.s
llvm/test/MC/COFF/cv-inline-linetable-unlikely.s [new file with mode: 0644]
llvm/test/MC/COFF/cv-inline-linetable-unreachable.s
llvm/test/MC/COFF/cv-inline-linetable.s
llvm/test/MC/COFF/cv-loc-cross-section.s [new file with mode: 0644]
llvm/test/MC/COFF/cv-loc.s