From: Adrian Prantl Date: Wed, 16 Nov 2016 18:49:47 +0000 (+0000) Subject: Fix PR31029 by attaching an artificial debug location to msabi thunks. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=70c1976f0a6115c56ae72cd4bcdefa94dc390703;p=clang Fix PR31029 by attaching an artificial debug location to msabi thunks. This was a latent bug that was recently uncovered by r286400. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@287134 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/MicrosoftCXXABI.cpp b/lib/CodeGen/MicrosoftCXXABI.cpp index 9f6022fce3..2722985b2e 100644 --- a/lib/CodeGen/MicrosoftCXXABI.cpp +++ b/lib/CodeGen/MicrosoftCXXABI.cpp @@ -3840,8 +3840,11 @@ MicrosoftCXXABI::getAddrOfCXXCtorClosure(const CXXConstructorDecl *CD, FunctionArgs.push_back(&IsMostDerived); // Start defining the function. + auto NL = ApplyDebugLocation::CreateEmpty(CGF); CGF.StartFunction(GlobalDecl(), FnInfo.getReturnType(), ThunkFn, FnInfo, FunctionArgs, CD->getLocation(), SourceLocation()); + // Create a scope with an artificial location for the body of this function. + auto AL = ApplyDebugLocation::CreateArtificial(CGF); EmitThisParam(CGF); llvm::Value *This = getThisValue(CGF); diff --git a/test/CodeGenCXX/debug-info-thunk-msabi.cpp b/test/CodeGenCXX/debug-info-thunk-msabi.cpp new file mode 100644 index 0000000000..3c9e2e0873 --- /dev/null +++ b/test/CodeGenCXX/debug-info-thunk-msabi.cpp @@ -0,0 +1,19 @@ +// RUN: %clang_cc1 %s -triple i386-pc-windows-msvc19.0.0 -emit-obj \ +// RUN: -debug-info-kind=line-tables-only -fms-extensions +class __declspec(dllexport) A { + A(int * = new int) {} +}; +// CHECK: define {{.*}}void @"\01??_FA@@AAEXXZ" +// CHECK-SAME: !dbg ![[SP:[0-9]+]] +// CHECK-NOT: {{ret }} +// CHECK: call x86_thiscallcc %class.A* @"\01??0A@@AAE@PAH@Z"(%class.A* %this1, i32* %0) +// CHECK-SAME: !dbg ![[DBG:[0-9]+]] +// CHECK: ret void, !dbg ![[DBG]] +// +// CHECK: ![[SP]] = distinct !DISubprogram( +// CHECK-SAME: line: 3 +// CHECK-SAME: isDefinition: true +// CHECK-SAME: DIFlagArtificial +// CHECK-SAME: ){{$}} +// +// CHECK: ![[DBG]] = !DILocation(line: 0