2012-12-18 22:30:41 +08:00
|
|
|
//===--- CGDebugInfo.cpp - Emit Debug Information for a Module ------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This coordinates the debug information generation while generating code.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "CGDebugInfo.h"
|
|
|
|
#include "CGBlocks.h"
|
2013-05-11 05:53:14 +08:00
|
|
|
#include "CGCXXABI.h"
|
2012-12-18 22:30:41 +08:00
|
|
|
#include "CGObjCRuntime.h"
|
|
|
|
#include "CodeGenFunction.h"
|
|
|
|
#include "CodeGenModule.h"
|
|
|
|
#include "clang/AST/ASTContext.h"
|
|
|
|
#include "clang/AST/DeclFriend.h"
|
|
|
|
#include "clang/AST/DeclObjC.h"
|
|
|
|
#include "clang/AST/DeclTemplate.h"
|
|
|
|
#include "clang/AST/Expr.h"
|
|
|
|
#include "clang/AST/RecordLayout.h"
|
|
|
|
#include "clang/Basic/FileManager.h"
|
|
|
|
#include "clang/Basic/SourceManager.h"
|
|
|
|
#include "clang/Basic/Version.h"
|
|
|
|
#include "clang/Frontend/CodeGenOptions.h"
|
2015-07-01 01:39:51 +08:00
|
|
|
#include "clang/Lex/HeaderSearchOptions.h"
|
2015-09-21 00:51:35 +08:00
|
|
|
#include "clang/Lex/ModuleMap.h"
|
2015-07-01 01:39:51 +08:00
|
|
|
#include "clang/Lex/PreprocessorOptions.h"
|
2012-12-18 22:30:41 +08:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2013-01-02 19:45:17 +08:00
|
|
|
#include "llvm/IR/Constants.h"
|
|
|
|
#include "llvm/IR/DataLayout.h"
|
|
|
|
#include "llvm/IR/DerivedTypes.h"
|
|
|
|
#include "llvm/IR/Instructions.h"
|
|
|
|
#include "llvm/IR/Intrinsics.h"
|
|
|
|
#include "llvm/IR/Module.h"
|
2012-12-18 22:30:41 +08:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
2013-12-19 05:48:18 +08:00
|
|
|
#include "llvm/Support/Path.h"
|
2012-12-18 22:30:41 +08:00
|
|
|
using namespace clang;
|
|
|
|
using namespace clang::CodeGen;
|
|
|
|
|
|
|
|
CGDebugInfo::CGDebugInfo(CodeGenModule &CGM)
|
2013-07-15 05:12:44 +08:00
|
|
|
: CGM(CGM), DebugKind(CGM.getCodeGenOpts().getDebugInfo()),
|
2015-08-28 03:46:20 +08:00
|
|
|
DebugTypeExtRefs(CGM.getCodeGenOpts().DebugTypeExtRefs),
|
2013-07-15 05:12:44 +08:00
|
|
|
DBuilder(CGM.getModule()) {
|
2015-10-13 04:21:08 +08:00
|
|
|
for (const auto &KV : CGM.getCodeGenOpts().DebugPrefixMap)
|
|
|
|
DebugPrefixMap[KV.first] = KV.second;
|
2012-12-18 22:30:41 +08:00
|
|
|
CreateCompileUnit();
|
|
|
|
}
|
|
|
|
|
|
|
|
CGDebugInfo::~CGDebugInfo() {
|
|
|
|
assert(LexicalBlockStack.empty() &&
|
|
|
|
"Region stack mismatch, stack not empty!");
|
|
|
|
}
|
|
|
|
|
2015-02-04 02:40:42 +08:00
|
|
|
ApplyDebugLocation::ApplyDebugLocation(CodeGenFunction &CGF,
|
|
|
|
SourceLocation TemporaryLocation)
|
2015-08-13 07:49:57 +08:00
|
|
|
: CGF(&CGF) {
|
2015-02-04 02:40:42 +08:00
|
|
|
init(TemporaryLocation);
|
2014-12-31 03:39:33 +08:00
|
|
|
}
|
|
|
|
|
2015-01-14 15:38:27 +08:00
|
|
|
ApplyDebugLocation::ApplyDebugLocation(CodeGenFunction &CGF,
|
2015-02-04 04:00:54 +08:00
|
|
|
bool DefaultToEmpty,
|
2015-01-22 07:08:17 +08:00
|
|
|
SourceLocation TemporaryLocation)
|
2015-08-13 07:49:57 +08:00
|
|
|
: CGF(&CGF) {
|
2015-02-04 04:00:54 +08:00
|
|
|
init(TemporaryLocation, DefaultToEmpty);
|
DebugInfo: Use the preferred location rather than the start location for expression line info
This causes things like assignment to refer to the '=' rather than the
LHS when attributing the store instruction, for example.
There were essentially 3 options for this:
* The beginning of an expression (this was the behavior prior to this
commit). This meant that stepping through subexpressions would bounce
around from subexpressions back to the start of the outer expression,
etc. (eg: x + y + z would go x, y, x, z, x (the repeated 'x's would be
where the actual addition occurred)).
* The end of an expression. This seems to be what GCC does /mostly/, and
certainly this for function calls. This has the advantage that
progress is always 'forwards' (never jumping backwards - except for
independent subexpressions if they're evaluated in interesting orders,
etc). "x + y + z" would go "x y z" with the additions occurring at y
and z after the respective loads.
The problem with this is that the user would still have to think
fairly hard about precedence to realize which subexpression is being
evaluated or which operator overload is being called in, say, an asan
backtrace.
* The preferred location or 'exprloc'. In this case you get sort of what
you'd expect, though it's a bit confusing in its own way due to going
'backwards'. In this case the locations would be: "x y + z +" in
lovely postfix arithmetic order. But this does mean that if the op+
were an operator overload, say, and in a backtrace, the backtrace will
point to the exact '+' that's being called, not to the end of one of
its operands.
(actually the operator overload case doesn't work yet for other reasons,
but that's being fixed - but this at least gets scalar/complex
assignments and other plain operators right)
llvm-svn: 227027
2015-01-25 09:19:10 +08:00
|
|
|
}
|
|
|
|
|
2015-02-04 02:40:42 +08:00
|
|
|
void ApplyDebugLocation::init(SourceLocation TemporaryLocation,
|
2015-02-04 04:00:54 +08:00
|
|
|
bool DefaultToEmpty) {
|
2015-08-13 07:49:57 +08:00
|
|
|
auto *DI = CGF->getDebugInfo();
|
|
|
|
if (!DI) {
|
|
|
|
CGF = nullptr;
|
|
|
|
return;
|
2015-01-14 15:38:27 +08:00
|
|
|
}
|
2015-08-13 07:49:57 +08:00
|
|
|
|
|
|
|
OriginalLocation = CGF->Builder.getCurrentDebugLocation();
|
|
|
|
if (TemporaryLocation.isValid()) {
|
|
|
|
DI->EmitLocation(CGF->Builder, TemporaryLocation);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (DefaultToEmpty) {
|
|
|
|
CGF->Builder.SetCurrentDebugLocation(llvm::DebugLoc());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Construct a location that has a valid scope, but no line info.
|
|
|
|
assert(!DI->LexicalBlockStack.empty());
|
|
|
|
CGF->Builder.SetCurrentDebugLocation(
|
|
|
|
llvm::DebugLoc::get(0, 0, DI->LexicalBlockStack.back()));
|
2015-01-10 07:00:28 +08:00
|
|
|
}
|
|
|
|
|
DebugInfo: Use the preferred location rather than the start location for expression line info
This causes things like assignment to refer to the '=' rather than the
LHS when attributing the store instruction, for example.
There were essentially 3 options for this:
* The beginning of an expression (this was the behavior prior to this
commit). This meant that stepping through subexpressions would bounce
around from subexpressions back to the start of the outer expression,
etc. (eg: x + y + z would go x, y, x, z, x (the repeated 'x's would be
where the actual addition occurred)).
* The end of an expression. This seems to be what GCC does /mostly/, and
certainly this for function calls. This has the advantage that
progress is always 'forwards' (never jumping backwards - except for
independent subexpressions if they're evaluated in interesting orders,
etc). "x + y + z" would go "x y z" with the additions occurring at y
and z after the respective loads.
The problem with this is that the user would still have to think
fairly hard about precedence to realize which subexpression is being
evaluated or which operator overload is being called in, say, an asan
backtrace.
* The preferred location or 'exprloc'. In this case you get sort of what
you'd expect, though it's a bit confusing in its own way due to going
'backwards'. In this case the locations would be: "x y + z +" in
lovely postfix arithmetic order. But this does mean that if the op+
were an operator overload, say, and in a backtrace, the backtrace will
point to the exact '+' that's being called, not to the end of one of
its operands.
(actually the operator overload case doesn't work yet for other reasons,
but that's being fixed - but this at least gets scalar/complex
assignments and other plain operators right)
llvm-svn: 227027
2015-01-25 09:19:10 +08:00
|
|
|
ApplyDebugLocation::ApplyDebugLocation(CodeGenFunction &CGF, const Expr *E)
|
2015-08-13 07:49:57 +08:00
|
|
|
: CGF(&CGF) {
|
DebugInfo: Use the preferred location rather than the start location for expression line info
This causes things like assignment to refer to the '=' rather than the
LHS when attributing the store instruction, for example.
There were essentially 3 options for this:
* The beginning of an expression (this was the behavior prior to this
commit). This meant that stepping through subexpressions would bounce
around from subexpressions back to the start of the outer expression,
etc. (eg: x + y + z would go x, y, x, z, x (the repeated 'x's would be
where the actual addition occurred)).
* The end of an expression. This seems to be what GCC does /mostly/, and
certainly this for function calls. This has the advantage that
progress is always 'forwards' (never jumping backwards - except for
independent subexpressions if they're evaluated in interesting orders,
etc). "x + y + z" would go "x y z" with the additions occurring at y
and z after the respective loads.
The problem with this is that the user would still have to think
fairly hard about precedence to realize which subexpression is being
evaluated or which operator overload is being called in, say, an asan
backtrace.
* The preferred location or 'exprloc'. In this case you get sort of what
you'd expect, though it's a bit confusing in its own way due to going
'backwards'. In this case the locations would be: "x y + z +" in
lovely postfix arithmetic order. But this does mean that if the op+
were an operator overload, say, and in a backtrace, the backtrace will
point to the exact '+' that's being called, not to the end of one of
its operands.
(actually the operator overload case doesn't work yet for other reasons,
but that's being fixed - but this at least gets scalar/complex
assignments and other plain operators right)
llvm-svn: 227027
2015-01-25 09:19:10 +08:00
|
|
|
init(E->getExprLoc());
|
|
|
|
}
|
|
|
|
|
2015-01-14 15:38:27 +08:00
|
|
|
ApplyDebugLocation::ApplyDebugLocation(CodeGenFunction &CGF, llvm::DebugLoc Loc)
|
2015-08-13 07:49:57 +08:00
|
|
|
: CGF(&CGF) {
|
|
|
|
if (!CGF.getDebugInfo()) {
|
|
|
|
this->CGF = nullptr;
|
|
|
|
return;
|
2015-01-03 06:07:26 +08:00
|
|
|
}
|
2015-08-13 07:49:57 +08:00
|
|
|
OriginalLocation = CGF.Builder.getCurrentDebugLocation();
|
|
|
|
if (Loc)
|
|
|
|
CGF.Builder.SetCurrentDebugLocation(std::move(Loc));
|
2015-01-03 06:07:26 +08:00
|
|
|
}
|
|
|
|
|
2015-01-14 15:38:27 +08:00
|
|
|
ApplyDebugLocation::~ApplyDebugLocation() {
|
|
|
|
// Query CGF so the location isn't overwritten when location updates are
|
|
|
|
// temporarily disabled (for C++ default function arguments)
|
2015-08-13 07:49:57 +08:00
|
|
|
if (CGF)
|
|
|
|
CGF->Builder.SetCurrentDebugLocation(std::move(OriginalLocation));
|
2013-07-18 08:28:02 +08:00
|
|
|
}
|
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
void CGDebugInfo::setLocation(SourceLocation Loc) {
|
|
|
|
// If the new location isn't valid return.
|
2014-10-27 07:40:33 +08:00
|
|
|
if (Loc.isInvalid())
|
|
|
|
return;
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
CurLoc = CGM.getContext().getSourceManager().getExpansionLoc(Loc);
|
|
|
|
|
|
|
|
// If we've changed files in the middle of a lexical scope go ahead
|
|
|
|
// and create a new lexical scope with file node if it's different
|
|
|
|
// from the one in the scope.
|
2014-10-27 07:40:33 +08:00
|
|
|
if (LexicalBlockStack.empty())
|
|
|
|
return;
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
SourceManager &SM = CGM.getContext().getSourceManager();
|
2015-04-30 00:40:08 +08:00
|
|
|
auto *Scope = cast<llvm::DIScope>(LexicalBlockStack.back());
|
2012-12-18 22:30:41 +08:00
|
|
|
PresumedLoc PCLoc = SM.getPresumedLoc(CurLoc);
|
|
|
|
|
2015-04-16 09:36:36 +08:00
|
|
|
if (PCLoc.isInvalid() || Scope->getFilename() == PCLoc.getFilename())
|
2012-12-18 22:30:41 +08:00
|
|
|
return;
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
if (auto *LBF = dyn_cast<llvm::DILexicalBlockFile>(Scope)) {
|
2012-12-18 22:30:41 +08:00
|
|
|
LexicalBlockStack.pop_back();
|
2015-04-18 08:07:30 +08:00
|
|
|
LexicalBlockStack.emplace_back(DBuilder.createLexicalBlockFile(
|
|
|
|
LBF->getScope(), getOrCreateFile(CurLoc)));
|
2015-04-30 00:40:08 +08:00
|
|
|
} else if (isa<llvm::DILexicalBlock>(Scope) ||
|
|
|
|
isa<llvm::DISubprogram>(Scope)) {
|
2012-12-18 22:30:41 +08:00
|
|
|
LexicalBlockStack.pop_back();
|
2015-04-18 08:07:30 +08:00
|
|
|
LexicalBlockStack.emplace_back(
|
|
|
|
DBuilder.createLexicalBlockFile(Scope, getOrCreateFile(CurLoc)));
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-11 02:39:45 +08:00
|
|
|
llvm::DIScope *CGDebugInfo::getDeclContextDescriptor(const Decl *D) {
|
2015-09-12 01:23:08 +08:00
|
|
|
llvm::DIScope *Mod = getParentModuleOrNull(D);
|
|
|
|
return getContextDescriptor(cast<Decl>(D->getDeclContext()),
|
|
|
|
Mod ? Mod : TheCU);
|
2015-09-11 02:39:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
llvm::DIScope *CGDebugInfo::getContextDescriptor(const Decl *Context,
|
|
|
|
llvm::DIScope *Default) {
|
2012-12-18 22:30:41 +08:00
|
|
|
if (!Context)
|
2015-09-11 02:39:45 +08:00
|
|
|
return Default;
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2014-12-10 02:39:32 +08:00
|
|
|
auto I = RegionMap.find(Context);
|
2012-12-18 22:30:41 +08:00
|
|
|
if (I != RegionMap.end()) {
|
2014-12-10 02:39:32 +08:00
|
|
|
llvm::Metadata *V = I->second;
|
2015-04-30 00:40:08 +08:00
|
|
|
return dyn_cast_or_null<llvm::DIScope>(V);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check namespace.
|
|
|
|
if (const NamespaceDecl *NSDecl = dyn_cast<NamespaceDecl>(Context))
|
2013-04-19 14:56:38 +08:00
|
|
|
return getOrCreateNameSpace(NSDecl);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2013-04-19 14:56:38 +08:00
|
|
|
if (const RecordDecl *RDecl = dyn_cast<RecordDecl>(Context))
|
|
|
|
if (!RDecl->isDependentType())
|
|
|
|
return getOrCreateType(CGM.getContext().getTypeDeclType(RDecl),
|
2014-10-27 07:40:33 +08:00
|
|
|
getOrCreateMainFile());
|
2015-09-11 02:39:45 +08:00
|
|
|
return Default;
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
StringRef CGDebugInfo::getFunctionName(const FunctionDecl *FD) {
|
2014-10-27 07:40:33 +08:00
|
|
|
assert(FD && "Invalid FunctionDecl!");
|
2012-12-18 22:30:41 +08:00
|
|
|
IdentifierInfo *FII = FD->getIdentifier();
|
2014-10-27 07:40:33 +08:00
|
|
|
FunctionTemplateSpecializationInfo *Info =
|
|
|
|
FD->getTemplateSpecializationInfo();
|
2015-12-16 10:04:40 +08:00
|
|
|
|
|
|
|
if (!Info && FII && !CGM.getCodeGenOpts().EmitCodeView)
|
2012-12-18 22:30:41 +08:00
|
|
|
return FII->getName();
|
|
|
|
|
|
|
|
// Otherwise construct human readable name for debug info.
|
2013-02-22 23:46:01 +08:00
|
|
|
SmallString<128> NS;
|
|
|
|
llvm::raw_svector_ostream OS(NS);
|
2015-12-16 10:04:40 +08:00
|
|
|
PrintingPolicy Policy(CGM.getLangOpts());
|
|
|
|
|
|
|
|
if (CGM.getCodeGenOpts().EmitCodeView) {
|
|
|
|
// Print a fully qualified name like MSVC would.
|
|
|
|
Policy.MSVCFormatting = true;
|
|
|
|
FD->printQualifiedName(OS, Policy);
|
|
|
|
} else {
|
|
|
|
// Print the unqualified name with some template arguments. This is what
|
|
|
|
// DWARF-based debuggers expect.
|
|
|
|
FD->printName(OS);
|
|
|
|
// Add any template specialization args.
|
|
|
|
if (Info) {
|
|
|
|
const TemplateArgumentList *TArgs = Info->TemplateArguments;
|
|
|
|
const TemplateArgument *Args = TArgs->data();
|
|
|
|
unsigned NumArgs = TArgs->size();
|
|
|
|
TemplateSpecializationType::PrintTemplateArgumentList(OS, Args, NumArgs,
|
|
|
|
Policy);
|
|
|
|
}
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Copy this name on the side and use its reference.
|
2013-09-10 00:39:06 +08:00
|
|
|
return internString(OS.str());
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
StringRef CGDebugInfo::getObjCMethodName(const ObjCMethodDecl *OMD) {
|
|
|
|
SmallString<256> MethodName;
|
|
|
|
llvm::raw_svector_ostream OS(MethodName);
|
|
|
|
OS << (OMD->isInstanceMethod() ? '-' : '+') << '[';
|
|
|
|
const DeclContext *DC = OMD->getDeclContext();
|
2013-05-16 08:45:12 +08:00
|
|
|
if (const ObjCImplementationDecl *OID =
|
2014-10-27 07:40:33 +08:00
|
|
|
dyn_cast<const ObjCImplementationDecl>(DC)) {
|
|
|
|
OS << OID->getName();
|
2013-05-16 08:45:12 +08:00
|
|
|
} else if (const ObjCInterfaceDecl *OID =
|
2014-10-27 07:40:33 +08:00
|
|
|
dyn_cast<const ObjCInterfaceDecl>(DC)) {
|
|
|
|
OS << OID->getName();
|
Stop back-patching 'readonly' Objective-C properties with 'readwrite' ones.
A 'readonly' Objective-C property declared in the primary class can
effectively be shadowed by a 'readwrite' property declared within an
extension of that class, so long as the types and attributes of the
two property declarations are compatible.
Previously, this functionality was implemented by back-patching the
original 'readonly' property to make it 'readwrite', destroying source
information and causing some hideously redundant, incorrect
code. Simplify the implementation to express how this should actually
be modeled: as a separate property declaration in the extension that
shadows (via the name lookup rules) the declaration in the primary
class. While here, correct some broken Fix-Its, eliminate a pile of
redundant code, clean up the ARC migrator's handling of properties
declared in extensions, and fix debug info's naming of methods that
come from categories.
A wonderous side effect of doing this write is that it eliminates the
"AddedObjCPropertyInClassExtension" method from the AST mutation
listener, which in turn eliminates the last place where we rewrite
entire declarations in a chained PCH file or a module file. This
change (which fixes rdar://problem/18475765) will allow us to
eliminate the rewritten-decls logic from the serialization library,
and fixes a crash (rdar://problem/23247794) illustrated by the
test/PCH/chain-categories.m example.
llvm-svn: 251874
2015-11-03 09:15:46 +08:00
|
|
|
} else if (const ObjCCategoryDecl *OC = dyn_cast<ObjCCategoryDecl>(DC)) {
|
|
|
|
if (OC->IsClassExtension()) {
|
|
|
|
OS << OC->getClassInterface()->getName();
|
|
|
|
} else {
|
|
|
|
OS << ((const NamedDecl *)OC)->getIdentifier()->getNameStart() << '('
|
|
|
|
<< OC->getIdentifier()->getNameStart() << ')';
|
|
|
|
}
|
2013-05-16 08:45:12 +08:00
|
|
|
} else if (const ObjCCategoryImplDecl *OCD =
|
2014-10-27 07:40:33 +08:00
|
|
|
dyn_cast<const ObjCCategoryImplDecl>(DC)) {
|
|
|
|
OS << ((const NamedDecl *)OCD)->getIdentifier()->getNameStart() << '('
|
|
|
|
<< OCD->getIdentifier()->getNameStart() << ')';
|
2013-05-18 07:58:45 +08:00
|
|
|
} else if (isa<ObjCProtocolDecl>(DC)) {
|
2013-05-18 07:49:10 +08:00
|
|
|
// We can extract the type of the class from the self pointer.
|
2014-10-27 07:40:33 +08:00
|
|
|
if (ImplicitParamDecl *SelfDecl = OMD->getSelfDecl()) {
|
2013-05-18 07:49:10 +08:00
|
|
|
QualType ClassTy =
|
2014-10-27 07:40:33 +08:00
|
|
|
cast<ObjCObjectPointerType>(SelfDecl->getType())->getPointeeType();
|
2013-05-18 07:49:10 +08:00
|
|
|
ClassTy.print(OS, PrintingPolicy(LangOptions()));
|
|
|
|
}
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
OS << ' ' << OMD->getSelector().getAsString() << ']';
|
|
|
|
|
2013-09-10 00:39:06 +08:00
|
|
|
return internString(OS.str());
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
StringRef CGDebugInfo::getSelectorName(Selector S) {
|
2013-09-10 00:39:06 +08:00
|
|
|
return internString(S.getAsString());
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2014-10-27 07:40:33 +08:00
|
|
|
StringRef CGDebugInfo::getClassName(const RecordDecl *RD) {
|
2014-04-03 02:21:09 +08:00
|
|
|
// quick optimization to avoid having to intern strings that are already
|
|
|
|
// stored reliably elsewhere
|
|
|
|
if (!isa<ClassTemplateSpecializationDecl>(RD))
|
2012-12-18 22:30:41 +08:00
|
|
|
return RD->getName();
|
|
|
|
|
2014-04-03 02:21:09 +08:00
|
|
|
SmallString<128> Name;
|
2013-02-22 23:46:01 +08:00
|
|
|
{
|
2014-04-03 02:21:09 +08:00
|
|
|
llvm::raw_svector_ostream OS(Name);
|
|
|
|
RD->getNameForDiagnostic(OS, CGM.getContext().getPrintingPolicy(),
|
|
|
|
/*Qualified*/ false);
|
2013-02-22 23:46:01 +08:00
|
|
|
}
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// Copy this name on the side and use its reference.
|
2014-04-03 02:21:09 +08:00
|
|
|
return internString(Name);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *CGDebugInfo::getOrCreateFile(SourceLocation Loc) {
|
2012-12-18 22:30:41 +08:00
|
|
|
if (!Loc.isValid())
|
|
|
|
// If Location is not valid then use main input file.
|
2015-10-13 04:21:08 +08:00
|
|
|
return DBuilder.createFile(remapDIPath(TheCU->getFilename()),
|
|
|
|
remapDIPath(TheCU->getDirectory()));
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
SourceManager &SM = CGM.getContext().getSourceManager();
|
|
|
|
PresumedLoc PLoc = SM.getPresumedLoc(Loc);
|
|
|
|
|
|
|
|
if (PLoc.isInvalid() || StringRef(PLoc.getFilename()).empty())
|
|
|
|
// If the location is not valid then use main input file.
|
2015-10-13 04:21:08 +08:00
|
|
|
return DBuilder.createFile(remapDIPath(TheCU->getFilename()),
|
|
|
|
remapDIPath(TheCU->getDirectory()));
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// Cache the results.
|
|
|
|
const char *fname = PLoc.getFilename();
|
2014-12-10 02:39:32 +08:00
|
|
|
auto it = DIFileCache.find(fname);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
if (it != DIFileCache.end()) {
|
|
|
|
// Verify that the information still exists.
|
2014-12-10 02:39:32 +08:00
|
|
|
if (llvm::Metadata *V = it->second)
|
2015-04-30 00:40:08 +08:00
|
|
|
return cast<llvm::DIFile>(V);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-10-13 04:21:08 +08:00
|
|
|
llvm::DIFile *F = DBuilder.createFile(remapDIPath(PLoc.getFilename()),
|
|
|
|
remapDIPath(getCurrentDirname()));
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2014-12-10 02:39:32 +08:00
|
|
|
DIFileCache[fname].reset(F);
|
2012-12-18 22:30:41 +08:00
|
|
|
return F;
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *CGDebugInfo::getOrCreateMainFile() {
|
2015-10-13 04:21:08 +08:00
|
|
|
return DBuilder.createFile(remapDIPath(TheCU->getFilename()),
|
|
|
|
remapDIPath(TheCU->getDirectory()));
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string CGDebugInfo::remapDIPath(StringRef Path) const {
|
|
|
|
for (const auto &Entry : DebugPrefixMap)
|
|
|
|
if (Path.startswith(Entry.first))
|
|
|
|
return (Twine(Entry.second) + Path.substr(Entry.first.size())).str();
|
|
|
|
return Path.str();
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned CGDebugInfo::getLineNumber(SourceLocation Loc) {
|
|
|
|
if (Loc.isInvalid() && CurLoc.isInvalid())
|
|
|
|
return 0;
|
|
|
|
SourceManager &SM = CGM.getContext().getSourceManager();
|
|
|
|
PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
|
2014-10-27 07:40:33 +08:00
|
|
|
return PLoc.isValid() ? PLoc.getLine() : 0;
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2013-03-13 04:43:25 +08:00
|
|
|
unsigned CGDebugInfo::getColumnNumber(SourceLocation Loc, bool Force) {
|
2012-12-18 22:30:41 +08:00
|
|
|
// We may not want column information at all.
|
2013-03-13 04:43:25 +08:00
|
|
|
if (!Force && !CGM.getCodeGenOpts().DebugColumnInfo)
|
2012-12-18 22:30:41 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
// If the location is invalid then use the current column.
|
|
|
|
if (Loc.isInvalid() && CurLoc.isInvalid())
|
|
|
|
return 0;
|
|
|
|
SourceManager &SM = CGM.getContext().getSourceManager();
|
|
|
|
PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
|
2014-10-27 07:40:33 +08:00
|
|
|
return PLoc.isValid() ? PLoc.getColumn() : 0;
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
StringRef CGDebugInfo::getCurrentDirname() {
|
|
|
|
if (!CGM.getCodeGenOpts().DebugCompilationDir.empty())
|
|
|
|
return CGM.getCodeGenOpts().DebugCompilationDir;
|
|
|
|
|
|
|
|
if (!CWDName.empty())
|
|
|
|
return CWDName;
|
|
|
|
SmallString<256> CWD;
|
|
|
|
llvm::sys::fs::current_path(CWD);
|
2013-09-10 00:39:06 +08:00
|
|
|
return CWDName = internString(CWD);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CGDebugInfo::CreateCompileUnit() {
|
|
|
|
|
2014-05-14 08:29:00 +08:00
|
|
|
// Should we be asking the SourceManager for the main file name, instead of
|
|
|
|
// accepting it as an argument? This just causes the main file name to
|
|
|
|
// mismatch with source locations and create extra lexical scopes or
|
|
|
|
// mismatched debug info (a CU with a DW_AT_file of "-", because that's what
|
|
|
|
// the driver passed, but functions/other things have DW_AT_file of "<stdin>"
|
|
|
|
// because that's what the SourceManager says)
|
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
// Get absolute path name.
|
|
|
|
SourceManager &SM = CGM.getContext().getSourceManager();
|
|
|
|
std::string MainFileName = CGM.getCodeGenOpts().MainFileName;
|
|
|
|
if (MainFileName.empty())
|
2014-05-14 08:29:00 +08:00
|
|
|
MainFileName = "<stdin>";
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// The main file name provided via the "-main-file-name" option contains just
|
|
|
|
// the file name itself with no path information. This file name may have had
|
|
|
|
// a relative path, so we look into the actual file entry for the main
|
|
|
|
// file to determine the real absolute path for the file.
|
|
|
|
std::string MainFileDir;
|
|
|
|
if (const FileEntry *MainFile = SM.getFileEntryForID(SM.getMainFileID())) {
|
2015-10-13 04:21:08 +08:00
|
|
|
MainFileDir = remapDIPath(MainFile->getDir()->getName());
|
2013-10-22 04:07:37 +08:00
|
|
|
if (MainFileDir != ".") {
|
2014-02-26 10:49:36 +08:00
|
|
|
llvm::SmallString<1024> MainFileDirSS(MainFileDir);
|
|
|
|
llvm::sys::path::append(MainFileDirSS, MainFileName);
|
|
|
|
MainFileName = MainFileDirSS.str();
|
2013-10-22 04:07:37 +08:00
|
|
|
}
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2014-05-07 20:49:30 +08:00
|
|
|
llvm::dwarf::SourceLanguage LangTag;
|
2012-12-18 22:30:41 +08:00
|
|
|
const LangOptions &LO = CGM.getLangOpts();
|
|
|
|
if (LO.CPlusPlus) {
|
|
|
|
if (LO.ObjC1)
|
|
|
|
LangTag = llvm::dwarf::DW_LANG_ObjC_plus_plus;
|
|
|
|
else
|
|
|
|
LangTag = llvm::dwarf::DW_LANG_C_plus_plus;
|
|
|
|
} else if (LO.ObjC1) {
|
|
|
|
LangTag = llvm::dwarf::DW_LANG_ObjC;
|
|
|
|
} else if (LO.C99) {
|
|
|
|
LangTag = llvm::dwarf::DW_LANG_C99;
|
|
|
|
} else {
|
|
|
|
LangTag = llvm::dwarf::DW_LANG_C89;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Producer = getClangFullVersion();
|
|
|
|
|
|
|
|
// Figure out which version of the ObjC runtime we have.
|
|
|
|
unsigned RuntimeVers = 0;
|
|
|
|
if (LO.ObjC1)
|
|
|
|
RuntimeVers = LO.ObjCRuntime.isNonFragile() ? 2 : 1;
|
|
|
|
|
|
|
|
// Create new compile unit.
|
|
|
|
// FIXME - Eliminate TheCU.
|
2014-02-27 09:25:08 +08:00
|
|
|
TheCU = DBuilder.createCompileUnit(
|
2015-10-13 04:21:08 +08:00
|
|
|
LangTag, remapDIPath(MainFileName), remapDIPath(getCurrentDirname()),
|
|
|
|
Producer, LO.Optimize, CGM.getCodeGenOpts().DwarfDebugFlags, RuntimeVers,
|
2015-09-12 02:45:02 +08:00
|
|
|
CGM.getCodeGenOpts().SplitDwarfFile,
|
2014-06-25 01:02:17 +08:00
|
|
|
DebugKind <= CodeGenOptions::DebugLineTablesOnly
|
2014-02-27 09:25:08 +08:00
|
|
|
? llvm::DIBuilder::LineTablesOnly
|
2014-06-25 01:02:17 +08:00
|
|
|
: llvm::DIBuilder::FullDebug,
|
2015-09-12 02:45:02 +08:00
|
|
|
0 /* DWOid */, DebugKind != CodeGenOptions::LocTrackingOnly);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreateType(const BuiltinType *BT) {
|
2014-05-07 20:49:30 +08:00
|
|
|
llvm::dwarf::TypeKind Encoding;
|
2012-12-18 22:30:41 +08:00
|
|
|
StringRef BTName;
|
|
|
|
switch (BT->getKind()) {
|
|
|
|
#define BUILTIN_TYPE(Id, SingletonId)
|
2014-10-27 07:40:33 +08:00
|
|
|
#define PLACEHOLDER_TYPE(Id, SingletonId) case BuiltinType::Id:
|
2012-12-18 22:30:41 +08:00
|
|
|
#include "clang/AST/BuiltinTypes.def"
|
|
|
|
case BuiltinType::Dependent:
|
|
|
|
llvm_unreachable("Unexpected builtin type");
|
|
|
|
case BuiltinType::NullPtr:
|
2013-06-28 06:51:01 +08:00
|
|
|
return DBuilder.createNullPtrType();
|
2012-12-18 22:30:41 +08:00
|
|
|
case BuiltinType::Void:
|
2015-04-21 02:51:48 +08:00
|
|
|
return nullptr;
|
2012-12-18 22:30:41 +08:00
|
|
|
case BuiltinType::ObjCClass:
|
2014-05-06 11:42:01 +08:00
|
|
|
if (!ClassTy)
|
|
|
|
ClassTy = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
|
|
|
|
"objc_class", TheCU,
|
|
|
|
getOrCreateMainFile(), 0);
|
2012-12-18 22:30:41 +08:00
|
|
|
return ClassTy;
|
|
|
|
case BuiltinType::ObjCId: {
|
|
|
|
// typedef struct objc_class *Class;
|
|
|
|
// typedef struct objc_object {
|
|
|
|
// Class isa;
|
|
|
|
// } *id;
|
|
|
|
|
2013-07-18 08:52:50 +08:00
|
|
|
if (ObjTy)
|
2012-12-18 22:30:41 +08:00
|
|
|
return ObjTy;
|
|
|
|
|
2013-07-18 08:52:50 +08:00
|
|
|
if (!ClassTy)
|
2012-12-18 22:30:41 +08:00
|
|
|
ClassTy = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
|
|
|
|
"objc_class", TheCU,
|
|
|
|
getOrCreateMainFile(), 0);
|
|
|
|
|
|
|
|
unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2015-04-21 02:51:48 +08:00
|
|
|
auto *ISATy = DBuilder.createPointerType(ClassTy, Size);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2013-04-03 06:59:11 +08:00
|
|
|
ObjTy =
|
2013-02-25 09:07:08 +08:00
|
|
|
DBuilder.createStructType(TheCU, "objc_object", getOrCreateMainFile(),
|
2015-04-30 00:40:08 +08:00
|
|
|
0, 0, 0, 0, nullptr, llvm::DINodeArray());
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2014-12-18 08:48:56 +08:00
|
|
|
DBuilder.replaceArrays(
|
|
|
|
ObjTy,
|
|
|
|
DBuilder.getOrCreateArray(&*DBuilder.createMemberType(
|
|
|
|
ObjTy, "isa", getOrCreateMainFile(), 0, Size, 0, 0, 0, ISATy)));
|
2012-12-18 22:30:41 +08:00
|
|
|
return ObjTy;
|
|
|
|
}
|
|
|
|
case BuiltinType::ObjCSel: {
|
2014-05-06 11:42:01 +08:00
|
|
|
if (!SelTy)
|
|
|
|
SelTy = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
|
|
|
|
"objc_selector", TheCU,
|
|
|
|
getOrCreateMainFile(), 0);
|
2012-12-18 22:30:41 +08:00
|
|
|
return SelTy;
|
|
|
|
}
|
2012-12-18 22:38:23 +08:00
|
|
|
|
|
|
|
case BuiltinType::OCLImage1d:
|
2014-10-27 07:40:33 +08:00
|
|
|
return getOrCreateStructPtrType("opencl_image1d_t", OCLImage1dDITy);
|
2012-12-18 22:38:23 +08:00
|
|
|
case BuiltinType::OCLImage1dArray:
|
2013-05-16 08:45:12 +08:00
|
|
|
return getOrCreateStructPtrType("opencl_image1d_array_t",
|
2012-12-18 22:38:23 +08:00
|
|
|
OCLImage1dArrayDITy);
|
|
|
|
case BuiltinType::OCLImage1dBuffer:
|
|
|
|
return getOrCreateStructPtrType("opencl_image1d_buffer_t",
|
|
|
|
OCLImage1dBufferDITy);
|
|
|
|
case BuiltinType::OCLImage2d:
|
2014-10-27 07:40:33 +08:00
|
|
|
return getOrCreateStructPtrType("opencl_image2d_t", OCLImage2dDITy);
|
2012-12-18 22:38:23 +08:00
|
|
|
case BuiltinType::OCLImage2dArray:
|
|
|
|
return getOrCreateStructPtrType("opencl_image2d_array_t",
|
|
|
|
OCLImage2dArrayDITy);
|
2015-09-15 19:18:52 +08:00
|
|
|
case BuiltinType::OCLImage2dDepth:
|
|
|
|
return getOrCreateStructPtrType("opencl_image2d_depth_t",
|
|
|
|
OCLImage2dDepthDITy);
|
|
|
|
case BuiltinType::OCLImage2dArrayDepth:
|
|
|
|
return getOrCreateStructPtrType("opencl_image2d_array_depth_t",
|
|
|
|
OCLImage2dArrayDepthDITy);
|
|
|
|
case BuiltinType::OCLImage2dMSAA:
|
|
|
|
return getOrCreateStructPtrType("opencl_image2d_msaa_t",
|
|
|
|
OCLImage2dMSAADITy);
|
|
|
|
case BuiltinType::OCLImage2dArrayMSAA:
|
|
|
|
return getOrCreateStructPtrType("opencl_image2d_array_msaa_t",
|
|
|
|
OCLImage2dArrayMSAADITy);
|
|
|
|
case BuiltinType::OCLImage2dMSAADepth:
|
|
|
|
return getOrCreateStructPtrType("opencl_image2d_msaa_depth_t",
|
|
|
|
OCLImage2dMSAADepthDITy);
|
|
|
|
case BuiltinType::OCLImage2dArrayMSAADepth:
|
|
|
|
return getOrCreateStructPtrType("opencl_image2d_array_msaa_depth_t",
|
|
|
|
OCLImage2dArrayMSAADepthDITy);
|
2012-12-18 22:38:23 +08:00
|
|
|
case BuiltinType::OCLImage3d:
|
2014-10-27 07:40:33 +08:00
|
|
|
return getOrCreateStructPtrType("opencl_image3d_t", OCLImage3dDITy);
|
2013-02-07 18:55:47 +08:00
|
|
|
case BuiltinType::OCLSampler:
|
2014-10-27 07:40:33 +08:00
|
|
|
return DBuilder.createBasicType(
|
|
|
|
"opencl_sampler_t", CGM.getContext().getTypeSize(BT),
|
|
|
|
CGM.getContext().getTypeAlign(BT), llvm::dwarf::DW_ATE_unsigned);
|
2013-01-20 20:31:11 +08:00
|
|
|
case BuiltinType::OCLEvent:
|
2014-10-27 07:40:33 +08:00
|
|
|
return getOrCreateStructPtrType("opencl_event_t", OCLEventDITy);
|
2015-09-15 19:18:52 +08:00
|
|
|
case BuiltinType::OCLClkEvent:
|
|
|
|
return getOrCreateStructPtrType("opencl_clk_event_t", OCLClkEventDITy);
|
|
|
|
case BuiltinType::OCLQueue:
|
|
|
|
return getOrCreateStructPtrType("opencl_queue_t", OCLQueueDITy);
|
|
|
|
case BuiltinType::OCLNDRange:
|
|
|
|
return getOrCreateStructPtrType("opencl_ndrange_t", OCLNDRangeDITy);
|
|
|
|
case BuiltinType::OCLReserveID:
|
|
|
|
return getOrCreateStructPtrType("opencl_reserve_id_t", OCLReserveIDDITy);
|
2012-12-18 22:38:23 +08:00
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
case BuiltinType::UChar:
|
2014-10-27 07:40:33 +08:00
|
|
|
case BuiltinType::Char_U:
|
|
|
|
Encoding = llvm::dwarf::DW_ATE_unsigned_char;
|
|
|
|
break;
|
2012-12-18 22:30:41 +08:00
|
|
|
case BuiltinType::Char_S:
|
2014-10-27 07:40:33 +08:00
|
|
|
case BuiltinType::SChar:
|
|
|
|
Encoding = llvm::dwarf::DW_ATE_signed_char;
|
|
|
|
break;
|
2012-12-18 22:30:41 +08:00
|
|
|
case BuiltinType::Char16:
|
2014-10-27 07:40:33 +08:00
|
|
|
case BuiltinType::Char32:
|
|
|
|
Encoding = llvm::dwarf::DW_ATE_UTF;
|
|
|
|
break;
|
2012-12-18 22:30:41 +08:00
|
|
|
case BuiltinType::UShort:
|
|
|
|
case BuiltinType::UInt:
|
|
|
|
case BuiltinType::UInt128:
|
|
|
|
case BuiltinType::ULong:
|
|
|
|
case BuiltinType::WChar_U:
|
2014-10-27 07:40:33 +08:00
|
|
|
case BuiltinType::ULongLong:
|
|
|
|
Encoding = llvm::dwarf::DW_ATE_unsigned;
|
|
|
|
break;
|
2012-12-18 22:30:41 +08:00
|
|
|
case BuiltinType::Short:
|
|
|
|
case BuiltinType::Int:
|
|
|
|
case BuiltinType::Int128:
|
|
|
|
case BuiltinType::Long:
|
|
|
|
case BuiltinType::WChar_S:
|
2014-10-27 07:40:33 +08:00
|
|
|
case BuiltinType::LongLong:
|
|
|
|
Encoding = llvm::dwarf::DW_ATE_signed;
|
|
|
|
break;
|
|
|
|
case BuiltinType::Bool:
|
|
|
|
Encoding = llvm::dwarf::DW_ATE_boolean;
|
|
|
|
break;
|
2012-12-18 22:30:41 +08:00
|
|
|
case BuiltinType::Half:
|
|
|
|
case BuiltinType::Float:
|
|
|
|
case BuiltinType::LongDouble:
|
2014-10-27 07:40:33 +08:00
|
|
|
case BuiltinType::Double:
|
|
|
|
Encoding = llvm::dwarf::DW_ATE_float;
|
|
|
|
break;
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (BT->getKind()) {
|
2014-10-27 07:40:33 +08:00
|
|
|
case BuiltinType::Long:
|
|
|
|
BTName = "long int";
|
|
|
|
break;
|
|
|
|
case BuiltinType::LongLong:
|
|
|
|
BTName = "long long int";
|
|
|
|
break;
|
|
|
|
case BuiltinType::ULong:
|
|
|
|
BTName = "long unsigned int";
|
|
|
|
break;
|
|
|
|
case BuiltinType::ULongLong:
|
|
|
|
BTName = "long long unsigned int";
|
|
|
|
break;
|
2012-12-18 22:30:41 +08:00
|
|
|
default:
|
|
|
|
BTName = BT->getName(CGM.getLangOpts());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Bit size, align and offset of the type.
|
|
|
|
uint64_t Size = CGM.getContext().getTypeSize(BT);
|
|
|
|
uint64_t Align = CGM.getContext().getTypeAlign(BT);
|
2015-04-21 02:51:48 +08:00
|
|
|
return DBuilder.createBasicType(BTName, Size, Align, Encoding);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreateType(const ComplexType *Ty) {
|
2012-12-18 22:30:41 +08:00
|
|
|
// Bit size, align and offset of the type.
|
2014-05-07 20:49:30 +08:00
|
|
|
llvm::dwarf::TypeKind Encoding = llvm::dwarf::DW_ATE_complex_float;
|
2012-12-18 22:30:41 +08:00
|
|
|
if (Ty->isComplexIntegerType())
|
|
|
|
Encoding = llvm::dwarf::DW_ATE_lo_user;
|
|
|
|
|
|
|
|
uint64_t Size = CGM.getContext().getTypeSize(Ty);
|
|
|
|
uint64_t Align = CGM.getContext().getTypeAlign(Ty);
|
2015-04-21 02:51:48 +08:00
|
|
|
return DBuilder.createBasicType("complex", Size, Align, Encoding);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreateQualifiedType(QualType Ty,
|
|
|
|
llvm::DIFile *Unit) {
|
2012-12-18 22:30:41 +08:00
|
|
|
QualifierCollector Qc;
|
|
|
|
const Type *T = Qc.strip(Ty);
|
|
|
|
|
|
|
|
// Ignore these qualifiers for now.
|
|
|
|
Qc.removeObjCGCAttr();
|
|
|
|
Qc.removeAddressSpace();
|
|
|
|
Qc.removeObjCLifetime();
|
|
|
|
|
|
|
|
// We will create one Derived type for one qualifier and recurse to handle any
|
|
|
|
// additional ones.
|
2014-05-07 20:49:30 +08:00
|
|
|
llvm::dwarf::Tag Tag;
|
2012-12-18 22:30:41 +08:00
|
|
|
if (Qc.hasConst()) {
|
|
|
|
Tag = llvm::dwarf::DW_TAG_const_type;
|
|
|
|
Qc.removeConst();
|
|
|
|
} else if (Qc.hasVolatile()) {
|
|
|
|
Tag = llvm::dwarf::DW_TAG_volatile_type;
|
|
|
|
Qc.removeVolatile();
|
|
|
|
} else if (Qc.hasRestrict()) {
|
|
|
|
Tag = llvm::dwarf::DW_TAG_restrict_type;
|
|
|
|
Qc.removeRestrict();
|
|
|
|
} else {
|
|
|
|
assert(Qc.empty() && "Unknown type qualifier for debug info");
|
|
|
|
return getOrCreateType(QualType(T, 0), Unit);
|
|
|
|
}
|
|
|
|
|
2015-04-21 02:51:48 +08:00
|
|
|
auto *FromTy = getOrCreateType(Qc.apply(CGM.getContext(), T), Unit);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// No need to fill in the Name, Line, Size, Alignment, Offset in case of
|
|
|
|
// CVR derived types.
|
2015-04-21 02:51:48 +08:00
|
|
|
return DBuilder.createQualifiedType(Tag, FromTy);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreateType(const ObjCObjectPointerType *Ty,
|
|
|
|
llvm::DIFile *Unit) {
|
2013-02-22 04:42:11 +08:00
|
|
|
|
|
|
|
// The frontend treats 'id' as a typedef to an ObjCObjectType,
|
|
|
|
// whereas 'id<protocol>' is treated as an ObjCPointerType. For the
|
|
|
|
// debug info, we want to emit 'id' in both cases.
|
|
|
|
if (Ty->isObjCQualifiedIdType())
|
2014-10-27 07:40:33 +08:00
|
|
|
return getOrCreateType(CGM.getContext().getObjCIdType(), Unit);
|
2013-02-22 04:42:11 +08:00
|
|
|
|
2015-04-21 02:51:48 +08:00
|
|
|
return CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
|
|
|
|
Ty->getPointeeType(), Unit);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreateType(const PointerType *Ty,
|
|
|
|
llvm::DIFile *Unit) {
|
2013-05-16 08:45:12 +08:00
|
|
|
return CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty,
|
2012-12-18 22:30:41 +08:00
|
|
|
Ty->getPointeeType(), Unit);
|
|
|
|
}
|
|
|
|
|
2015-06-16 07:18:16 +08:00
|
|
|
/// \return whether a C++ mangling exists for the type defined by TD.
|
|
|
|
static bool hasCXXMangling(const TagDecl *TD, llvm::DICompileUnit *TheCU) {
|
|
|
|
switch (TheCU->getSourceLanguage()) {
|
|
|
|
case llvm::dwarf::DW_LANG_C_plus_plus:
|
|
|
|
return true;
|
|
|
|
case llvm::dwarf::DW_LANG_ObjC_plus_plus:
|
|
|
|
return isa<CXXRecordDecl>(TD) || isa<EnumDecl>(TD);
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-30 07:19:58 +08:00
|
|
|
/// In C++ mode, types have linkage, so we can rely on the ODR and
|
|
|
|
/// on their mangled names, if they're external.
|
2014-10-27 07:40:33 +08:00
|
|
|
static SmallString<256> getUniqueTagTypeName(const TagType *Ty,
|
|
|
|
CodeGenModule &CGM,
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DICompileUnit *TheCU) {
|
2013-08-30 07:19:58 +08:00
|
|
|
SmallString<256> FullName;
|
|
|
|
const TagDecl *TD = Ty->getDecl();
|
2015-06-16 07:18:16 +08:00
|
|
|
|
|
|
|
if (!hasCXXMangling(TD, TheCU) || !TD->isExternallyVisible())
|
2013-08-30 07:19:58 +08:00
|
|
|
return FullName;
|
2015-06-16 07:18:16 +08:00
|
|
|
|
2013-08-30 07:19:58 +08:00
|
|
|
// Microsoft Mangler does not have support for mangleCXXRTTIName yet.
|
|
|
|
if (CGM.getTarget().getCXXABI().isMicrosoft())
|
|
|
|
return FullName;
|
|
|
|
|
|
|
|
// TODO: This is using the RTTI name. Is there a better way to get
|
|
|
|
// a unique string for a type?
|
|
|
|
llvm::raw_svector_ostream Out(FullName);
|
|
|
|
CGM.getCXXABI().getMangleContext().mangleCXXRTTIName(QualType(Ty, 0), Out);
|
|
|
|
return FullName;
|
|
|
|
}
|
|
|
|
|
2015-07-09 05:18:34 +08:00
|
|
|
/// \return the approproate DWARF tag for a composite type.
|
2015-02-12 01:45:15 +08:00
|
|
|
static llvm::dwarf::Tag getTagForRecord(const RecordDecl *RD) {
|
|
|
|
llvm::dwarf::Tag Tag;
|
|
|
|
if (RD->isStruct() || RD->isInterface())
|
|
|
|
Tag = llvm::dwarf::DW_TAG_structure_type;
|
|
|
|
else if (RD->isUnion())
|
|
|
|
Tag = llvm::dwarf::DW_TAG_union_type;
|
|
|
|
else {
|
|
|
|
// FIXME: This could be a struct type giving a default visibility different
|
|
|
|
// than C++ class type, but needs llvm metadata changes first.
|
|
|
|
assert(RD->isClass());
|
|
|
|
Tag = llvm::dwarf::DW_TAG_class_type;
|
|
|
|
}
|
|
|
|
return Tag;
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DICompositeType *
|
2013-08-29 05:20:28 +08:00
|
|
|
CGDebugInfo::getOrCreateRecordFwdDecl(const RecordType *Ty,
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIScope *Ctx) {
|
2013-08-29 05:20:28 +08:00
|
|
|
const RecordDecl *RD = Ty->getDecl();
|
2015-04-30 00:40:08 +08:00
|
|
|
if (llvm::DIType *T = getTypeOrNull(CGM.getContext().getRecordType(RD)))
|
|
|
|
return cast<llvm::DICompositeType>(T);
|
|
|
|
llvm::DIFile *DefUnit = getOrCreateFile(RD->getLocation());
|
2012-12-18 22:30:41 +08:00
|
|
|
unsigned Line = getLineNumber(RD->getLocation());
|
|
|
|
StringRef RDName = getClassName(RD);
|
|
|
|
|
2015-03-02 06:07:04 +08:00
|
|
|
uint64_t Size = 0;
|
|
|
|
uint64_t Align = 0;
|
|
|
|
|
|
|
|
const RecordDecl *D = RD->getDefinition();
|
|
|
|
if (D && D->isCompleteDefinition()) {
|
|
|
|
Size = CGM.getContext().getTypeSize(Ty);
|
|
|
|
Align = CGM.getContext().getTypeAlign(Ty);
|
|
|
|
}
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// Create the type.
|
2013-08-30 07:19:58 +08:00
|
|
|
SmallString<256> FullName = getUniqueTagTypeName(Ty, CGM, TheCU);
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DICompositeType *RetTy = DBuilder.createReplaceableCompositeType(
|
2015-03-02 06:07:04 +08:00
|
|
|
getTagForRecord(RD), RDName, Ctx, DefUnit, Line, 0, Size, Align,
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DINode::FlagFwdDecl, FullName);
|
2014-12-10 02:39:32 +08:00
|
|
|
ReplaceMap.emplace_back(
|
|
|
|
std::piecewise_construct, std::make_tuple(Ty),
|
|
|
|
std::make_tuple(static_cast<llvm::Metadata *>(RetTy)));
|
2014-05-06 11:42:01 +08:00
|
|
|
return RetTy;
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreatePointerLikeType(llvm::dwarf::Tag Tag,
|
2015-04-21 02:51:48 +08:00
|
|
|
const Type *Ty,
|
|
|
|
QualType PointeeTy,
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *Unit) {
|
2012-12-18 22:30:41 +08:00
|
|
|
// Bit size, align and offset of the type.
|
|
|
|
// Size is always the size of a pointer. We can't use getTypeSize here
|
|
|
|
// because that does not return the correct value for references.
|
|
|
|
unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
|
2013-04-17 06:48:15 +08:00
|
|
|
uint64_t Size = CGM.getTarget().getPointerWidth(AS);
|
2012-12-18 22:30:41 +08:00
|
|
|
uint64_t Align = CGM.getContext().getTypeAlign(Ty);
|
|
|
|
|
2015-11-16 17:04:13 +08:00
|
|
|
if (Tag == llvm::dwarf::DW_TAG_reference_type ||
|
|
|
|
Tag == llvm::dwarf::DW_TAG_rvalue_reference_type)
|
|
|
|
return DBuilder.createReferenceType(Tag, getOrCreateType(PointeeTy, Unit),
|
|
|
|
Size, Align);
|
|
|
|
else
|
|
|
|
return DBuilder.createPointerType(getOrCreateType(PointeeTy, Unit), Size,
|
|
|
|
Align);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::getOrCreateStructPtrType(StringRef Name,
|
|
|
|
llvm::DIType *&Cache) {
|
2013-07-18 08:52:50 +08:00
|
|
|
if (Cache)
|
2012-12-18 22:38:23 +08:00
|
|
|
return Cache;
|
2013-05-22 01:58:54 +08:00
|
|
|
Cache = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type, Name,
|
|
|
|
TheCU, getOrCreateMainFile(), 0);
|
|
|
|
unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
|
|
|
|
Cache = DBuilder.createPointerType(Cache, Size);
|
|
|
|
return Cache;
|
2012-12-18 22:38:23 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreateType(const BlockPointerType *Ty,
|
|
|
|
llvm::DIFile *Unit) {
|
2014-12-10 02:39:32 +08:00
|
|
|
SmallVector<llvm::Metadata *, 8> EltTys;
|
2012-12-18 22:30:41 +08:00
|
|
|
QualType FType;
|
|
|
|
uint64_t FieldSize, FieldOffset;
|
|
|
|
unsigned FieldAlign;
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DINodeArray Elements;
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
FieldOffset = 0;
|
|
|
|
FType = CGM.getContext().UnsignedLongTy;
|
|
|
|
EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset));
|
|
|
|
EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset));
|
|
|
|
|
|
|
|
Elements = DBuilder.getOrCreateArray(EltTys);
|
|
|
|
EltTys.clear();
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
unsigned Flags = llvm::DINode::FlagAppleBlock;
|
2015-07-07 05:31:35 +08:00
|
|
|
unsigned LineNo = 0;
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2015-04-21 02:51:48 +08:00
|
|
|
auto *EltTy =
|
2015-07-07 05:31:35 +08:00
|
|
|
DBuilder.createStructType(Unit, "__block_descriptor", nullptr, LineNo,
|
2015-04-21 02:51:48 +08:00
|
|
|
FieldOffset, 0, Flags, nullptr, Elements);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// Bit size, align and offset of the type.
|
|
|
|
uint64_t Size = CGM.getContext().getTypeSize(Ty);
|
|
|
|
|
2015-04-21 02:51:48 +08:00
|
|
|
auto *DescTy = DBuilder.createPointerType(EltTy, Size);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
FieldOffset = 0;
|
|
|
|
FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
|
|
|
|
EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
|
|
|
|
FType = CGM.getContext().IntTy;
|
|
|
|
EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
|
|
|
|
EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset));
|
2014-11-05 09:01:30 +08:00
|
|
|
FType = CGM.getContext().getPointerType(Ty->getPointeeType());
|
2012-12-18 22:30:41 +08:00
|
|
|
EltTys.push_back(CreateMemberType(Unit, FType, "__FuncPtr", &FieldOffset));
|
|
|
|
|
|
|
|
FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
|
|
|
|
FieldSize = CGM.getContext().getTypeSize(Ty);
|
|
|
|
FieldAlign = CGM.getContext().getTypeAlign(Ty);
|
2015-07-07 05:31:35 +08:00
|
|
|
EltTys.push_back(DBuilder.createMemberType(Unit, "__descriptor", nullptr, LineNo,
|
2015-04-21 02:51:48 +08:00
|
|
|
FieldSize, FieldAlign, FieldOffset,
|
|
|
|
0, DescTy));
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
FieldOffset += FieldSize;
|
|
|
|
Elements = DBuilder.getOrCreateArray(EltTys);
|
|
|
|
|
2015-07-07 08:49:35 +08:00
|
|
|
// The __block_literal_generic structs are marked with a special
|
|
|
|
// DW_AT_APPLE_BLOCK attribute and are an implementation detail only
|
|
|
|
// the debugger needs to know about. To allow type uniquing, emit
|
|
|
|
// them without a name or a location.
|
2015-04-21 02:51:48 +08:00
|
|
|
EltTy =
|
2015-07-07 08:49:35 +08:00
|
|
|
DBuilder.createStructType(Unit, "", nullptr, LineNo,
|
2015-04-21 02:51:48 +08:00
|
|
|
FieldOffset, 0, Flags, nullptr, Elements);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2015-07-07 08:49:35 +08:00
|
|
|
return DBuilder.createPointerType(EltTy, Size);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreateType(const TemplateSpecializationType *Ty,
|
|
|
|
llvm::DIFile *Unit) {
|
2014-04-07 01:14:06 +08:00
|
|
|
assert(Ty->isTypeAlias());
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *Src = getOrCreateType(Ty->getAliasedType(), Unit);
|
2014-04-07 01:14:06 +08:00
|
|
|
|
|
|
|
SmallString<128> NS;
|
|
|
|
llvm::raw_svector_ostream OS(NS);
|
2014-10-27 07:40:33 +08:00
|
|
|
Ty->getTemplateName().print(OS, CGM.getContext().getPrintingPolicy(),
|
|
|
|
/*qualified*/ false);
|
2014-04-07 01:14:06 +08:00
|
|
|
|
|
|
|
TemplateSpecializationType::PrintTemplateArgumentList(
|
|
|
|
OS, Ty->getArgs(), Ty->getNumArgs(),
|
|
|
|
CGM.getContext().getPrintingPolicy());
|
|
|
|
|
2014-10-27 07:40:33 +08:00
|
|
|
TypeAliasDecl *AliasDecl = cast<TypeAliasTemplateDecl>(
|
|
|
|
Ty->getTemplateName().getAsTemplateDecl())->getTemplatedDecl();
|
2014-04-07 01:14:06 +08:00
|
|
|
|
|
|
|
SourceLocation Loc = AliasDecl->getLocation();
|
2015-09-12 02:45:02 +08:00
|
|
|
return DBuilder.createTypedef(Src, OS.str(), getOrCreateFile(Loc),
|
|
|
|
getLineNumber(Loc),
|
|
|
|
getDeclContextDescriptor(AliasDecl));
|
2014-04-07 01:14:06 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreateType(const TypedefType *Ty,
|
|
|
|
llvm::DIFile *Unit) {
|
2012-12-18 22:30:41 +08:00
|
|
|
// We don't set size information, but do specify where the typedef was
|
|
|
|
// declared.
|
2015-07-02 02:07:22 +08:00
|
|
|
SourceLocation Loc = Ty->getDecl()->getLocation();
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2015-04-17 00:36:45 +08:00
|
|
|
// Typedefs are derived from some other type.
|
|
|
|
return DBuilder.createTypedef(
|
|
|
|
getOrCreateType(Ty->getDecl()->getUnderlyingType(), Unit),
|
|
|
|
Ty->getDecl()->getName(), getOrCreateFile(Loc), getLineNumber(Loc),
|
2015-09-11 02:39:45 +08:00
|
|
|
getDeclContextDescriptor(Ty->getDecl()));
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreateType(const FunctionType *Ty,
|
|
|
|
llvm::DIFile *Unit) {
|
2014-12-10 02:39:32 +08:00
|
|
|
SmallVector<llvm::Metadata *, 16> EltTys;
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// Add the result type at least.
|
2014-01-26 00:55:45 +08:00
|
|
|
EltTys.push_back(getOrCreateType(Ty->getReturnType(), Unit));
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// Set up remainder of arguments if there is a prototype.
|
2014-02-26 07:42:18 +08:00
|
|
|
// otherwise emit it as a variadic function.
|
2012-12-18 22:30:41 +08:00
|
|
|
if (isa<FunctionNoProtoType>(Ty))
|
|
|
|
EltTys.push_back(DBuilder.createUnspecifiedParameter());
|
|
|
|
else if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(Ty)) {
|
2014-01-21 04:26:09 +08:00
|
|
|
for (unsigned i = 0, e = FPT->getNumParams(); i != e; ++i)
|
|
|
|
EltTys.push_back(getOrCreateType(FPT->getParamType(i), Unit));
|
2014-02-26 03:38:11 +08:00
|
|
|
if (FPT->isVariadic())
|
|
|
|
EltTys.push_back(DBuilder.createUnspecifiedParameter());
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DITypeRefArray EltTypeArray = DBuilder.getOrCreateTypeArray(EltTys);
|
2015-10-15 14:56:08 +08:00
|
|
|
return DBuilder.createSubroutineType(EltTypeArray);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
/// Convert an AccessSpecifier into the corresponding DINode flag.
|
2014-08-30 06:44:27 +08:00
|
|
|
/// As an optimization, return 0 if the access specifier equals the
|
|
|
|
/// default for the containing type.
|
|
|
|
static unsigned getAccessFlag(AccessSpecifier Access, const RecordDecl *RD) {
|
|
|
|
AccessSpecifier Default = clang::AS_none;
|
|
|
|
if (RD && RD->isClass())
|
|
|
|
Default = clang::AS_private;
|
|
|
|
else if (RD && (RD->isStruct() || RD->isUnion()))
|
|
|
|
Default = clang::AS_public;
|
|
|
|
|
|
|
|
if (Access == Default)
|
|
|
|
return 0;
|
|
|
|
|
2014-10-27 07:40:33 +08:00
|
|
|
switch (Access) {
|
|
|
|
case clang::AS_private:
|
2015-04-30 00:40:08 +08:00
|
|
|
return llvm::DINode::FlagPrivate;
|
2014-10-27 07:40:33 +08:00
|
|
|
case clang::AS_protected:
|
2015-04-30 00:40:08 +08:00
|
|
|
return llvm::DINode::FlagProtected;
|
2014-10-27 07:40:33 +08:00
|
|
|
case clang::AS_public:
|
2015-04-30 00:40:08 +08:00
|
|
|
return llvm::DINode::FlagPublic;
|
2014-10-27 07:40:33 +08:00
|
|
|
case clang::AS_none:
|
|
|
|
return 0;
|
2014-08-30 06:44:27 +08:00
|
|
|
}
|
|
|
|
llvm_unreachable("unexpected access enumerator");
|
|
|
|
}
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::createFieldType(
|
2014-10-27 07:40:33 +08:00
|
|
|
StringRef name, QualType type, uint64_t sizeInBitsOverride,
|
|
|
|
SourceLocation loc, AccessSpecifier AS, uint64_t offsetInBits,
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *tunit, llvm::DIScope *scope, const RecordDecl *RD) {
|
|
|
|
llvm::DIType *debugType = getOrCreateType(type, tunit);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// Get the location for the field.
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *file = getOrCreateFile(loc);
|
2012-12-18 22:30:41 +08:00
|
|
|
unsigned line = getLineNumber(loc);
|
|
|
|
|
2014-07-30 09:30:47 +08:00
|
|
|
uint64_t SizeInBits = 0;
|
|
|
|
unsigned AlignInBits = 0;
|
2012-12-18 22:30:41 +08:00
|
|
|
if (!type->isIncompleteArrayType()) {
|
2014-07-30 09:30:47 +08:00
|
|
|
TypeInfo TI = CGM.getContext().getTypeInfo(type);
|
|
|
|
SizeInBits = TI.Width;
|
|
|
|
AlignInBits = TI.Align;
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
if (sizeInBitsOverride)
|
2014-07-30 09:30:47 +08:00
|
|
|
SizeInBits = sizeInBitsOverride;
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2014-08-30 06:44:27 +08:00
|
|
|
unsigned flags = getAccessFlag(AS, RD);
|
2014-07-30 09:30:47 +08:00
|
|
|
return DBuilder.createMemberType(scope, name, file, line, SizeInBits,
|
|
|
|
AlignInBits, offsetInBits, flags, debugType);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2014-12-10 02:39:32 +08:00
|
|
|
void CGDebugInfo::CollectRecordLambdaFields(
|
|
|
|
const CXXRecordDecl *CXXDecl, SmallVectorImpl<llvm::Metadata *> &elements,
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *RecordTy) {
|
2013-01-16 09:22:32 +08:00
|
|
|
// For C++11 Lambdas a Field will be the same as a Capture, but the Capture
|
|
|
|
// has the name and the location of the variable so we should iterate over
|
|
|
|
// both concurrently.
|
|
|
|
const ASTRecordLayout &layout = CGM.getContext().getASTRecordLayout(CXXDecl);
|
|
|
|
RecordDecl::field_iterator Field = CXXDecl->field_begin();
|
|
|
|
unsigned fieldno = 0;
|
|
|
|
for (CXXRecordDecl::capture_const_iterator I = CXXDecl->captures_begin(),
|
2014-10-27 07:40:33 +08:00
|
|
|
E = CXXDecl->captures_end();
|
|
|
|
I != E; ++I, ++Field, ++fieldno) {
|
2014-05-11 00:31:55 +08:00
|
|
|
const LambdaCapture &C = *I;
|
2013-01-16 09:22:32 +08:00
|
|
|
if (C.capturesVariable()) {
|
|
|
|
VarDecl *V = C.getCapturedVar();
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *VUnit = getOrCreateFile(C.getLocation());
|
2013-01-16 09:22:32 +08:00
|
|
|
StringRef VName = V->getName();
|
|
|
|
uint64_t SizeInBitsOverride = 0;
|
|
|
|
if (Field->isBitField()) {
|
|
|
|
SizeInBitsOverride = Field->getBitWidthValue(CGM.getContext());
|
|
|
|
assert(SizeInBitsOverride && "found named 0-width bitfield");
|
|
|
|
}
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *fieldType = createFieldType(
|
2014-10-27 07:40:33 +08:00
|
|
|
VName, Field->getType(), SizeInBitsOverride, C.getLocation(),
|
|
|
|
Field->getAccess(), layout.getFieldOffset(fieldno), VUnit, RecordTy,
|
|
|
|
CXXDecl);
|
2013-01-16 09:22:32 +08:00
|
|
|
elements.push_back(fieldType);
|
2014-08-28 12:28:19 +08:00
|
|
|
} else if (C.capturesThis()) {
|
2013-01-16 09:22:32 +08:00
|
|
|
// TODO: Need to handle 'this' in some way by probably renaming the
|
|
|
|
// this of the lambda class and having a field member of 'this' or
|
|
|
|
// by using AT_object_pointer for the function and having that be
|
|
|
|
// used as 'this' for semantic references.
|
|
|
|
FieldDecl *f = *Field;
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *VUnit = getOrCreateFile(f->getLocation());
|
2013-01-16 09:22:32 +08:00
|
|
|
QualType type = f->getType();
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *fieldType = createFieldType(
|
2014-10-27 07:40:33 +08:00
|
|
|
"this", type, 0, f->getLocation(), f->getAccess(),
|
|
|
|
layout.getFieldOffset(fieldno), VUnit, RecordTy, CXXDecl);
|
2013-01-16 09:22:32 +08:00
|
|
|
|
|
|
|
elements.push_back(fieldType);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIDerivedType *
|
|
|
|
CGDebugInfo::CreateRecordStaticField(const VarDecl *Var, llvm::DIType *RecordTy,
|
2015-04-21 05:17:26 +08:00
|
|
|
const RecordDecl *RD) {
|
2013-01-16 09:22:32 +08:00
|
|
|
// Create the descriptor for the static variable, with or without
|
|
|
|
// constant initializers.
|
2014-10-15 06:22:17 +08:00
|
|
|
Var = Var->getCanonicalDecl();
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *VUnit = getOrCreateFile(Var->getLocation());
|
|
|
|
llvm::DIType *VTy = getOrCreateType(Var->getType(), VUnit);
|
2013-01-16 09:22:32 +08:00
|
|
|
|
|
|
|
unsigned LineNumber = getLineNumber(Var->getLocation());
|
|
|
|
StringRef VName = Var->getName();
|
2014-05-21 13:09:00 +08:00
|
|
|
llvm::Constant *C = nullptr;
|
2013-01-16 09:22:32 +08:00
|
|
|
if (Var->getInit()) {
|
|
|
|
const APValue *Value = Var->evaluateValue();
|
2013-01-20 09:19:17 +08:00
|
|
|
if (Value) {
|
|
|
|
if (Value->isInt())
|
|
|
|
C = llvm::ConstantInt::get(CGM.getLLVMContext(), Value->getInt());
|
|
|
|
if (Value->isFloat())
|
|
|
|
C = llvm::ConstantFP::get(CGM.getLLVMContext(), Value->getFloat());
|
|
|
|
}
|
2013-01-16 09:22:32 +08:00
|
|
|
}
|
|
|
|
|
2014-08-30 06:44:27 +08:00
|
|
|
unsigned Flags = getAccessFlag(Var->getAccess(), RD);
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIDerivedType *GV = DBuilder.createStaticMemberType(
|
2013-08-16 06:50:29 +08:00
|
|
|
RecordTy, VName, VUnit, LineNumber, VTy, Flags, C);
|
2014-12-10 02:39:32 +08:00
|
|
|
StaticDataMemberCache[Var->getCanonicalDecl()].reset(GV);
|
2013-08-16 06:50:29 +08:00
|
|
|
return GV;
|
2013-01-16 09:22:32 +08:00
|
|
|
}
|
|
|
|
|
2014-10-27 07:40:33 +08:00
|
|
|
void CGDebugInfo::CollectRecordNormalField(
|
2015-04-30 00:40:08 +08:00
|
|
|
const FieldDecl *field, uint64_t OffsetInBits, llvm::DIFile *tunit,
|
|
|
|
SmallVectorImpl<llvm::Metadata *> &elements, llvm::DIType *RecordTy,
|
2014-10-27 07:40:33 +08:00
|
|
|
const RecordDecl *RD) {
|
2013-01-16 09:22:32 +08:00
|
|
|
StringRef name = field->getName();
|
|
|
|
QualType type = field->getType();
|
|
|
|
|
|
|
|
// Ignore unnamed fields unless they're anonymous structs/unions.
|
|
|
|
if (name.empty() && !type->isRecordType())
|
|
|
|
return;
|
|
|
|
|
|
|
|
uint64_t SizeInBitsOverride = 0;
|
|
|
|
if (field->isBitField()) {
|
|
|
|
SizeInBitsOverride = field->getBitWidthValue(CGM.getContext());
|
|
|
|
assert(SizeInBitsOverride && "found named 0-width bitfield");
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *fieldType =
|
2014-10-27 07:40:33 +08:00
|
|
|
createFieldType(name, type, SizeInBitsOverride, field->getLocation(),
|
|
|
|
field->getAccess(), OffsetInBits, tunit, RecordTy, RD);
|
2013-01-16 09:22:32 +08:00
|
|
|
|
|
|
|
elements.push_back(fieldType);
|
|
|
|
}
|
|
|
|
|
2014-12-10 02:39:32 +08:00
|
|
|
void CGDebugInfo::CollectRecordFields(
|
2015-04-30 00:40:08 +08:00
|
|
|
const RecordDecl *record, llvm::DIFile *tunit,
|
2014-12-10 02:39:32 +08:00
|
|
|
SmallVectorImpl<llvm::Metadata *> &elements,
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DICompositeType *RecordTy) {
|
2012-12-18 22:30:41 +08:00
|
|
|
const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(record);
|
|
|
|
|
2013-01-16 09:22:32 +08:00
|
|
|
if (CXXDecl && CXXDecl->isLambda())
|
|
|
|
CollectRecordLambdaFields(CXXDecl, elements, RecordTy);
|
|
|
|
else {
|
|
|
|
const ASTRecordLayout &layout = CGM.getContext().getASTRecordLayout(record);
|
|
|
|
|
|
|
|
// Field number for non-static fields.
|
2013-01-05 01:59:07 +08:00
|
|
|
unsigned fieldNo = 0;
|
2013-01-16 09:22:32 +08:00
|
|
|
|
|
|
|
// Static and non-static members should appear in the same order as
|
|
|
|
// the corresponding declarations in the source program.
|
2014-03-08 03:56:05 +08:00
|
|
|
for (const auto *I : record->decls())
|
|
|
|
if (const auto *V = dyn_cast<VarDecl>(I)) {
|
2013-08-21 05:49:21 +08:00
|
|
|
// Reuse the existing static member declaration if one exists
|
2014-12-10 02:39:32 +08:00
|
|
|
auto MI = StaticDataMemberCache.find(V->getCanonicalDecl());
|
2013-08-21 05:49:21 +08:00
|
|
|
if (MI != StaticDataMemberCache.end()) {
|
|
|
|
assert(MI->second &&
|
|
|
|
"Static data member declaration should still exist");
|
2015-07-25 02:05:58 +08:00
|
|
|
elements.push_back(MI->second);
|
2014-08-30 06:44:27 +08:00
|
|
|
} else {
|
|
|
|
auto Field = CreateRecordStaticField(V, RecordTy, record);
|
|
|
|
elements.push_back(Field);
|
|
|
|
}
|
2014-03-08 03:56:05 +08:00
|
|
|
} else if (const auto *field = dyn_cast<FieldDecl>(I)) {
|
2014-10-27 07:40:33 +08:00
|
|
|
CollectRecordNormalField(field, layout.getFieldOffset(fieldNo), tunit,
|
|
|
|
elements, RecordTy, record);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2013-01-16 09:22:32 +08:00
|
|
|
// Bump field number for next field.
|
|
|
|
++fieldNo;
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DISubroutineType *
|
2012-12-18 22:30:41 +08:00
|
|
|
CGDebugInfo::getOrCreateMethodType(const CXXMethodDecl *Method,
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *Unit) {
|
2013-01-08 07:06:35 +08:00
|
|
|
const FunctionProtoType *Func = Method->getType()->getAs<FunctionProtoType>();
|
2013-01-08 06:24:59 +08:00
|
|
|
if (Method->isStatic())
|
2015-04-30 00:40:08 +08:00
|
|
|
return cast_or_null<llvm::DISubroutineType>(
|
2015-04-07 07:21:33 +08:00
|
|
|
getOrCreateType(QualType(Func, 0), Unit));
|
2013-01-08 07:06:35 +08:00
|
|
|
return getOrCreateInstanceMethodType(Method->getThisType(CGM.getContext()),
|
|
|
|
Func, Unit);
|
|
|
|
}
|
2013-01-08 06:24:59 +08:00
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DISubroutineType *CGDebugInfo::getOrCreateInstanceMethodType(
|
|
|
|
QualType ThisPtr, const FunctionProtoType *Func, llvm::DIFile *Unit) {
|
2012-12-18 22:30:41 +08:00
|
|
|
// Add "this" pointer.
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DITypeRefArray Args(
|
|
|
|
cast<llvm::DISubroutineType>(getOrCreateType(QualType(Func, 0), Unit))
|
2015-04-07 07:21:33 +08:00
|
|
|
->getTypeArray());
|
2015-04-07 12:14:45 +08:00
|
|
|
assert(Args.size() && "Invalid number of arguments!");
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2014-12-10 02:39:32 +08:00
|
|
|
SmallVector<llvm::Metadata *, 16> Elts;
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// First element is always return type. For 'void' functions it is NULL.
|
2015-04-08 02:41:26 +08:00
|
|
|
Elts.push_back(Args[0]);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2013-01-08 06:24:59 +08:00
|
|
|
// "this" pointer is always first argument.
|
2013-01-08 07:06:35 +08:00
|
|
|
const CXXRecordDecl *RD = ThisPtr->getPointeeCXXRecordDecl();
|
2013-01-08 06:24:59 +08:00
|
|
|
if (isa<ClassTemplateSpecializationDecl>(RD)) {
|
|
|
|
// Create pointer type directly in this case.
|
|
|
|
const PointerType *ThisPtrTy = cast<PointerType>(ThisPtr);
|
|
|
|
QualType PointeeTy = ThisPtrTy->getPointeeType();
|
|
|
|
unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy);
|
2013-04-17 06:48:15 +08:00
|
|
|
uint64_t Size = CGM.getTarget().getPointerWidth(AS);
|
2013-01-08 06:24:59 +08:00
|
|
|
uint64_t Align = CGM.getContext().getTypeAlign(ThisPtrTy);
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *PointeeType = getOrCreateType(PointeeTy, Unit);
|
|
|
|
llvm::DIType *ThisPtrType =
|
2014-10-27 07:40:33 +08:00
|
|
|
DBuilder.createPointerType(PointeeType, Size, Align);
|
2014-12-10 02:39:32 +08:00
|
|
|
TypeCache[ThisPtr.getAsOpaquePtr()].reset(ThisPtrType);
|
2013-01-08 06:24:59 +08:00
|
|
|
// TODO: This and the artificial type below are misleading, the
|
|
|
|
// types aren't artificial the argument is, but the current
|
|
|
|
// metadata doesn't represent that.
|
|
|
|
ThisPtrType = DBuilder.createObjectPointerType(ThisPtrType);
|
|
|
|
Elts.push_back(ThisPtrType);
|
|
|
|
} else {
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *ThisPtrType = getOrCreateType(ThisPtr, Unit);
|
2014-12-10 02:39:32 +08:00
|
|
|
TypeCache[ThisPtr.getAsOpaquePtr()].reset(ThisPtrType);
|
2013-01-08 06:24:59 +08:00
|
|
|
ThisPtrType = DBuilder.createObjectPointerType(ThisPtrType);
|
|
|
|
Elts.push_back(ThisPtrType);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Copy rest of the arguments.
|
2015-04-07 12:14:45 +08:00
|
|
|
for (unsigned i = 1, e = Args.size(); i != e; ++i)
|
|
|
|
Elts.push_back(Args[i]);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DITypeRefArray EltTypeArray = DBuilder.getOrCreateTypeArray(Elts);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2013-12-19 05:48:18 +08:00
|
|
|
unsigned Flags = 0;
|
|
|
|
if (Func->getExtProtoInfo().RefQualifier == RQ_LValue)
|
2015-04-30 00:40:08 +08:00
|
|
|
Flags |= llvm::DINode::FlagLValueReference;
|
2013-12-19 05:48:18 +08:00
|
|
|
if (Func->getExtProtoInfo().RefQualifier == RQ_RValue)
|
2015-04-30 00:40:08 +08:00
|
|
|
Flags |= llvm::DINode::FlagRValueReference;
|
2013-12-19 05:48:18 +08:00
|
|
|
|
2015-10-15 14:56:08 +08:00
|
|
|
return DBuilder.createSubroutineType(EltTypeArray, Flags);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2013-05-16 08:45:12 +08:00
|
|
|
/// isFunctionLocalClass - Return true if CXXRecordDecl is defined
|
2012-12-18 22:30:41 +08:00
|
|
|
/// inside a function.
|
|
|
|
static bool isFunctionLocalClass(const CXXRecordDecl *RD) {
|
|
|
|
if (const CXXRecordDecl *NRD = dyn_cast<CXXRecordDecl>(RD->getDeclContext()))
|
|
|
|
return isFunctionLocalClass(NRD);
|
|
|
|
if (isa<FunctionDecl>(RD->getDeclContext()))
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DISubprogram *CGDebugInfo::CreateCXXMemberFunction(
|
|
|
|
const CXXMethodDecl *Method, llvm::DIFile *Unit, llvm::DIType *RecordTy) {
|
2013-05-16 08:45:12 +08:00
|
|
|
bool IsCtorOrDtor =
|
2014-10-27 07:40:33 +08:00
|
|
|
isa<CXXConstructorDecl>(Method) || isa<CXXDestructorDecl>(Method);
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
StringRef MethodName = getFunctionName(Method);
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DISubroutineType *MethodTy = getOrCreateMethodType(Method, Unit);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// Since a single ctor/dtor corresponds to multiple functions, it doesn't
|
|
|
|
// make sense to give a single ctor/dtor a linkage name.
|
|
|
|
StringRef MethodLinkageName;
|
|
|
|
if (!IsCtorOrDtor && !isFunctionLocalClass(Method->getParent()))
|
|
|
|
MethodLinkageName = CGM.getMangledName(Method);
|
|
|
|
|
|
|
|
// Get the location for the method.
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *MethodDefUnit = nullptr;
|
2013-08-19 11:37:48 +08:00
|
|
|
unsigned MethodLine = 0;
|
|
|
|
if (!Method->isImplicit()) {
|
|
|
|
MethodDefUnit = getOrCreateFile(Method->getLocation());
|
|
|
|
MethodLine = getLineNumber(Method->getLocation());
|
|
|
|
}
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// Collect virtual method info.
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *ContainingType = nullptr;
|
2013-05-16 08:45:12 +08:00
|
|
|
unsigned Virtuality = 0;
|
2012-12-18 22:30:41 +08:00
|
|
|
unsigned VIndex = 0;
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
if (Method->isVirtual()) {
|
|
|
|
if (Method->isPure())
|
|
|
|
Virtuality = llvm::dwarf::DW_VIRTUALITY_pure_virtual;
|
|
|
|
else
|
|
|
|
Virtuality = llvm::dwarf::DW_VIRTUALITY_virtual;
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
// It doesn't make sense to give a virtual destructor a vtable index,
|
|
|
|
// since a single destructor has two entries in the vtable.
|
2013-09-27 22:48:01 +08:00
|
|
|
// FIXME: Add proper support for debug info for virtual calls in
|
|
|
|
// the Microsoft ABI, where we may use multiple vptrs to make a vftable
|
|
|
|
// lookup if we have multiple or virtual inheritance.
|
|
|
|
if (!isa<CXXDestructorDecl>(Method) &&
|
|
|
|
!CGM.getTarget().getCXXABI().isMicrosoft())
|
2013-11-05 23:54:58 +08:00
|
|
|
VIndex = CGM.getItaniumVTableContext().getMethodVTableIndex(Method);
|
2012-12-18 22:30:41 +08:00
|
|
|
ContainingType = RecordTy;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned Flags = 0;
|
|
|
|
if (Method->isImplicit())
|
2015-04-30 00:40:08 +08:00
|
|
|
Flags |= llvm::DINode::FlagArtificial;
|
2014-08-30 06:44:27 +08:00
|
|
|
Flags |= getAccessFlag(Method->getAccess(), Method->getParent());
|
2012-12-18 22:30:41 +08:00
|
|
|
if (const CXXConstructorDecl *CXXC = dyn_cast<CXXConstructorDecl>(Method)) {
|
|
|
|
if (CXXC->isExplicit())
|
2015-04-30 00:40:08 +08:00
|
|
|
Flags |= llvm::DINode::FlagExplicit;
|
2013-05-16 08:45:12 +08:00
|
|
|
} else if (const CXXConversionDecl *CXXC =
|
2014-10-27 07:40:33 +08:00
|
|
|
dyn_cast<CXXConversionDecl>(Method)) {
|
2012-12-18 22:30:41 +08:00
|
|
|
if (CXXC->isExplicit())
|
2015-04-30 00:40:08 +08:00
|
|
|
Flags |= llvm::DINode::FlagExplicit;
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
if (Method->hasPrototype())
|
2015-04-30 00:40:08 +08:00
|
|
|
Flags |= llvm::DINode::FlagPrototyped;
|
2013-12-19 05:48:18 +08:00
|
|
|
if (Method->getRefQualifier() == RQ_LValue)
|
2015-04-30 00:40:08 +08:00
|
|
|
Flags |= llvm::DINode::FlagLValueReference;
|
2013-12-19 05:48:18 +08:00
|
|
|
if (Method->getRefQualifier() == RQ_RValue)
|
2015-04-30 00:40:08 +08:00
|
|
|
Flags |= llvm::DINode::FlagRValueReference;
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DINodeArray TParamsArray = CollectFunctionTemplateParams(Method, Unit);
|
|
|
|
llvm::DISubprogram *SP = DBuilder.createMethod(
|
2014-10-27 07:40:33 +08:00
|
|
|
RecordTy, MethodName, MethodLinkageName, MethodDefUnit, MethodLine,
|
|
|
|
MethodTy, /*isLocalToUnit=*/false,
|
|
|
|
/* isDefinition=*/false, Virtuality, VIndex, ContainingType, Flags,
|
2015-11-06 06:04:14 +08:00
|
|
|
CGM.getLangOpts().Optimize, TParamsArray.get());
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2014-12-10 02:39:32 +08:00
|
|
|
SPCache[Method->getCanonicalDecl()].reset(SP);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
return SP;
|
|
|
|
}
|
|
|
|
|
2014-10-27 07:40:33 +08:00
|
|
|
void CGDebugInfo::CollectCXXMemberFunctions(
|
2015-04-30 00:40:08 +08:00
|
|
|
const CXXRecordDecl *RD, llvm::DIFile *Unit,
|
|
|
|
SmallVectorImpl<llvm::Metadata *> &EltTys, llvm::DIType *RecordTy) {
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// Since we want more than just the individual member decls if we
|
|
|
|
// have templated functions iterate over every declaration to gather
|
|
|
|
// the functions.
|
2014-10-27 07:40:33 +08:00
|
|
|
for (const auto *I : RD->decls()) {
|
2014-10-06 13:18:55 +08:00
|
|
|
const auto *Method = dyn_cast<CXXMethodDecl>(I);
|
|
|
|
// If the member is implicit, don't add it to the member list. This avoids
|
|
|
|
// the member being added to type units by LLVM, while still allowing it
|
|
|
|
// to be emitted into the type declaration/reference inside the compile
|
|
|
|
// unit.
|
2015-06-26 01:50:43 +08:00
|
|
|
// Ditto 'nodebug' methods, for consistency with CodeGenFunction.cpp.
|
2014-10-06 13:52:27 +08:00
|
|
|
// FIXME: Handle Using(Shadow?)Decls here to create
|
|
|
|
// DW_TAG_imported_declarations inside the class for base decls brought into
|
|
|
|
// derived classes. GDB doesn't seem to notice/leverage these when I tried
|
|
|
|
// it, so I'm not rushing to fix this. (GCC seems to produce them, if
|
|
|
|
// referenced)
|
2015-06-26 01:50:43 +08:00
|
|
|
if (!Method || Method->isImplicit() || Method->hasAttr<NoDebugAttr>())
|
2014-10-06 13:18:55 +08:00
|
|
|
continue;
|
PR16091 continued: Debug Info for member functions with undeduced return types.
So DWARF5 specs out auto deduced return types as DW_TAG_unspecified_type
with DW_AT_name "auto", and GCC implements this somewhat, but it
presents a few problems to do this with Clang.
GCC's implementation only applies to member functions where the auto
return type isn't deduced immediately (ie: member functions of templates
or member functions defined out of line). In the common case of an
inline deduced return type function, GCC emits the DW_AT_type as the
deduced return type.
Currently GDB doesn't seem to behave too well with this debug info - it
treats the return type as 'void', even though the definition of the
function has the correctly deduced return type (I guess it sees the
return type the declaration has, doesn't understand it, and assumes
void). This means the function's ABI might be broken (non-trivial return
types, etc), etc.
Clang, on the other hand doesn't track this particular case of a
deducable return type that is deduced immediately versus one that is
deduced 'later'. So if we implement the DWARF5 representation, all
deducible return type functions would get adverse GDB behavior
(including deduced return type lambda functions, inline deduced return
type functions, etc).
Also, we can't just do this for auto types that are not deduced -
because Clang marks even the declaration's return type as deduced (&
provides the underlying type) once a definition is seen that allows the
deduction. So we have to ignore even deduced types - but we can't do
that for auto variables (because this representation only applies to
function declarations - variables and function definitions need the real
type so the function can be called, etc) so we'd need to add an extra
flag to the type unwrapping/creation code to indicate when we want to
see through deduced types and when we don't. It's also not as simple as
just checking at the top level when building a function type (for one
thing, we reuse the function type building for building function pointer
types which might also have 'auto' in them - but be the type of a
variable instead) because the auto might be arbitrarily deeply nested
("auto &", "auto (*)()", etc...)
So, with all that said, let's do the simple thing that works in existing
debuggers for now and treat these functions the same way we do function
templates and implicit special members: omit them from the member list,
since they can't be correctly called anyway (without knowing the return
type the ABI isn't know and a function call could put the arguments in
the wrong place) so they're not much use to the user.
At some point in the future, when GDB understands the DWARF5
representation better it might be worth plumbing through the extra type
builder handling to avoid looking through AutoType for some callers,
etc...
llvm-svn: 221704
2014-11-12 04:44:45 +08:00
|
|
|
|
|
|
|
if (Method->getType()->getAs<FunctionProtoType>()->getContainedAutoType())
|
|
|
|
continue;
|
|
|
|
|
2014-10-06 13:18:55 +08:00
|
|
|
// Reuse the existing member function declaration if it exists.
|
|
|
|
// It may be associated with the declaration of the type & should be
|
|
|
|
// reused as we're building the definition.
|
|
|
|
//
|
|
|
|
// This situation can arise in the vtable-based debug info reduction where
|
|
|
|
// implicit members are emitted in a non-vtable TU.
|
|
|
|
auto MI = SPCache.find(Method->getCanonicalDecl());
|
|
|
|
EltTys.push_back(MI == SPCache.end()
|
|
|
|
? CreateCXXMemberFunction(Method, Unit, RecordTy)
|
2014-12-10 02:39:32 +08:00
|
|
|
: static_cast<llvm::Metadata *>(MI->second));
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
2013-05-16 08:45:12 +08:00
|
|
|
}
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
void CGDebugInfo::CollectCXXBases(const CXXRecordDecl *RD, llvm::DIFile *Unit,
|
2014-12-10 02:39:32 +08:00
|
|
|
SmallVectorImpl<llvm::Metadata *> &EltTys,
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *RecordTy) {
|
2012-12-18 22:30:41 +08:00
|
|
|
const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
|
2014-03-13 23:41:46 +08:00
|
|
|
for (const auto &BI : RD->bases()) {
|
2012-12-18 22:30:41 +08:00
|
|
|
unsigned BFlags = 0;
|
|
|
|
uint64_t BaseOffset;
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
const CXXRecordDecl *Base =
|
2014-10-27 07:40:33 +08:00
|
|
|
cast<CXXRecordDecl>(BI.getType()->getAs<RecordType>()->getDecl());
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2014-03-13 23:41:46 +08:00
|
|
|
if (BI.isVirtual()) {
|
2014-08-08 05:29:25 +08:00
|
|
|
if (CGM.getTarget().getCXXABI().isItaniumFamily()) {
|
|
|
|
// virtual base offset offset is -ve. The code generator emits dwarf
|
|
|
|
// expression where it expects +ve number.
|
2014-10-27 07:40:33 +08:00
|
|
|
BaseOffset = 0 - CGM.getItaniumVTableContext()
|
|
|
|
.getVirtualBaseOffsetOffset(RD, Base)
|
|
|
|
.getQuantity();
|
2014-08-08 05:29:25 +08:00
|
|
|
} else {
|
|
|
|
// In the MS ABI, store the vbtable offset, which is analogous to the
|
|
|
|
// vbase offset offset in Itanium.
|
|
|
|
BaseOffset =
|
|
|
|
4 * CGM.getMicrosoftVTableContext().getVBTableIndex(RD, Base);
|
|
|
|
}
|
2015-04-30 00:40:08 +08:00
|
|
|
BFlags = llvm::DINode::FlagVirtual;
|
2012-12-18 22:30:41 +08:00
|
|
|
} else
|
|
|
|
BaseOffset = CGM.getContext().toBits(RL.getBaseClassOffset(Base));
|
|
|
|
// FIXME: Inconsistent units for BaseOffset. It is in bytes when
|
|
|
|
// BI->isVirtual() and bits when not.
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2014-08-30 06:44:27 +08:00
|
|
|
BFlags |= getAccessFlag(BI.getAccessSpecifier(), RD);
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *DTy = DBuilder.createInheritance(
|
2014-10-27 07:40:33 +08:00
|
|
|
RecordTy, getOrCreateType(BI.getType(), Unit), BaseOffset, BFlags);
|
2012-12-18 22:30:41 +08:00
|
|
|
EltTys.push_back(DTy);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DINodeArray
|
2014-10-27 07:40:33 +08:00
|
|
|
CGDebugInfo::CollectTemplateParams(const TemplateParameterList *TPList,
|
|
|
|
ArrayRef<TemplateArgument> TAList,
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *Unit) {
|
2014-12-10 02:39:32 +08:00
|
|
|
SmallVector<llvm::Metadata *, 16> TemplateParams;
|
2012-12-18 22:30:41 +08:00
|
|
|
for (unsigned i = 0, e = TAList.size(); i != e; ++i) {
|
|
|
|
const TemplateArgument &TA = TAList[i];
|
2013-06-23 02:59:18 +08:00
|
|
|
StringRef Name;
|
|
|
|
if (TPList)
|
|
|
|
Name = TPList->getParam(i)->getName();
|
2013-05-11 05:53:14 +08:00
|
|
|
switch (TA.getKind()) {
|
|
|
|
case TemplateArgument::Type: {
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *TTy = getOrCreateType(TA.getAsType(), Unit);
|
2015-04-22 02:43:54 +08:00
|
|
|
TemplateParams.push_back(
|
|
|
|
DBuilder.createTemplateTypeParameter(TheCU, Name, TTy));
|
2013-05-11 05:53:14 +08:00
|
|
|
} break;
|
|
|
|
case TemplateArgument::Integral: {
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *TTy = getOrCreateType(TA.getIntegralType(), Unit);
|
2015-04-22 02:43:54 +08:00
|
|
|
TemplateParams.push_back(DBuilder.createTemplateValueParameter(
|
|
|
|
TheCU, Name, TTy,
|
|
|
|
llvm::ConstantInt::get(CGM.getLLVMContext(), TA.getAsIntegral())));
|
2013-05-11 05:53:14 +08:00
|
|
|
} break;
|
|
|
|
case TemplateArgument::Declaration: {
|
|
|
|
const ValueDecl *D = TA.getAsDecl();
|
2014-10-18 10:21:26 +08:00
|
|
|
QualType T = TA.getParamTypeForDecl().getDesugaredType(CGM.getContext());
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *TTy = getOrCreateType(T, Unit);
|
2014-12-10 02:39:32 +08:00
|
|
|
llvm::Constant *V = nullptr;
|
2014-10-21 02:56:54 +08:00
|
|
|
const CXXMethodDecl *MD;
|
2013-05-11 05:53:14 +08:00
|
|
|
// Variable pointer template parameters have a value that is the address
|
|
|
|
// of the variable.
|
2014-10-18 02:00:12 +08:00
|
|
|
if (const auto *VD = dyn_cast<VarDecl>(D))
|
2013-05-11 05:53:14 +08:00
|
|
|
V = CGM.GetAddrOfGlobalVar(VD);
|
|
|
|
// Member function pointers have special support for building them, though
|
|
|
|
// this is currently unsupported in LLVM CodeGen.
|
2014-10-21 02:56:54 +08:00
|
|
|
else if ((MD = dyn_cast<CXXMethodDecl>(D)) && MD->isInstance())
|
2015-06-23 15:31:01 +08:00
|
|
|
V = CGM.getCXXABI().EmitMemberFunctionPointer(MD);
|
2014-10-18 02:00:12 +08:00
|
|
|
else if (const auto *FD = dyn_cast<FunctionDecl>(D))
|
2013-05-13 14:57:50 +08:00
|
|
|
V = CGM.GetAddrOfFunction(FD);
|
2013-05-11 05:53:14 +08:00
|
|
|
// Member data pointers have special handling too to compute the fixed
|
|
|
|
// offset within the object.
|
2014-10-18 02:00:12 +08:00
|
|
|
else if (const auto *MPT = dyn_cast<MemberPointerType>(T.getTypePtr())) {
|
2013-05-11 05:53:14 +08:00
|
|
|
// These five lines (& possibly the above member function pointer
|
|
|
|
// handling) might be able to be refactored to use similar code in
|
|
|
|
// CodeGenModule::getMemberPointerConstant
|
|
|
|
uint64_t fieldOffset = CGM.getContext().getFieldOffset(D);
|
|
|
|
CharUnits chars =
|
2014-10-27 07:40:33 +08:00
|
|
|
CGM.getContext().toCharUnitsFromBits((int64_t)fieldOffset);
|
2014-10-18 02:00:12 +08:00
|
|
|
V = CGM.getCXXABI().EmitMemberDataPointer(MPT, chars);
|
2013-05-11 05:53:14 +08:00
|
|
|
}
|
2015-04-22 02:43:54 +08:00
|
|
|
TemplateParams.push_back(DBuilder.createTemplateValueParameter(
|
|
|
|
TheCU, Name, TTy,
|
|
|
|
cast_or_null<llvm::Constant>(V->stripPointerCasts())));
|
2013-05-11 05:53:14 +08:00
|
|
|
} break;
|
|
|
|
case TemplateArgument::NullPtr: {
|
|
|
|
QualType T = TA.getNullPtrType();
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *TTy = getOrCreateType(T, Unit);
|
2014-12-10 02:39:32 +08:00
|
|
|
llvm::Constant *V = nullptr;
|
2013-05-11 05:53:14 +08:00
|
|
|
// Special case member data pointer null values since they're actually -1
|
|
|
|
// instead of zero.
|
|
|
|
if (const MemberPointerType *MPT =
|
|
|
|
dyn_cast<MemberPointerType>(T.getTypePtr()))
|
|
|
|
// But treat member function pointers as simple zero integers because
|
|
|
|
// it's easier than having a special case in LLVM's CodeGen. If LLVM
|
|
|
|
// CodeGen grows handling for values of non-null member function
|
|
|
|
// pointers then perhaps we could remove this special case and rely on
|
|
|
|
// EmitNullMemberPointer for member function pointers.
|
|
|
|
if (MPT->isMemberDataPointer())
|
|
|
|
V = CGM.getCXXABI().EmitNullMemberPointer(MPT);
|
|
|
|
if (!V)
|
|
|
|
V = llvm::ConstantInt::get(CGM.Int8Ty, 0);
|
2015-04-22 02:43:54 +08:00
|
|
|
TemplateParams.push_back(DBuilder.createTemplateValueParameter(
|
|
|
|
TheCU, Name, TTy, cast<llvm::Constant>(V)));
|
2013-06-23 02:59:18 +08:00
|
|
|
} break;
|
2015-04-22 02:43:54 +08:00
|
|
|
case TemplateArgument::Template:
|
|
|
|
TemplateParams.push_back(DBuilder.createTemplateTemplateParameter(
|
2015-04-21 02:51:48 +08:00
|
|
|
TheCU, Name, nullptr,
|
2015-04-22 02:43:54 +08:00
|
|
|
TA.getAsTemplate().getAsTemplateDecl()->getQualifiedNameAsString()));
|
|
|
|
break;
|
|
|
|
case TemplateArgument::Pack:
|
|
|
|
TemplateParams.push_back(DBuilder.createTemplateParameterPack(
|
|
|
|
TheCU, Name, nullptr,
|
|
|
|
CollectTemplateParams(nullptr, TA.getPackAsArray(), Unit)));
|
|
|
|
break;
|
2013-08-24 16:21:10 +08:00
|
|
|
case TemplateArgument::Expression: {
|
|
|
|
const Expr *E = TA.getAsExpr();
|
|
|
|
QualType T = E->getType();
|
2014-10-25 03:49:04 +08:00
|
|
|
if (E->isGLValue())
|
|
|
|
T = CGM.getContext().getLValueReferenceType(T);
|
2014-12-10 02:39:32 +08:00
|
|
|
llvm::Constant *V = CGM.EmitConstantExpr(E, T);
|
2013-08-24 16:21:10 +08:00
|
|
|
assert(V && "Expression in template argument isn't constant");
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *TTy = getOrCreateType(T, Unit);
|
2015-04-22 02:43:54 +08:00
|
|
|
TemplateParams.push_back(DBuilder.createTemplateValueParameter(
|
|
|
|
TheCU, Name, TTy, cast<llvm::Constant>(V->stripPointerCasts())));
|
2013-08-24 16:21:10 +08:00
|
|
|
} break;
|
2013-05-11 07:36:06 +08:00
|
|
|
// And the following should never occur:
|
2013-05-11 05:53:14 +08:00
|
|
|
case TemplateArgument::TemplateExpansion:
|
|
|
|
case TemplateArgument::Null:
|
|
|
|
llvm_unreachable(
|
|
|
|
"These argument types shouldn't exist in concrete types");
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return DBuilder.getOrCreateArray(TemplateParams);
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DINodeArray
|
2015-04-22 04:07:29 +08:00
|
|
|
CGDebugInfo::CollectFunctionTemplateParams(const FunctionDecl *FD,
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *Unit) {
|
2012-12-18 22:30:41 +08:00
|
|
|
if (FD->getTemplatedKind() ==
|
|
|
|
FunctionDecl::TK_FunctionTemplateSpecialization) {
|
2014-10-27 07:40:33 +08:00
|
|
|
const TemplateParameterList *TList = FD->getTemplateSpecializationInfo()
|
|
|
|
->getTemplate()
|
|
|
|
->getTemplateParameters();
|
2013-06-23 02:59:18 +08:00
|
|
|
return CollectTemplateParams(
|
|
|
|
TList, FD->getTemplateSpecializationArgs()->asArray(), Unit);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
2015-04-30 00:40:08 +08:00
|
|
|
return llvm::DINodeArray();
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DINodeArray CGDebugInfo::CollectCXXTemplateParams(
|
|
|
|
const ClassTemplateSpecializationDecl *TSpecial, llvm::DIFile *Unit) {
|
2014-04-17 09:04:01 +08:00
|
|
|
// Always get the full list of parameters, not just the ones from
|
|
|
|
// the specialization.
|
|
|
|
TemplateParameterList *TPList =
|
2014-10-27 07:40:33 +08:00
|
|
|
TSpecial->getSpecializedTemplate()->getTemplateParameters();
|
2014-04-17 08:30:48 +08:00
|
|
|
const TemplateArgumentList &TAList = TSpecial->getTemplateArgs();
|
2013-06-23 02:59:18 +08:00
|
|
|
return CollectTemplateParams(TPList, TAList.asArray(), Unit);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::getOrCreateVTablePtrType(llvm::DIFile *Unit) {
|
2015-04-16 07:48:50 +08:00
|
|
|
if (VTablePtrType)
|
2012-12-18 22:30:41 +08:00
|
|
|
return VTablePtrType;
|
|
|
|
|
|
|
|
ASTContext &Context = CGM.getContext();
|
|
|
|
|
|
|
|
/* Function type */
|
2014-12-10 02:39:32 +08:00
|
|
|
llvm::Metadata *STy = getOrCreateType(Context.IntTy, Unit);
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DITypeRefArray SElements = DBuilder.getOrCreateTypeArray(STy);
|
2015-10-15 14:56:08 +08:00
|
|
|
llvm::DIType *SubTy = DBuilder.createSubroutineType(SElements);
|
2012-12-18 22:30:41 +08:00
|
|
|
unsigned Size = Context.getTypeSize(Context.VoidPtrTy);
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *vtbl_ptr_type =
|
2014-10-27 07:40:33 +08:00
|
|
|
DBuilder.createPointerType(SubTy, Size, 0, "__vtbl_ptr_type");
|
2012-12-18 22:30:41 +08:00
|
|
|
VTablePtrType = DBuilder.createPointerType(vtbl_ptr_type, Size);
|
|
|
|
return VTablePtrType;
|
|
|
|
}
|
|
|
|
|
|
|
|
StringRef CGDebugInfo::getVTableName(const CXXRecordDecl *RD) {
|
2013-09-10 00:39:06 +08:00
|
|
|
// Copy the gdb compatible name on the side and use its reference.
|
|
|
|
return internString("_vptr$", RD->getNameAsString());
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
void CGDebugInfo::CollectVTableInfo(const CXXRecordDecl *RD, llvm::DIFile *Unit,
|
2014-12-10 02:39:32 +08:00
|
|
|
SmallVectorImpl<llvm::Metadata *> &EltTys) {
|
2012-12-18 22:30:41 +08:00
|
|
|
const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
|
|
|
|
|
|
|
|
// If there is a primary base then it will hold vtable info.
|
|
|
|
if (RL.getPrimaryBase())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// If this class is not dynamic then there is not any vtable info to collect.
|
|
|
|
if (!RD->isDynamicClass())
|
|
|
|
return;
|
|
|
|
|
|
|
|
unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *VPTR = DBuilder.createMemberType(
|
2014-10-27 07:40:33 +08:00
|
|
|
Unit, getVTableName(RD), Unit, 0, Size, 0, 0,
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DINode::FlagArtificial, getOrCreateVTablePtrType(Unit));
|
2012-12-18 22:30:41 +08:00
|
|
|
EltTys.push_back(VPTR);
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::getOrCreateRecordType(QualType RTy,
|
2015-04-21 02:51:48 +08:00
|
|
|
SourceLocation Loc) {
|
2013-05-16 08:45:23 +08:00
|
|
|
assert(DebugKind >= CodeGenOptions::LimitedDebugInfo);
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *T = getOrCreateType(RTy, getOrCreateFile(Loc));
|
2012-12-18 22:30:41 +08:00
|
|
|
return T;
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::getOrCreateInterfaceType(QualType D,
|
2015-04-21 02:51:48 +08:00
|
|
|
SourceLocation Loc) {
|
2015-08-28 05:21:19 +08:00
|
|
|
return getOrCreateStandaloneType(D, Loc);
|
|
|
|
}
|
|
|
|
|
|
|
|
llvm::DIType *CGDebugInfo::getOrCreateStandaloneType(QualType D,
|
|
|
|
SourceLocation Loc) {
|
2013-05-16 08:45:23 +08:00
|
|
|
assert(DebugKind >= CodeGenOptions::LimitedDebugInfo);
|
2015-08-28 05:21:19 +08:00
|
|
|
assert(!D.isNull() && "null type");
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *T = getOrCreateType(D, getOrCreateFile(Loc));
|
2015-08-28 05:21:19 +08:00
|
|
|
assert(T && "could not create debug info for type");
|
2015-08-28 06:56:46 +08:00
|
|
|
|
|
|
|
// Composite types with UIDs were already retained by DIBuilder
|
|
|
|
// because they are only referenced by name in the IR.
|
|
|
|
if (auto *CTy = dyn_cast<llvm::DICompositeType>(T))
|
|
|
|
if (!CTy->getIdentifier().empty())
|
|
|
|
return T;
|
2013-03-12 02:33:46 +08:00
|
|
|
RetainedTypes.push_back(D.getAsOpaquePtr());
|
2012-12-18 22:30:41 +08:00
|
|
|
return T;
|
|
|
|
}
|
|
|
|
|
2014-05-07 02:35:21 +08:00
|
|
|
void CGDebugInfo::completeType(const EnumDecl *ED) {
|
|
|
|
if (DebugKind <= CodeGenOptions::DebugLineTablesOnly)
|
|
|
|
return;
|
|
|
|
QualType Ty = CGM.getContext().getEnumType(ED);
|
2014-10-27 07:40:33 +08:00
|
|
|
void *TyPtr = Ty.getAsOpaquePtr();
|
2014-05-07 02:35:21 +08:00
|
|
|
auto I = TypeCache.find(TyPtr);
|
2015-04-30 00:40:08 +08:00
|
|
|
if (I == TypeCache.end() || !cast<llvm::DIType>(I->second)->isForwardDecl())
|
2014-05-07 02:35:21 +08:00
|
|
|
return;
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *Res = CreateTypeDefinition(Ty->castAs<EnumType>());
|
2015-04-16 09:00:56 +08:00
|
|
|
assert(!Res->isForwardDecl());
|
2014-12-10 02:39:32 +08:00
|
|
|
TypeCache[TyPtr].reset(Res);
|
2014-05-07 02:35:21 +08:00
|
|
|
}
|
|
|
|
|
2013-08-16 04:49:17 +08:00
|
|
|
void CGDebugInfo::completeType(const RecordDecl *RD) {
|
|
|
|
if (DebugKind > CodeGenOptions::LimitedDebugInfo ||
|
|
|
|
!CGM.getLangOpts().CPlusPlus)
|
|
|
|
completeRequiredType(RD);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGDebugInfo::completeRequiredType(const RecordDecl *RD) {
|
2014-03-05 06:01:08 +08:00
|
|
|
if (DebugKind <= CodeGenOptions::DebugLineTablesOnly)
|
|
|
|
return;
|
|
|
|
|
2013-08-20 09:28:15 +08:00
|
|
|
if (const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD))
|
|
|
|
if (CXXDecl->isDynamicClass())
|
|
|
|
return;
|
|
|
|
|
2015-09-12 01:23:08 +08:00
|
|
|
if (DebugTypeExtRefs && RD->isFromASTFile())
|
|
|
|
return;
|
|
|
|
|
2013-08-16 04:49:17 +08:00
|
|
|
QualType Ty = CGM.getContext().getRecordType(RD);
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *T = getTypeOrNull(Ty);
|
2015-04-16 09:00:56 +08:00
|
|
|
if (T && T->isForwardDecl())
|
2013-08-20 09:28:15 +08:00
|
|
|
completeClassData(RD);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGDebugInfo::completeClassData(const RecordDecl *RD) {
|
|
|
|
if (DebugKind <= CodeGenOptions::DebugLineTablesOnly)
|
2013-08-20 02:46:16 +08:00
|
|
|
return;
|
2013-08-20 09:28:15 +08:00
|
|
|
QualType Ty = CGM.getContext().getRecordType(RD);
|
2014-10-27 07:40:33 +08:00
|
|
|
void *TyPtr = Ty.getAsOpaquePtr();
|
2014-05-06 07:23:53 +08:00
|
|
|
auto I = TypeCache.find(TyPtr);
|
2015-04-30 00:40:08 +08:00
|
|
|
if (I != TypeCache.end() && !cast<llvm::DIType>(I->second)->isForwardDecl())
|
2013-08-16 04:49:17 +08:00
|
|
|
return;
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *Res = CreateTypeDefinition(Ty->castAs<RecordType>());
|
2015-04-16 09:00:56 +08:00
|
|
|
assert(!Res->isForwardDecl());
|
2014-12-10 02:39:32 +08:00
|
|
|
TypeCache[TyPtr].reset(Res);
|
2013-08-16 04:49:17 +08:00
|
|
|
}
|
|
|
|
|
2014-03-04 07:48:23 +08:00
|
|
|
static bool hasExplicitMemberDefinition(CXXRecordDecl::method_iterator I,
|
|
|
|
CXXRecordDecl::method_iterator End) {
|
|
|
|
for (; I != End; ++I)
|
|
|
|
if (FunctionDecl *Tmpl = I->getInstantiatedFromMemberFunction())
|
2014-03-04 11:08:14 +08:00
|
|
|
if (!Tmpl->isImplicit() && Tmpl->isThisDeclarationADefinition() &&
|
|
|
|
!I->getMemberSpecializationInfo()->isExplicitSpecialization())
|
2014-03-04 07:48:23 +08:00
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool shouldOmitDefinition(CodeGenOptions::DebugInfoKind DebugKind,
|
2015-09-12 01:23:08 +08:00
|
|
|
bool DebugTypeExtRefs,
|
2014-03-04 07:48:23 +08:00
|
|
|
const RecordDecl *RD,
|
|
|
|
const LangOptions &LangOpts) {
|
2015-09-12 01:23:08 +08:00
|
|
|
// Does the type exist in an imported clang module?
|
2015-09-12 02:54:28 +08:00
|
|
|
if (DebugTypeExtRefs && RD->isFromASTFile() && RD->getDefinition())
|
2015-09-12 01:23:08 +08:00
|
|
|
return true;
|
|
|
|
|
2014-03-04 07:48:23 +08:00
|
|
|
if (DebugKind > CodeGenOptions::LimitedDebugInfo)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!LangOpts.CPlusPlus)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!RD->isCompleteDefinitionRequired())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
|
|
|
|
|
|
|
|
if (!CXXDecl)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (CXXDecl->hasDefinition() && CXXDecl->isDynamicClass())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
TemplateSpecializationKind Spec = TSK_Undeclared;
|
|
|
|
if (const ClassTemplateSpecializationDecl *SD =
|
|
|
|
dyn_cast<ClassTemplateSpecializationDecl>(RD))
|
|
|
|
Spec = SD->getSpecializationKind();
|
|
|
|
|
|
|
|
if (Spec == TSK_ExplicitInstantiationDeclaration &&
|
|
|
|
hasExplicitMemberDefinition(CXXDecl->method_begin(),
|
|
|
|
CXXDecl->method_end()))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreateType(const RecordType *Ty) {
|
2012-12-18 22:30:41 +08:00
|
|
|
RecordDecl *RD = Ty->getDecl();
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *T = cast_or_null<llvm::DIType>(getTypeOrNull(QualType(Ty, 0)));
|
2015-09-12 01:23:08 +08:00
|
|
|
if (T || shouldOmitDefinition(DebugKind, DebugTypeExtRefs, RD,
|
|
|
|
CGM.getLangOpts())) {
|
PR17046, PR17092: Debug Info assert-on-valid due to member loss when context creation recreates the item the context is created for
By removing the possibility of strange partial definitions with no
members that older GCC's produced for the otherwise unreferenced outer
types of referenced inner types, we can simplify debug info generation
and correct this bug. Newer (4.8.1 and ToT) GCC's don't produce this
quirky debug info, and instead produce the full definition for the outer
type (except in the case where that type is dynamic and its vtable is
not emitted in this TU).
During the creation of the context for a type, we may revisit that type
(due to the need to visit template parameters, among other things) and
used to end up visiting it first there. Then when we would reach the
original code attempting to define that type, we would lose debug info
by overwriting its members.
By avoiding the possibility of latent "defined with no members" types,
we can be sure than whenever we already have a type in a cache (either a
definition or declaration), we can just return that. In the case of a
full definition, our work is done. In the case of a partial definition,
we must already be in the process of completing it. And in the case of a
declaration, the completed/vtable/etc callbacks can handle converting it
to a definition.
llvm-svn: 190122
2013-09-06 14:45:04 +08:00
|
|
|
if (!T)
|
2015-09-11 02:39:45 +08:00
|
|
|
T = getOrCreateRecordFwdDecl(Ty, getDeclContextDescriptor(RD));
|
PR17046, PR17092: Debug Info assert-on-valid due to member loss when context creation recreates the item the context is created for
By removing the possibility of strange partial definitions with no
members that older GCC's produced for the otherwise unreferenced outer
types of referenced inner types, we can simplify debug info generation
and correct this bug. Newer (4.8.1 and ToT) GCC's don't produce this
quirky debug info, and instead produce the full definition for the outer
type (except in the case where that type is dynamic and its vtable is
not emitted in this TU).
During the creation of the context for a type, we may revisit that type
(due to the need to visit template parameters, among other things) and
used to end up visiting it first there. Then when we would reach the
original code attempting to define that type, we would lose debug info
by overwriting its members.
By avoiding the possibility of latent "defined with no members" types,
we can be sure than whenever we already have a type in a cache (either a
definition or declaration), we can just return that. In the case of a
full definition, our work is done. In the case of a partial definition,
we must already be in the process of completing it. And in the case of a
declaration, the completed/vtable/etc callbacks can handle converting it
to a definition.
llvm-svn: 190122
2013-09-06 14:45:04 +08:00
|
|
|
return T;
|
2013-06-05 13:32:23 +08:00
|
|
|
}
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2013-08-16 04:49:17 +08:00
|
|
|
return CreateTypeDefinition(Ty);
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreateTypeDefinition(const RecordType *Ty) {
|
2013-08-16 04:49:17 +08:00
|
|
|
RecordDecl *RD = Ty->getDecl();
|
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
// Get overall information about the record type for the debug info.
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *DefUnit = getOrCreateFile(RD->getLocation());
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// Records and classes and unions can all be recursive. To handle them, we
|
|
|
|
// first generate a debug descriptor for the struct as a forward declaration.
|
|
|
|
// Then (if it is a definition) we go through and get debug info for all of
|
|
|
|
// its members. Finally, we create a descriptor for the complete type (which
|
|
|
|
// may refer to the forward decl if the struct is recursive) and replace all
|
|
|
|
// uses of the forward declaration with the final definition.
|
2015-07-25 04:34:41 +08:00
|
|
|
llvm::DICompositeType *FwdDecl = getOrCreateLimitedType(Ty, DefUnit);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2015-02-12 01:45:15 +08:00
|
|
|
const RecordDecl *D = RD->getDefinition();
|
|
|
|
if (!D || !D->isCompleteDefinition())
|
2012-12-18 22:30:41 +08:00
|
|
|
return FwdDecl;
|
|
|
|
|
2013-08-19 00:55:33 +08:00
|
|
|
if (const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD))
|
|
|
|
CollectContainingType(CXXDecl, FwdDecl);
|
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
// Push the struct on region stack.
|
2014-12-10 02:39:32 +08:00
|
|
|
LexicalBlockStack.emplace_back(&*FwdDecl);
|
|
|
|
RegionMap[Ty->getDecl()].reset(FwdDecl);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// Convert all the elements.
|
2014-12-10 02:39:32 +08:00
|
|
|
SmallVector<llvm::Metadata *, 16> EltTys;
|
2013-08-20 09:28:15 +08:00
|
|
|
// what about nested types?
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// Note: The split of CXXDecl information here is intentional, the
|
|
|
|
// gdb tests will depend on a certain ordering at printout. The debug
|
|
|
|
// information offsets are still correct if we merge them all together
|
|
|
|
// though.
|
|
|
|
const CXXRecordDecl *CXXDecl = dyn_cast<CXXRecordDecl>(RD);
|
|
|
|
if (CXXDecl) {
|
|
|
|
CollectCXXBases(CXXDecl, DefUnit, EltTys, FwdDecl);
|
|
|
|
CollectVTableInfo(CXXDecl, DefUnit, EltTys);
|
|
|
|
}
|
|
|
|
|
2013-01-16 09:22:32 +08:00
|
|
|
// Collect data fields (including static variables and any initializers).
|
2012-12-18 22:30:41 +08:00
|
|
|
CollectRecordFields(RD, DefUnit, EltTys, FwdDecl);
|
2013-10-12 02:16:51 +08:00
|
|
|
if (CXXDecl)
|
2012-12-18 22:30:41 +08:00
|
|
|
CollectCXXMemberFunctions(CXXDecl, DefUnit, EltTys, FwdDecl);
|
|
|
|
|
|
|
|
LexicalBlockStack.pop_back();
|
|
|
|
RegionMap.erase(Ty->getDecl());
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DINodeArray Elements = DBuilder.getOrCreateArray(EltTys);
|
2014-12-18 08:48:56 +08:00
|
|
|
DBuilder.replaceArrays(FwdDecl, Elements);
|
2013-04-02 04:33:18 +08:00
|
|
|
|
2015-02-12 01:45:15 +08:00
|
|
|
if (FwdDecl->isTemporary())
|
2015-04-17 00:36:45 +08:00
|
|
|
FwdDecl =
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::MDNode::replaceWithPermanent(llvm::TempDICompositeType(FwdDecl));
|
2015-02-12 01:45:15 +08:00
|
|
|
|
2014-12-10 02:39:32 +08:00
|
|
|
RegionMap[Ty->getDecl()].reset(FwdDecl);
|
2013-04-03 06:59:11 +08:00
|
|
|
return FwdDecl;
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreateType(const ObjCObjectType *Ty,
|
|
|
|
llvm::DIFile *Unit) {
|
2012-12-18 22:30:41 +08:00
|
|
|
// Ignore protocols.
|
|
|
|
return getOrCreateType(Ty->getBaseType(), Unit);
|
|
|
|
}
|
|
|
|
|
2013-06-07 09:10:45 +08:00
|
|
|
/// \return true if Getter has the default name for the property PD.
|
|
|
|
static bool hasDefaultGetterName(const ObjCPropertyDecl *PD,
|
|
|
|
const ObjCMethodDecl *Getter) {
|
|
|
|
assert(PD);
|
|
|
|
if (!Getter)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
assert(Getter->getDeclName().isObjCZeroArgSelector());
|
|
|
|
return PD->getName() ==
|
2014-10-27 07:40:33 +08:00
|
|
|
Getter->getDeclName().getObjCSelector().getNameForSlot(0);
|
2013-06-07 09:10:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// \return true if Setter has the default name for the property PD.
|
|
|
|
static bool hasDefaultSetterName(const ObjCPropertyDecl *PD,
|
|
|
|
const ObjCMethodDecl *Setter) {
|
|
|
|
assert(PD);
|
|
|
|
if (!Setter)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
assert(Setter->getDeclName().isObjCOneArgSelector());
|
2013-06-08 06:29:12 +08:00
|
|
|
return SelectorTable::constructSetterName(PD->getName()) ==
|
2014-10-27 07:40:33 +08:00
|
|
|
Setter->getDeclName().getObjCSelector().getNameForSlot(0);
|
2013-06-07 09:10:45 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreateType(const ObjCInterfaceType *Ty,
|
|
|
|
llvm::DIFile *Unit) {
|
2012-12-18 22:30:41 +08:00
|
|
|
ObjCInterfaceDecl *ID = Ty->getDecl();
|
|
|
|
if (!ID)
|
2015-04-21 02:51:48 +08:00
|
|
|
return nullptr;
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2015-09-12 01:23:08 +08:00
|
|
|
// Return a forward declaration if this type was imported from a clang module.
|
|
|
|
if (DebugTypeExtRefs && ID->isFromASTFile() && ID->getDefinition())
|
|
|
|
return DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
|
|
|
|
ID->getName(),
|
|
|
|
getDeclContextDescriptor(ID), Unit, 0);
|
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
// Get overall information about the record type for the debug info.
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *DefUnit = getOrCreateFile(ID->getLocation());
|
2012-12-18 22:30:41 +08:00
|
|
|
unsigned Line = getLineNumber(ID->getLocation());
|
2015-04-16 07:19:15 +08:00
|
|
|
auto RuntimeLang =
|
|
|
|
static_cast<llvm::dwarf::SourceLanguage>(TheCU->getSourceLanguage());
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// If this is just a forward declaration return a special forward-declaration
|
|
|
|
// debug type since we won't be able to lay out the entire type.
|
|
|
|
ObjCInterfaceDecl *Def = ID->getDefinition();
|
2014-05-06 07:23:53 +08:00
|
|
|
if (!Def || !Def->getImplementation()) {
|
2015-10-02 00:57:02 +08:00
|
|
|
llvm::DIScope *Mod = getParentModuleOrNull(ID);
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *FwdDecl = DBuilder.createReplaceableCompositeType(
|
2015-10-02 00:57:02 +08:00
|
|
|
llvm::dwarf::DW_TAG_structure_type, ID->getName(), Mod ? Mod : TheCU,
|
|
|
|
DefUnit, Line, RuntimeLang);
|
2014-05-06 07:23:53 +08:00
|
|
|
ObjCInterfaceCache.push_back(ObjCInterfaceCacheEntry(Ty, FwdDecl, Unit));
|
2012-12-18 22:30:41 +08:00
|
|
|
return FwdDecl;
|
|
|
|
}
|
|
|
|
|
2014-05-06 07:23:53 +08:00
|
|
|
return CreateTypeDefinition(Ty, Unit);
|
|
|
|
}
|
|
|
|
|
2015-07-01 01:39:51 +08:00
|
|
|
llvm::DIModule *
|
2015-09-19 07:01:45 +08:00
|
|
|
CGDebugInfo::getOrCreateModuleRef(ExternalASTSource::ASTSourceDescriptor Mod,
|
|
|
|
bool CreateSkeletonCU) {
|
2015-09-25 00:10:04 +08:00
|
|
|
// Use the Module pointer as the key into the cache. This is a
|
|
|
|
// nullptr if the "Module" is a PCH, which is safe because we don't
|
|
|
|
// support chained PCH debug info, so there can only be a single PCH.
|
|
|
|
const Module *M = Mod.getModuleOrNull();
|
2015-09-30 04:44:46 +08:00
|
|
|
auto ModRef = ModuleCache.find(M);
|
|
|
|
if (ModRef != ModuleCache.end())
|
|
|
|
return cast<llvm::DIModule>(ModRef->second);
|
2015-07-01 02:01:05 +08:00
|
|
|
|
|
|
|
// Macro definitions that were defined with "-D" on the command line.
|
|
|
|
SmallString<128> ConfigMacros;
|
|
|
|
{
|
|
|
|
llvm::raw_svector_ostream OS(ConfigMacros);
|
|
|
|
const auto &PPOpts = CGM.getPreprocessorOpts();
|
|
|
|
unsigned I = 0;
|
|
|
|
// Translate the macro definitions back into a commmand line.
|
|
|
|
for (auto &M : PPOpts.Macros) {
|
|
|
|
if (++I > 1)
|
|
|
|
OS << " ";
|
|
|
|
const std::string &Macro = M.first;
|
|
|
|
bool Undef = M.second;
|
|
|
|
OS << "\"-" << (Undef ? 'U' : 'D');
|
|
|
|
for (char c : Macro)
|
|
|
|
switch (c) {
|
|
|
|
case '\\' : OS << "\\\\"; break;
|
|
|
|
case '"' : OS << "\\\""; break;
|
|
|
|
default: OS << c;
|
|
|
|
}
|
|
|
|
OS << '\"';
|
2015-07-01 01:39:51 +08:00
|
|
|
}
|
|
|
|
}
|
2015-09-19 07:01:45 +08:00
|
|
|
|
2015-09-25 00:10:10 +08:00
|
|
|
bool IsRootModule = M ? !M->Parent : true;
|
|
|
|
if (CreateSkeletonCU && IsRootModule) {
|
2015-09-19 07:01:45 +08:00
|
|
|
llvm::DIBuilder DIB(CGM.getModule());
|
2015-09-25 00:10:10 +08:00
|
|
|
DIB.createCompileUnit(TheCU->getSourceLanguage(), Mod.getModuleName(),
|
2015-09-25 00:10:00 +08:00
|
|
|
Mod.getPath(), TheCU->getProducer(), true,
|
|
|
|
StringRef(), 0, Mod.getASTFile(),
|
|
|
|
llvm::DIBuilder::FullDebug, Mod.getSignature());
|
2015-09-19 07:01:45 +08:00
|
|
|
DIB.finalize();
|
2015-09-19 08:59:22 +08:00
|
|
|
}
|
2015-09-25 00:10:10 +08:00
|
|
|
llvm::DIModule *Parent =
|
|
|
|
IsRootModule ? nullptr
|
|
|
|
: getOrCreateModuleRef(
|
|
|
|
ExternalASTSource::ASTSourceDescriptor(*M->Parent),
|
|
|
|
CreateSkeletonCU);
|
2015-09-25 00:10:04 +08:00
|
|
|
llvm::DIModule *DIMod =
|
2015-09-25 00:10:10 +08:00
|
|
|
DBuilder.createModule(Parent, Mod.getModuleName(), ConfigMacros,
|
|
|
|
Mod.getPath(), CGM.getHeaderSearchOpts().Sysroot);
|
2015-09-30 04:44:46 +08:00
|
|
|
ModuleCache[M].reset(DIMod);
|
2015-09-25 00:10:04 +08:00
|
|
|
return DIMod;
|
2015-07-01 01:39:51 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreateTypeDefinition(const ObjCInterfaceType *Ty,
|
|
|
|
llvm::DIFile *Unit) {
|
2014-05-06 07:23:53 +08:00
|
|
|
ObjCInterfaceDecl *ID = Ty->getDecl();
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *DefUnit = getOrCreateFile(ID->getLocation());
|
2014-05-06 07:23:53 +08:00
|
|
|
unsigned Line = getLineNumber(ID->getLocation());
|
2015-04-16 07:19:15 +08:00
|
|
|
unsigned RuntimeLang = TheCU->getSourceLanguage();
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// Bit size, align and offset of the type.
|
|
|
|
uint64_t Size = CGM.getContext().getTypeSize(Ty);
|
|
|
|
uint64_t Align = CGM.getContext().getTypeAlign(Ty);
|
|
|
|
|
|
|
|
unsigned Flags = 0;
|
|
|
|
if (ID->getImplementation())
|
2015-04-30 00:40:08 +08:00
|
|
|
Flags |= llvm::DINode::FlagObjcClassComplete;
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2015-10-01 08:48:51 +08:00
|
|
|
llvm::DIScope *Mod = getParentModuleOrNull(ID);
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DICompositeType *RealDecl = DBuilder.createStructType(
|
2015-10-01 08:48:51 +08:00
|
|
|
Mod ? Mod : Unit, ID->getName(), DefUnit, Line, Size, Align, Flags,
|
|
|
|
nullptr, llvm::DINodeArray(), RuntimeLang);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2014-05-06 07:23:53 +08:00
|
|
|
QualType QTy(Ty, 0);
|
2014-12-10 02:39:32 +08:00
|
|
|
TypeCache[QTy.getAsOpaquePtr()].reset(RealDecl);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2013-07-15 05:00:07 +08:00
|
|
|
// Push the struct on region stack.
|
2015-04-17 00:36:45 +08:00
|
|
|
LexicalBlockStack.emplace_back(RealDecl);
|
2014-12-10 02:39:32 +08:00
|
|
|
RegionMap[Ty->getDecl()].reset(RealDecl);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// Convert all the elements.
|
2014-12-10 02:39:32 +08:00
|
|
|
SmallVector<llvm::Metadata *, 16> EltTys;
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
ObjCInterfaceDecl *SClass = ID->getSuperClass();
|
|
|
|
if (SClass) {
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *SClassTy =
|
2014-10-27 07:40:33 +08:00
|
|
|
getOrCreateType(CGM.getContext().getObjCInterfaceType(SClass), Unit);
|
2015-04-16 07:48:50 +08:00
|
|
|
if (!SClassTy)
|
2015-04-21 02:51:48 +08:00
|
|
|
return nullptr;
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *InhTag = DBuilder.createInheritance(RealDecl, SClassTy, 0, 0);
|
2012-12-18 22:30:41 +08:00
|
|
|
EltTys.push_back(InhTag);
|
|
|
|
}
|
|
|
|
|
2013-07-15 05:00:07 +08:00
|
|
|
// Create entries for all of the properties.
|
2015-12-05 03:14:14 +08:00
|
|
|
auto AddProperty = [&](const ObjCPropertyDecl *PD) {
|
2012-12-18 22:30:41 +08:00
|
|
|
SourceLocation Loc = PD->getLocation();
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *PUnit = getOrCreateFile(Loc);
|
2012-12-18 22:30:41 +08:00
|
|
|
unsigned PLine = getLineNumber(Loc);
|
|
|
|
ObjCMethodDecl *Getter = PD->getGetterMethodDecl();
|
|
|
|
ObjCMethodDecl *Setter = PD->getSetterMethodDecl();
|
2014-10-27 07:40:33 +08:00
|
|
|
llvm::MDNode *PropertyNode = DBuilder.createObjCProperty(
|
|
|
|
PD->getName(), PUnit, PLine,
|
|
|
|
hasDefaultGetterName(PD, Getter) ? ""
|
|
|
|
: getSelectorName(PD->getGetterName()),
|
|
|
|
hasDefaultSetterName(PD, Setter) ? ""
|
|
|
|
: getSelectorName(PD->getSetterName()),
|
|
|
|
PD->getPropertyAttributes(), getOrCreateType(PD->getType(), PUnit));
|
2012-12-18 22:30:41 +08:00
|
|
|
EltTys.push_back(PropertyNode);
|
2015-12-05 03:14:14 +08:00
|
|
|
};
|
|
|
|
{
|
|
|
|
llvm::SmallPtrSet<const IdentifierInfo*, 16> PropertySet;
|
2015-12-05 03:35:45 +08:00
|
|
|
for (const ObjCCategoryDecl *ClassExt : ID->known_extensions())
|
|
|
|
for (auto *PD : ClassExt->properties()) {
|
|
|
|
PropertySet.insert(PD->getIdentifier());
|
|
|
|
AddProperty(PD);
|
|
|
|
}
|
2015-12-05 03:14:14 +08:00
|
|
|
for (const auto *PD : ID->properties()) {
|
|
|
|
// Don't emit duplicate metadata for properties that were already in a
|
|
|
|
// class extension.
|
|
|
|
if (!PropertySet.insert(PD->getIdentifier()).second)
|
|
|
|
continue;
|
|
|
|
AddProperty(PD);
|
|
|
|
}
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const ASTRecordLayout &RL = CGM.getContext().getASTObjCInterfaceLayout(ID);
|
|
|
|
unsigned FieldNo = 0;
|
|
|
|
for (ObjCIvarDecl *Field = ID->all_declared_ivar_begin(); Field;
|
|
|
|
Field = Field->getNextIvar(), ++FieldNo) {
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *FieldTy = getOrCreateType(Field->getType(), Unit);
|
2015-04-16 07:48:50 +08:00
|
|
|
if (!FieldTy)
|
2015-04-21 02:51:48 +08:00
|
|
|
return nullptr;
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
StringRef FieldName = Field->getName();
|
|
|
|
|
|
|
|
// Ignore unnamed fields.
|
|
|
|
if (FieldName.empty())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Get the location for the field.
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *FieldDefUnit = getOrCreateFile(Field->getLocation());
|
2012-12-18 22:30:41 +08:00
|
|
|
unsigned FieldLine = getLineNumber(Field->getLocation());
|
|
|
|
QualType FType = Field->getType();
|
|
|
|
uint64_t FieldSize = 0;
|
|
|
|
unsigned FieldAlign = 0;
|
|
|
|
|
|
|
|
if (!FType->isIncompleteArrayType()) {
|
|
|
|
|
|
|
|
// Bit size, align and offset of the type.
|
|
|
|
FieldSize = Field->isBitField()
|
2013-07-15 05:00:07 +08:00
|
|
|
? Field->getBitWidthValue(CGM.getContext())
|
|
|
|
: CGM.getContext().getTypeSize(FType);
|
2012-12-18 22:30:41 +08:00
|
|
|
FieldAlign = CGM.getContext().getTypeAlign(FType);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t FieldOffset;
|
|
|
|
if (CGM.getLangOpts().ObjCRuntime.isNonFragile()) {
|
|
|
|
// We don't know the runtime offset of an ivar if we're using the
|
|
|
|
// non-fragile ABI. For bitfields, use the bit offset into the first
|
|
|
|
// byte of storage of the bitfield. For other fields, use zero.
|
|
|
|
if (Field->isBitField()) {
|
2014-10-27 07:40:33 +08:00
|
|
|
FieldOffset =
|
|
|
|
CGM.getObjCRuntime().ComputeBitfieldBitOffset(CGM, ID, Field);
|
2012-12-18 22:30:41 +08:00
|
|
|
FieldOffset %= CGM.getContext().getCharWidth();
|
|
|
|
} else {
|
|
|
|
FieldOffset = 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
FieldOffset = RL.getFieldOffset(FieldNo);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned Flags = 0;
|
|
|
|
if (Field->getAccessControl() == ObjCIvarDecl::Protected)
|
2015-04-30 00:40:08 +08:00
|
|
|
Flags = llvm::DINode::FlagProtected;
|
2012-12-18 22:30:41 +08:00
|
|
|
else if (Field->getAccessControl() == ObjCIvarDecl::Private)
|
2015-04-30 00:40:08 +08:00
|
|
|
Flags = llvm::DINode::FlagPrivate;
|
2014-08-30 06:44:27 +08:00
|
|
|
else if (Field->getAccessControl() == ObjCIvarDecl::Public)
|
2015-04-30 00:40:08 +08:00
|
|
|
Flags = llvm::DINode::FlagPublic;
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2014-05-21 13:09:00 +08:00
|
|
|
llvm::MDNode *PropertyNode = nullptr;
|
2012-12-18 22:30:41 +08:00
|
|
|
if (ObjCImplementationDecl *ImpD = ID->getImplementation()) {
|
2013-05-16 08:45:12 +08:00
|
|
|
if (ObjCPropertyImplDecl *PImpD =
|
2014-10-27 07:40:33 +08:00
|
|
|
ImpD->FindPropertyImplIvarDecl(Field->getIdentifier())) {
|
2012-12-18 22:30:41 +08:00
|
|
|
if (ObjCPropertyDecl *PD = PImpD->getPropertyDecl()) {
|
2013-02-22 06:35:08 +08:00
|
|
|
SourceLocation Loc = PD->getLocation();
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *PUnit = getOrCreateFile(Loc);
|
2013-02-22 06:35:08 +08:00
|
|
|
unsigned PLine = getLineNumber(Loc);
|
2012-12-18 22:30:41 +08:00
|
|
|
ObjCMethodDecl *Getter = PD->getGetterMethodDecl();
|
|
|
|
ObjCMethodDecl *Setter = PD->getSetterMethodDecl();
|
2014-10-27 07:40:33 +08:00
|
|
|
PropertyNode = DBuilder.createObjCProperty(
|
|
|
|
PD->getName(), PUnit, PLine,
|
|
|
|
hasDefaultGetterName(PD, Getter) ? "" : getSelectorName(
|
|
|
|
PD->getGetterName()),
|
|
|
|
hasDefaultSetterName(PD, Setter) ? "" : getSelectorName(
|
|
|
|
PD->getSetterName()),
|
|
|
|
PD->getPropertyAttributes(),
|
|
|
|
getOrCreateType(PD->getType(), PUnit));
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-10-27 07:40:33 +08:00
|
|
|
FieldTy = DBuilder.createObjCIVar(FieldName, FieldDefUnit, FieldLine,
|
|
|
|
FieldSize, FieldAlign, FieldOffset, Flags,
|
|
|
|
FieldTy, PropertyNode);
|
2012-12-18 22:30:41 +08:00
|
|
|
EltTys.push_back(FieldTy);
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DINodeArray Elements = DBuilder.getOrCreateArray(EltTys);
|
2014-12-18 08:48:56 +08:00
|
|
|
DBuilder.replaceArrays(RealDecl, Elements);
|
2013-03-07 06:03:30 +08:00
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
LexicalBlockStack.pop_back();
|
2013-04-03 06:59:11 +08:00
|
|
|
return RealDecl;
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreateType(const VectorType *Ty,
|
|
|
|
llvm::DIFile *Unit) {
|
|
|
|
llvm::DIType *ElementTy = getOrCreateType(Ty->getElementType(), Unit);
|
2012-12-18 22:30:41 +08:00
|
|
|
int64_t Count = Ty->getNumElements();
|
|
|
|
if (Count == 0)
|
|
|
|
// If number of elements are not known then this is an unbounded array.
|
|
|
|
// Use Count == -1 to express such arrays.
|
|
|
|
Count = -1;
|
|
|
|
|
2014-12-10 02:39:32 +08:00
|
|
|
llvm::Metadata *Subscript = DBuilder.getOrCreateSubrange(0, Count);
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DINodeArray SubscriptArray = DBuilder.getOrCreateArray(Subscript);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
uint64_t Size = CGM.getContext().getTypeSize(Ty);
|
|
|
|
uint64_t Align = CGM.getContext().getTypeAlign(Ty);
|
|
|
|
|
|
|
|
return DBuilder.createVectorType(Size, Align, ElementTy, SubscriptArray);
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreateType(const ArrayType *Ty, llvm::DIFile *Unit) {
|
2012-12-18 22:30:41 +08:00
|
|
|
uint64_t Size;
|
|
|
|
uint64_t Align;
|
|
|
|
|
|
|
|
// FIXME: make getTypeAlign() aware of VLAs and incomplete array types
|
|
|
|
if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(Ty)) {
|
|
|
|
Size = 0;
|
|
|
|
Align =
|
2014-10-27 07:40:33 +08:00
|
|
|
CGM.getContext().getTypeAlign(CGM.getContext().getBaseElementType(VAT));
|
2012-12-18 22:30:41 +08:00
|
|
|
} else if (Ty->isIncompleteArrayType()) {
|
|
|
|
Size = 0;
|
|
|
|
if (Ty->getElementType()->isIncompleteType())
|
|
|
|
Align = 0;
|
|
|
|
else
|
|
|
|
Align = CGM.getContext().getTypeAlign(Ty->getElementType());
|
2013-05-10 04:48:12 +08:00
|
|
|
} else if (Ty->isIncompleteType()) {
|
2012-12-18 22:30:41 +08:00
|
|
|
Size = 0;
|
|
|
|
Align = 0;
|
|
|
|
} else {
|
|
|
|
// Size and align of the whole array, not the element type.
|
|
|
|
Size = CGM.getContext().getTypeSize(Ty);
|
|
|
|
Align = CGM.getContext().getTypeAlign(Ty);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the dimensions of the array. FIXME: This loses CV qualifiers from
|
|
|
|
// interior arrays, do we care? Why aren't nested arrays represented the
|
|
|
|
// obvious/recursive way?
|
2014-12-10 02:39:32 +08:00
|
|
|
SmallVector<llvm::Metadata *, 8> Subscripts;
|
2012-12-18 22:30:41 +08:00
|
|
|
QualType EltTy(Ty, 0);
|
|
|
|
while ((Ty = dyn_cast<ArrayType>(EltTy))) {
|
|
|
|
// If the number of elements is known, then count is that number. Otherwise,
|
|
|
|
// it's -1. This allows us to represent a subrange with an array of 0
|
|
|
|
// elements, like this:
|
|
|
|
//
|
|
|
|
// struct foo {
|
|
|
|
// int x[0];
|
|
|
|
// };
|
2014-10-27 07:40:33 +08:00
|
|
|
int64_t Count = -1; // Count == -1 is an unbounded array.
|
2012-12-18 22:30:41 +08:00
|
|
|
if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(Ty))
|
|
|
|
Count = CAT->getSize().getZExtValue();
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
// FIXME: Verify this is right for VLAs.
|
|
|
|
Subscripts.push_back(DBuilder.getOrCreateSubrange(0, Count));
|
|
|
|
EltTy = Ty->getElementType();
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DINodeArray SubscriptArray = DBuilder.getOrCreateArray(Subscripts);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2015-04-21 02:51:48 +08:00
|
|
|
return DBuilder.createArrayType(Size, Align, getOrCreateType(EltTy, Unit),
|
|
|
|
SubscriptArray);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreateType(const LValueReferenceType *Ty,
|
|
|
|
llvm::DIFile *Unit) {
|
2014-10-27 07:40:33 +08:00
|
|
|
return CreatePointerLikeType(llvm::dwarf::DW_TAG_reference_type, Ty,
|
|
|
|
Ty->getPointeeType(), Unit);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreateType(const RValueReferenceType *Ty,
|
|
|
|
llvm::DIFile *Unit) {
|
2014-10-27 07:40:33 +08:00
|
|
|
return CreatePointerLikeType(llvm::dwarf::DW_TAG_rvalue_reference_type, Ty,
|
|
|
|
Ty->getPointeeType(), Unit);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreateType(const MemberPointerType *Ty,
|
|
|
|
llvm::DIFile *U) {
|
2015-09-11 05:52:00 +08:00
|
|
|
uint64_t Size =
|
|
|
|
!Ty->isIncompleteType() ? CGM.getContext().getTypeSize(Ty) : 0;
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *ClassType = getOrCreateType(QualType(Ty->getClass(), 0), U);
|
2015-04-24 09:25:08 +08:00
|
|
|
if (Ty->isMemberDataPointerType())
|
2013-01-20 03:20:56 +08:00
|
|
|
return DBuilder.createMemberPointerType(
|
2015-05-27 05:54:24 +08:00
|
|
|
getOrCreateType(Ty->getPointeeType(), U), ClassType, Size);
|
2013-12-19 09:38:47 +08:00
|
|
|
|
|
|
|
const FunctionProtoType *FPT =
|
2014-10-27 07:40:33 +08:00
|
|
|
Ty->getPointeeType()->getAs<FunctionProtoType>();
|
|
|
|
return DBuilder.createMemberPointerType(
|
|
|
|
getOrCreateInstanceMethodType(CGM.getContext().getPointerType(QualType(
|
|
|
|
Ty->getClass(), FPT->getTypeQuals())),
|
|
|
|
FPT, U),
|
2015-05-27 05:54:24 +08:00
|
|
|
ClassType, Size);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreateType(const AtomicType *Ty, llvm::DIFile *U) {
|
2012-12-18 22:30:41 +08:00
|
|
|
// Ignore the atomic wrapping
|
|
|
|
// FIXME: What is the correct representation?
|
|
|
|
return getOrCreateType(Ty->getValueType(), U);
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreateEnumType(const EnumType *Ty) {
|
2013-08-29 05:20:28 +08:00
|
|
|
const EnumDecl *ED = Ty->getDecl();
|
2015-09-12 01:23:08 +08:00
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
uint64_t Size = 0;
|
|
|
|
uint64_t Align = 0;
|
|
|
|
if (!ED->getTypeForDecl()->isIncompleteType()) {
|
|
|
|
Size = CGM.getContext().getTypeSize(ED->getTypeForDecl());
|
|
|
|
Align = CGM.getContext().getTypeAlign(ED->getTypeForDecl());
|
|
|
|
}
|
|
|
|
|
2013-08-30 07:19:58 +08:00
|
|
|
SmallString<256> FullName = getUniqueTagTypeName(Ty, CGM, TheCU);
|
|
|
|
|
2015-09-12 01:23:08 +08:00
|
|
|
bool isImportedFromModule =
|
|
|
|
DebugTypeExtRefs && ED->isFromASTFile() && ED->getDefinition();
|
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
// If this is just a forward declaration, construct an appropriately
|
|
|
|
// marked node and just return it.
|
2015-09-12 01:23:08 +08:00
|
|
|
if (isImportedFromModule || !ED->getDefinition()) {
|
2015-09-11 02:39:45 +08:00
|
|
|
llvm::DIScope *EDContext = getDeclContextDescriptor(ED);
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *DefUnit = getOrCreateFile(ED->getLocation());
|
2012-12-18 22:30:41 +08:00
|
|
|
unsigned Line = getLineNumber(ED->getLocation());
|
|
|
|
StringRef EDName = ED->getName();
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *RetTy = DBuilder.createReplaceableCompositeType(
|
2014-05-06 11:42:01 +08:00
|
|
|
llvm::dwarf::DW_TAG_enumeration_type, EDName, EDContext, DefUnit, Line,
|
2015-04-30 00:40:08 +08:00
|
|
|
0, Size, Align, llvm::DINode::FlagFwdDecl, FullName);
|
2014-12-10 02:39:32 +08:00
|
|
|
ReplaceMap.emplace_back(
|
|
|
|
std::piecewise_construct, std::make_tuple(Ty),
|
|
|
|
std::make_tuple(static_cast<llvm::Metadata *>(RetTy)));
|
2014-05-06 11:42:01 +08:00
|
|
|
return RetTy;
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2014-05-07 02:35:21 +08:00
|
|
|
return CreateTypeDefinition(Ty);
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreateTypeDefinition(const EnumType *Ty) {
|
2014-05-07 02:35:21 +08:00
|
|
|
const EnumDecl *ED = Ty->getDecl();
|
|
|
|
uint64_t Size = 0;
|
|
|
|
uint64_t Align = 0;
|
|
|
|
if (!ED->getTypeForDecl()->isIncompleteType()) {
|
|
|
|
Size = CGM.getContext().getTypeSize(ED->getTypeForDecl());
|
|
|
|
Align = CGM.getContext().getTypeAlign(ED->getTypeForDecl());
|
|
|
|
}
|
|
|
|
|
|
|
|
SmallString<256> FullName = getUniqueTagTypeName(Ty, CGM, TheCU);
|
|
|
|
|
2015-04-22 02:43:54 +08:00
|
|
|
// Create elements for each enumerator.
|
2014-12-10 02:39:32 +08:00
|
|
|
SmallVector<llvm::Metadata *, 16> Enumerators;
|
2012-12-18 22:30:41 +08:00
|
|
|
ED = ED->getDefinition();
|
2014-03-09 02:45:14 +08:00
|
|
|
for (const auto *Enum : ED->enumerators()) {
|
2014-10-27 07:40:33 +08:00
|
|
|
Enumerators.push_back(DBuilder.createEnumerator(
|
|
|
|
Enum->getName(), Enum->getInitVal().getSExtValue()));
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Return a CompositeType for the enum itself.
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DINodeArray EltArray = DBuilder.getOrCreateArray(Enumerators);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *DefUnit = getOrCreateFile(ED->getLocation());
|
2012-12-18 22:30:41 +08:00
|
|
|
unsigned Line = getLineNumber(ED->getLocation());
|
2015-09-11 02:39:45 +08:00
|
|
|
llvm::DIScope *EnumContext = getDeclContextDescriptor(ED);
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *ClassTy =
|
2015-04-21 02:51:48 +08:00
|
|
|
ED->isFixed() ? getOrCreateType(ED->getIntegerType(), DefUnit) : nullptr;
|
|
|
|
return DBuilder.createEnumerationType(EnumContext, ED->getName(), DefUnit,
|
|
|
|
Line, Size, Align, EltArray, ClassTy,
|
|
|
|
FullName);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2013-01-21 12:37:12 +08:00
|
|
|
static QualType UnwrapTypeForDebugInfo(QualType T, const ASTContext &C) {
|
|
|
|
Qualifiers Quals;
|
2012-12-18 22:30:41 +08:00
|
|
|
do {
|
2013-09-27 05:35:50 +08:00
|
|
|
Qualifiers InnerQuals = T.getLocalQualifiers();
|
|
|
|
// Qualifiers::operator+() doesn't like it if you add a Qualifier
|
|
|
|
// that is already there.
|
|
|
|
Quals += Qualifiers::removeCommonQualifiers(Quals, InnerQuals);
|
|
|
|
Quals += InnerQuals;
|
2012-12-18 22:30:41 +08:00
|
|
|
QualType LastT = T;
|
|
|
|
switch (T->getTypeClass()) {
|
|
|
|
default:
|
2013-01-21 12:37:12 +08:00
|
|
|
return C.getQualifiedType(T.getTypePtr(), Quals);
|
2014-04-07 01:14:06 +08:00
|
|
|
case Type::TemplateSpecialization: {
|
|
|
|
const auto *Spec = cast<TemplateSpecializationType>(T);
|
|
|
|
if (Spec->isTypeAlias())
|
|
|
|
return C.getQualifiedType(T.getTypePtr(), Quals);
|
|
|
|
T = Spec->desugar();
|
2014-10-27 07:40:33 +08:00
|
|
|
break;
|
|
|
|
}
|
2012-12-18 22:30:41 +08:00
|
|
|
case Type::TypeOfExpr:
|
|
|
|
T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType();
|
|
|
|
break;
|
|
|
|
case Type::TypeOf:
|
|
|
|
T = cast<TypeOfType>(T)->getUnderlyingType();
|
|
|
|
break;
|
|
|
|
case Type::Decltype:
|
|
|
|
T = cast<DecltypeType>(T)->getUnderlyingType();
|
|
|
|
break;
|
|
|
|
case Type::UnaryTransform:
|
|
|
|
T = cast<UnaryTransformType>(T)->getUnderlyingType();
|
|
|
|
break;
|
|
|
|
case Type::Attributed:
|
|
|
|
T = cast<AttributedType>(T)->getEquivalentType();
|
|
|
|
break;
|
|
|
|
case Type::Elaborated:
|
|
|
|
T = cast<ElaboratedType>(T)->getNamedType();
|
|
|
|
break;
|
|
|
|
case Type::Paren:
|
|
|
|
T = cast<ParenType>(T)->getInnerType();
|
|
|
|
break;
|
2013-01-21 12:37:12 +08:00
|
|
|
case Type::SubstTemplateTypeParm:
|
2012-12-18 22:30:41 +08:00
|
|
|
T = cast<SubstTemplateTypeParmType>(T)->getReplacementType();
|
|
|
|
break;
|
|
|
|
case Type::Auto:
|
2013-05-25 05:24:35 +08:00
|
|
|
QualType DT = cast<AutoType>(T)->getDeducedType();
|
PR16091 continued: Debug Info for member functions with undeduced return types.
So DWARF5 specs out auto deduced return types as DW_TAG_unspecified_type
with DW_AT_name "auto", and GCC implements this somewhat, but it
presents a few problems to do this with Clang.
GCC's implementation only applies to member functions where the auto
return type isn't deduced immediately (ie: member functions of templates
or member functions defined out of line). In the common case of an
inline deduced return type function, GCC emits the DW_AT_type as the
deduced return type.
Currently GDB doesn't seem to behave too well with this debug info - it
treats the return type as 'void', even though the definition of the
function has the correctly deduced return type (I guess it sees the
return type the declaration has, doesn't understand it, and assumes
void). This means the function's ABI might be broken (non-trivial return
types, etc), etc.
Clang, on the other hand doesn't track this particular case of a
deducable return type that is deduced immediately versus one that is
deduced 'later'. So if we implement the DWARF5 representation, all
deducible return type functions would get adverse GDB behavior
(including deduced return type lambda functions, inline deduced return
type functions, etc).
Also, we can't just do this for auto types that are not deduced -
because Clang marks even the declaration's return type as deduced (&
provides the underlying type) once a definition is seen that allows the
deduction. So we have to ignore even deduced types - but we can't do
that for auto variables (because this representation only applies to
function declarations - variables and function definitions need the real
type so the function can be called, etc) so we'd need to add an extra
flag to the type unwrapping/creation code to indicate when we want to
see through deduced types and when we don't. It's also not as simple as
just checking at the top level when building a function type (for one
thing, we reuse the function type building for building function pointer
types which might also have 'auto' in them - but be the type of a
variable instead) because the auto might be arbitrarily deeply nested
("auto &", "auto (*)()", etc...)
So, with all that said, let's do the simple thing that works in existing
debuggers for now and treat these functions the same way we do function
templates and implicit special members: omit them from the member list,
since they can't be correctly called anyway (without knowing the return
type the ABI isn't know and a function call could put the arguments in
the wrong place) so they're not much use to the user.
At some point in the future, when GDB understands the DWARF5
representation better it might be worth plumbing through the extra type
builder handling to avoid looking through AutoType for some callers,
etc...
llvm-svn: 221704
2014-11-12 04:44:45 +08:00
|
|
|
assert(!DT.isNull() && "Undeduced types shouldn't reach here.");
|
2013-05-25 05:24:35 +08:00
|
|
|
T = DT;
|
2012-12-18 22:30:41 +08:00
|
|
|
break;
|
|
|
|
}
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
assert(T != LastT && "Type unwrapping failed to unwrap!");
|
2013-01-21 18:51:28 +08:00
|
|
|
(void)LastT;
|
2012-12-18 22:30:41 +08:00
|
|
|
} while (true);
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::getTypeOrNull(QualType Ty) {
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// Unwrap the type as needed for debug information.
|
2013-01-21 12:37:12 +08:00
|
|
|
Ty = UnwrapTypeForDebugInfo(Ty, CGM.getContext());
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2014-05-06 11:42:01 +08:00
|
|
|
auto it = TypeCache.find(Ty.getAsOpaquePtr());
|
2012-12-18 22:30:41 +08:00
|
|
|
if (it != TypeCache.end()) {
|
|
|
|
// Verify that the debug info still exists.
|
2014-12-10 02:39:32 +08:00
|
|
|
if (llvm::Metadata *V = it->second)
|
2015-04-30 00:40:08 +08:00
|
|
|
return cast<llvm::DIType>(V);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-07 07:21:33 +08:00
|
|
|
return nullptr;
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2014-03-04 07:48:23 +08:00
|
|
|
void CGDebugInfo::completeTemplateDefinition(
|
|
|
|
const ClassTemplateSpecializationDecl &SD) {
|
2014-03-05 06:01:08 +08:00
|
|
|
if (DebugKind <= CodeGenOptions::DebugLineTablesOnly)
|
|
|
|
return;
|
|
|
|
|
2014-03-04 07:48:23 +08:00
|
|
|
completeClassData(&SD);
|
|
|
|
// In case this type has no member function definitions being emitted, ensure
|
|
|
|
// it is retained
|
|
|
|
RetainedTypes.push_back(CGM.getContext().getRecordType(&SD).getAsOpaquePtr());
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::getOrCreateType(QualType Ty, llvm::DIFile *Unit) {
|
2012-12-18 22:30:41 +08:00
|
|
|
if (Ty.isNull())
|
2015-04-21 02:51:48 +08:00
|
|
|
return nullptr;
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// Unwrap the type as needed for debug information.
|
2013-01-21 12:37:12 +08:00
|
|
|
Ty = UnwrapTypeForDebugInfo(Ty, CGM.getContext());
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2015-04-21 02:51:48 +08:00
|
|
|
if (auto *T = getTypeOrNull(Ty))
|
2012-12-18 22:30:41 +08:00
|
|
|
return T;
|
|
|
|
|
2015-09-12 01:23:03 +08:00
|
|
|
llvm::DIType *Res = CreateTypeNode(Ty, Unit);
|
2015-09-12 01:23:08 +08:00
|
|
|
void* TyPtr = Ty.getAsOpaquePtr();
|
2013-03-12 02:33:46 +08:00
|
|
|
|
|
|
|
// And update the type cache.
|
2014-12-10 02:39:32 +08:00
|
|
|
TypeCache[TyPtr].reset(Res);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
return Res;
|
|
|
|
}
|
|
|
|
|
2015-09-12 01:23:08 +08:00
|
|
|
llvm::DIModule *CGDebugInfo::getParentModuleOrNull(const Decl *D) {
|
2015-10-03 01:36:14 +08:00
|
|
|
// A forward declaration inside a module header does not belong to the module.
|
|
|
|
if (isa<RecordDecl>(D) && !cast<RecordDecl>(D)->getDefinition())
|
|
|
|
return nullptr;
|
2015-09-22 01:48:37 +08:00
|
|
|
if (DebugTypeExtRefs && D->isFromASTFile()) {
|
|
|
|
// Record a reference to an imported clang module or precompiled header.
|
|
|
|
auto *Reader = CGM.getContext().getExternalSource();
|
|
|
|
auto Idx = D->getOwningModuleID();
|
|
|
|
auto Info = Reader->getSourceDescriptor(Idx);
|
|
|
|
if (Info)
|
|
|
|
return getOrCreateModuleRef(*Info, /*SkeletonCU=*/true);
|
|
|
|
} else if (ClangModuleMap) {
|
2015-09-21 00:51:35 +08:00
|
|
|
// We are building a clang module or a precompiled header.
|
|
|
|
//
|
|
|
|
// TODO: When D is a CXXRecordDecl or a C++ Enum, the ODR applies
|
|
|
|
// and it wouldn't be necessary to specify the parent scope
|
|
|
|
// because the type is already unique by definition (it would look
|
|
|
|
// like the output of -fno-standalone-debug). On the other hand,
|
|
|
|
// the parent scope helps a consumer to quickly locate the object
|
|
|
|
// file where the type's definition is located, so it might be
|
|
|
|
// best to make this behavior a command line or debugger tuning
|
|
|
|
// option.
|
|
|
|
FullSourceLoc Loc(D->getLocation(), CGM.getContext().getSourceManager());
|
|
|
|
if (Module *M = ClangModuleMap->inferModuleFromLocation(Loc)) {
|
|
|
|
auto Info = ExternalASTSource::ASTSourceDescriptor(*M);
|
|
|
|
return getOrCreateModuleRef(Info, /*SkeletonCU=*/false);
|
|
|
|
}
|
|
|
|
}
|
2015-09-12 01:23:08 +08:00
|
|
|
|
2015-09-21 00:51:35 +08:00
|
|
|
return nullptr;
|
2015-09-12 01:23:08 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreateTypeNode(QualType Ty, llvm::DIFile *Unit) {
|
2012-12-18 22:30:41 +08:00
|
|
|
// Handle qualifiers, which recursively handles what they refer to.
|
|
|
|
if (Ty.hasLocalQualifiers())
|
2013-09-05 06:03:57 +08:00
|
|
|
return CreateQualifiedType(Ty, Unit);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// Work out details of type.
|
|
|
|
switch (Ty->getTypeClass()) {
|
|
|
|
#define TYPE(Class, Base)
|
|
|
|
#define ABSTRACT_TYPE(Class, Base)
|
|
|
|
#define NON_CANONICAL_TYPE(Class, Base)
|
|
|
|
#define DEPENDENT_TYPE(Class, Base) case Type::Class:
|
|
|
|
#include "clang/AST/TypeNodes.def"
|
|
|
|
llvm_unreachable("Dependent types cannot show up in debug information");
|
|
|
|
|
|
|
|
case Type::ExtVector:
|
|
|
|
case Type::Vector:
|
|
|
|
return CreateType(cast<VectorType>(Ty), Unit);
|
|
|
|
case Type::ObjCObjectPointer:
|
|
|
|
return CreateType(cast<ObjCObjectPointerType>(Ty), Unit);
|
|
|
|
case Type::ObjCObject:
|
|
|
|
return CreateType(cast<ObjCObjectType>(Ty), Unit);
|
|
|
|
case Type::ObjCInterface:
|
|
|
|
return CreateType(cast<ObjCInterfaceType>(Ty), Unit);
|
|
|
|
case Type::Builtin:
|
|
|
|
return CreateType(cast<BuiltinType>(Ty));
|
|
|
|
case Type::Complex:
|
|
|
|
return CreateType(cast<ComplexType>(Ty));
|
|
|
|
case Type::Pointer:
|
|
|
|
return CreateType(cast<PointerType>(Ty), Unit);
|
2013-12-05 09:23:43 +08:00
|
|
|
case Type::Adjusted:
|
2013-06-25 01:51:48 +08:00
|
|
|
case Type::Decayed:
|
2013-12-05 09:23:43 +08:00
|
|
|
// Decayed and adjusted types use the adjusted type in LLVM and DWARF.
|
2013-06-25 01:51:48 +08:00
|
|
|
return CreateType(
|
2013-12-05 09:23:43 +08:00
|
|
|
cast<PointerType>(cast<AdjustedType>(Ty)->getAdjustedType()), Unit);
|
2012-12-18 22:30:41 +08:00
|
|
|
case Type::BlockPointer:
|
|
|
|
return CreateType(cast<BlockPointerType>(Ty), Unit);
|
|
|
|
case Type::Typedef:
|
2013-09-05 06:03:57 +08:00
|
|
|
return CreateType(cast<TypedefType>(Ty), Unit);
|
2012-12-18 22:30:41 +08:00
|
|
|
case Type::Record:
|
2013-09-05 06:03:57 +08:00
|
|
|
return CreateType(cast<RecordType>(Ty));
|
2012-12-18 22:30:41 +08:00
|
|
|
case Type::Enum:
|
2013-08-29 05:20:28 +08:00
|
|
|
return CreateEnumType(cast<EnumType>(Ty));
|
2012-12-18 22:30:41 +08:00
|
|
|
case Type::FunctionProto:
|
|
|
|
case Type::FunctionNoProto:
|
|
|
|
return CreateType(cast<FunctionType>(Ty), Unit);
|
|
|
|
case Type::ConstantArray:
|
|
|
|
case Type::VariableArray:
|
|
|
|
case Type::IncompleteArray:
|
|
|
|
return CreateType(cast<ArrayType>(Ty), Unit);
|
|
|
|
|
|
|
|
case Type::LValueReference:
|
|
|
|
return CreateType(cast<LValueReferenceType>(Ty), Unit);
|
|
|
|
case Type::RValueReference:
|
|
|
|
return CreateType(cast<RValueReferenceType>(Ty), Unit);
|
|
|
|
|
|
|
|
case Type::MemberPointer:
|
|
|
|
return CreateType(cast<MemberPointerType>(Ty), Unit);
|
|
|
|
|
|
|
|
case Type::Atomic:
|
|
|
|
return CreateType(cast<AtomicType>(Ty), Unit);
|
|
|
|
|
|
|
|
case Type::TemplateSpecialization:
|
2014-04-07 01:14:06 +08:00
|
|
|
return CreateType(cast<TemplateSpecializationType>(Ty), Unit);
|
|
|
|
|
PR16091 continued: Debug Info for member functions with undeduced return types.
So DWARF5 specs out auto deduced return types as DW_TAG_unspecified_type
with DW_AT_name "auto", and GCC implements this somewhat, but it
presents a few problems to do this with Clang.
GCC's implementation only applies to member functions where the auto
return type isn't deduced immediately (ie: member functions of templates
or member functions defined out of line). In the common case of an
inline deduced return type function, GCC emits the DW_AT_type as the
deduced return type.
Currently GDB doesn't seem to behave too well with this debug info - it
treats the return type as 'void', even though the definition of the
function has the correctly deduced return type (I guess it sees the
return type the declaration has, doesn't understand it, and assumes
void). This means the function's ABI might be broken (non-trivial return
types, etc), etc.
Clang, on the other hand doesn't track this particular case of a
deducable return type that is deduced immediately versus one that is
deduced 'later'. So if we implement the DWARF5 representation, all
deducible return type functions would get adverse GDB behavior
(including deduced return type lambda functions, inline deduced return
type functions, etc).
Also, we can't just do this for auto types that are not deduced -
because Clang marks even the declaration's return type as deduced (&
provides the underlying type) once a definition is seen that allows the
deduction. So we have to ignore even deduced types - but we can't do
that for auto variables (because this representation only applies to
function declarations - variables and function definitions need the real
type so the function can be called, etc) so we'd need to add an extra
flag to the type unwrapping/creation code to indicate when we want to
see through deduced types and when we don't. It's also not as simple as
just checking at the top level when building a function type (for one
thing, we reuse the function type building for building function pointer
types which might also have 'auto' in them - but be the type of a
variable instead) because the auto might be arbitrarily deeply nested
("auto &", "auto (*)()", etc...)
So, with all that said, let's do the simple thing that works in existing
debuggers for now and treat these functions the same way we do function
templates and implicit special members: omit them from the member list,
since they can't be correctly called anyway (without knowing the return
type the ABI isn't know and a function call could put the arguments in
the wrong place) so they're not much use to the user.
At some point in the future, when GDB understands the DWARF5
representation better it might be worth plumbing through the extra type
builder handling to avoid looking through AutoType for some callers,
etc...
llvm-svn: 221704
2014-11-12 04:44:45 +08:00
|
|
|
case Type::Auto:
|
2014-04-07 01:14:06 +08:00
|
|
|
case Type::Attributed:
|
2012-12-18 22:30:41 +08:00
|
|
|
case Type::Elaborated:
|
|
|
|
case Type::Paren:
|
|
|
|
case Type::SubstTemplateTypeParm:
|
|
|
|
case Type::TypeOfExpr:
|
|
|
|
case Type::TypeOf:
|
|
|
|
case Type::Decltype:
|
|
|
|
case Type::UnaryTransform:
|
2013-07-14 05:08:08 +08:00
|
|
|
case Type::PackExpansion:
|
2013-05-25 05:24:35 +08:00
|
|
|
break;
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
2013-05-16 08:45:12 +08:00
|
|
|
|
PR16091 continued: Debug Info for member functions with undeduced return types.
So DWARF5 specs out auto deduced return types as DW_TAG_unspecified_type
with DW_AT_name "auto", and GCC implements this somewhat, but it
presents a few problems to do this with Clang.
GCC's implementation only applies to member functions where the auto
return type isn't deduced immediately (ie: member functions of templates
or member functions defined out of line). In the common case of an
inline deduced return type function, GCC emits the DW_AT_type as the
deduced return type.
Currently GDB doesn't seem to behave too well with this debug info - it
treats the return type as 'void', even though the definition of the
function has the correctly deduced return type (I guess it sees the
return type the declaration has, doesn't understand it, and assumes
void). This means the function's ABI might be broken (non-trivial return
types, etc), etc.
Clang, on the other hand doesn't track this particular case of a
deducable return type that is deduced immediately versus one that is
deduced 'later'. So if we implement the DWARF5 representation, all
deducible return type functions would get adverse GDB behavior
(including deduced return type lambda functions, inline deduced return
type functions, etc).
Also, we can't just do this for auto types that are not deduced -
because Clang marks even the declaration's return type as deduced (&
provides the underlying type) once a definition is seen that allows the
deduction. So we have to ignore even deduced types - but we can't do
that for auto variables (because this representation only applies to
function declarations - variables and function definitions need the real
type so the function can be called, etc) so we'd need to add an extra
flag to the type unwrapping/creation code to indicate when we want to
see through deduced types and when we don't. It's also not as simple as
just checking at the top level when building a function type (for one
thing, we reuse the function type building for building function pointer
types which might also have 'auto' in them - but be the type of a
variable instead) because the auto might be arbitrarily deeply nested
("auto &", "auto (*)()", etc...)
So, with all that said, let's do the simple thing that works in existing
debuggers for now and treat these functions the same way we do function
templates and implicit special members: omit them from the member list,
since they can't be correctly called anyway (without knowing the return
type the ABI isn't know and a function call could put the arguments in
the wrong place) so they're not much use to the user.
At some point in the future, when GDB understands the DWARF5
representation better it might be worth plumbing through the extra type
builder handling to avoid looking through AutoType for some callers,
etc...
llvm-svn: 221704
2014-11-12 04:44:45 +08:00
|
|
|
llvm_unreachable("type should have been unwrapped!");
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-07-25 04:34:41 +08:00
|
|
|
llvm::DICompositeType *CGDebugInfo::getOrCreateLimitedType(const RecordType *Ty,
|
|
|
|
llvm::DIFile *Unit) {
|
2013-08-13 06:24:20 +08:00
|
|
|
QualType QTy(Ty, 0);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2015-07-25 04:34:41 +08:00
|
|
|
auto *T = cast_or_null<llvm::DICompositeType>(getTypeOrNull(QTy));
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// We may have cached a forward decl when we could have created
|
|
|
|
// a non-forward decl. Go ahead and create a non-forward decl
|
|
|
|
// now.
|
2015-04-16 09:00:56 +08:00
|
|
|
if (T && !T->isForwardDecl())
|
2014-10-27 07:40:33 +08:00
|
|
|
return T;
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// Otherwise create the type.
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DICompositeType *Res = CreateLimitedType(Ty);
|
2013-08-21 05:03:29 +08:00
|
|
|
|
|
|
|
// Propagate members from the declaration to the definition
|
|
|
|
// CreateType(const RecordType*) will overwrite this with the members in the
|
|
|
|
// correct order if the full type is needed.
|
2015-04-30 00:40:08 +08:00
|
|
|
DBuilder.replaceArrays(Res, T ? T->getElements() : llvm::DINodeArray());
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// And update the type cache.
|
2014-12-10 02:39:32 +08:00
|
|
|
TypeCache[QTy.getAsOpaquePtr()].reset(Res);
|
2012-12-18 22:30:41 +08:00
|
|
|
return Res;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Currently used for context chains when limiting debug info.
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DICompositeType *CGDebugInfo::CreateLimitedType(const RecordType *Ty) {
|
2012-12-18 22:30:41 +08:00
|
|
|
RecordDecl *RD = Ty->getDecl();
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
// Get overall information about the record type for the debug info.
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *DefUnit = getOrCreateFile(RD->getLocation());
|
2012-12-18 22:30:41 +08:00
|
|
|
unsigned Line = getLineNumber(RD->getLocation());
|
|
|
|
StringRef RDName = getClassName(RD);
|
|
|
|
|
2015-09-11 02:39:45 +08:00
|
|
|
llvm::DIScope *RDContext = getDeclContextDescriptor(RD);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2013-08-19 01:36:19 +08:00
|
|
|
// If we ended up creating the type during the context chain construction,
|
|
|
|
// just return that.
|
2015-04-30 00:40:08 +08:00
|
|
|
auto *T = cast_or_null<llvm::DICompositeType>(
|
2015-04-07 07:21:33 +08:00
|
|
|
getTypeOrNull(CGM.getContext().getRecordType(RD)));
|
2015-04-16 09:00:56 +08:00
|
|
|
if (T && (!T->isForwardDecl() || !RD->getDefinition()))
|
2014-10-27 07:40:33 +08:00
|
|
|
return T;
|
2013-08-19 01:36:19 +08:00
|
|
|
|
2014-02-05 05:29:50 +08:00
|
|
|
// If this is just a forward or incomplete declaration, construct an
|
|
|
|
// appropriately marked node and just return it.
|
|
|
|
const RecordDecl *D = RD->getDefinition();
|
|
|
|
if (!D || !D->isCompleteDefinition())
|
2013-08-29 05:20:28 +08:00
|
|
|
return getOrCreateRecordFwdDecl(Ty, RDContext);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
uint64_t Size = CGM.getContext().getTypeSize(Ty);
|
|
|
|
uint64_t Align = CGM.getContext().getTypeAlign(Ty);
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2013-08-30 07:19:58 +08:00
|
|
|
SmallString<256> FullName = getUniqueTagTypeName(Ty, CGM, TheCU);
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DICompositeType *RealDecl = DBuilder.createReplaceableCompositeType(
|
2015-04-17 00:36:45 +08:00
|
|
|
getTagForRecord(RD), RDName, RDContext, DefUnit, Line, 0, Size, Align, 0,
|
|
|
|
FullName);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2014-12-10 02:39:32 +08:00
|
|
|
RegionMap[Ty->getDecl()].reset(RealDecl);
|
|
|
|
TypeCache[QualType(Ty, 0).getAsOpaquePtr()].reset(RealDecl);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2013-08-19 00:55:33 +08:00
|
|
|
if (const ClassTemplateSpecializationDecl *TSpecial =
|
|
|
|
dyn_cast<ClassTemplateSpecializationDecl>(RD))
|
2015-04-30 00:40:08 +08:00
|
|
|
DBuilder.replaceArrays(RealDecl, llvm::DINodeArray(),
|
2014-12-18 08:48:56 +08:00
|
|
|
CollectCXXTemplateParams(TSpecial, DefUnit));
|
2013-08-16 06:42:12 +08:00
|
|
|
return RealDecl;
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2013-08-19 00:55:33 +08:00
|
|
|
void CGDebugInfo::CollectContainingType(const CXXRecordDecl *RD,
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DICompositeType *RealDecl) {
|
2013-08-19 00:55:33 +08:00
|
|
|
// A class's primary base or the class itself contains the vtable.
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DICompositeType *ContainingType = nullptr;
|
2013-08-19 00:55:33 +08:00
|
|
|
const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
|
|
|
|
if (const CXXRecordDecl *PBase = RL.getPrimaryBase()) {
|
2013-12-05 12:47:09 +08:00
|
|
|
// Seek non-virtual primary base root.
|
2013-08-19 00:55:33 +08:00
|
|
|
while (1) {
|
|
|
|
const ASTRecordLayout &BRL = CGM.getContext().getASTRecordLayout(PBase);
|
|
|
|
const CXXRecordDecl *PBT = BRL.getPrimaryBase();
|
|
|
|
if (PBT && !BRL.isPrimaryBaseVirtual())
|
|
|
|
PBase = PBT;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
2015-04-30 00:40:08 +08:00
|
|
|
ContainingType = cast<llvm::DICompositeType>(
|
2013-08-19 00:55:33 +08:00
|
|
|
getOrCreateType(QualType(PBase->getTypeForDecl(), 0),
|
|
|
|
getOrCreateFile(RD->getLocation())));
|
|
|
|
} else if (RD->isDynamicClass())
|
|
|
|
ContainingType = RealDecl;
|
|
|
|
|
2014-12-18 08:48:56 +08:00
|
|
|
DBuilder.replaceVTableHolder(RealDecl, ContainingType);
|
2013-08-19 00:55:33 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreateMemberType(llvm::DIFile *Unit, QualType FType,
|
2015-04-21 02:51:48 +08:00
|
|
|
StringRef Name, uint64_t *Offset) {
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *FieldTy = CGDebugInfo::getOrCreateType(FType, Unit);
|
2012-12-18 22:30:41 +08:00
|
|
|
uint64_t FieldSize = CGM.getContext().getTypeSize(FType);
|
|
|
|
unsigned FieldAlign = CGM.getContext().getTypeAlign(FType);
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *Ty = DBuilder.createMemberType(Unit, Name, Unit, 0, FieldSize,
|
2015-04-21 02:51:48 +08:00
|
|
|
FieldAlign, *Offset, 0, FieldTy);
|
2012-12-18 22:30:41 +08:00
|
|
|
*Offset += FieldSize;
|
|
|
|
return Ty;
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
void CGDebugInfo::collectFunctionDeclProps(GlobalDecl GD, llvm::DIFile *Unit,
|
2015-04-22 04:07:29 +08:00
|
|
|
StringRef &Name,
|
|
|
|
StringRef &LinkageName,
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIScope *&FDContext,
|
|
|
|
llvm::DINodeArray &TParamsArray,
|
2015-04-22 04:07:29 +08:00
|
|
|
unsigned &Flags) {
|
2014-11-18 11:40:46 +08:00
|
|
|
const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl());
|
|
|
|
Name = getFunctionName(FD);
|
|
|
|
// Use mangled name as linkage name for C/C++ functions.
|
|
|
|
if (FD->hasPrototype()) {
|
|
|
|
LinkageName = CGM.getMangledName(GD);
|
2015-04-30 00:40:08 +08:00
|
|
|
Flags |= llvm::DINode::FlagPrototyped;
|
2014-11-18 11:40:46 +08:00
|
|
|
}
|
|
|
|
// No need to replicate the linkage name if it isn't different from the
|
|
|
|
// subprogram name, no need to have it at all unless coverage is enabled or
|
|
|
|
// debug is set to more than just line tables.
|
|
|
|
if (LinkageName == Name ||
|
|
|
|
(!CGM.getCodeGenOpts().EmitGcovArcs &&
|
|
|
|
!CGM.getCodeGenOpts().EmitGcovNotes &&
|
|
|
|
DebugKind <= CodeGenOptions::DebugLineTablesOnly))
|
|
|
|
LinkageName = StringRef();
|
|
|
|
|
|
|
|
if (DebugKind >= CodeGenOptions::LimitedDebugInfo) {
|
|
|
|
if (const NamespaceDecl *NSDecl =
|
|
|
|
dyn_cast_or_null<NamespaceDecl>(FD->getDeclContext()))
|
|
|
|
FDContext = getOrCreateNameSpace(NSDecl);
|
|
|
|
else if (const RecordDecl *RDecl =
|
2015-09-12 01:23:08 +08:00
|
|
|
dyn_cast_or_null<RecordDecl>(FD->getDeclContext())) {
|
|
|
|
llvm::DIScope *Mod = getParentModuleOrNull(RDecl);
|
|
|
|
FDContext = getContextDescriptor(RDecl, Mod ? Mod : TheCU);
|
|
|
|
}
|
2014-11-18 11:40:46 +08:00
|
|
|
// Collect template parameters.
|
|
|
|
TParamsArray = CollectFunctionTemplateParams(FD, Unit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
void CGDebugInfo::collectVarDeclProps(const VarDecl *VD, llvm::DIFile *&Unit,
|
2014-11-18 11:40:46 +08:00
|
|
|
unsigned &LineNo, QualType &T,
|
|
|
|
StringRef &Name, StringRef &LinkageName,
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIScope *&VDContext) {
|
2014-11-18 11:40:46 +08:00
|
|
|
Unit = getOrCreateFile(VD->getLocation());
|
|
|
|
LineNo = getLineNumber(VD->getLocation());
|
|
|
|
|
|
|
|
setLocation(VD->getLocation());
|
|
|
|
|
|
|
|
T = VD->getType();
|
|
|
|
if (T->isIncompleteArrayType()) {
|
|
|
|
// CodeGen turns int[] into int[1] so we'll do the same here.
|
|
|
|
llvm::APInt ConstVal(32, 1);
|
|
|
|
QualType ET = CGM.getContext().getAsArrayType(T)->getElementType();
|
|
|
|
|
|
|
|
T = CGM.getContext().getConstantArrayType(ET, ConstVal,
|
|
|
|
ArrayType::Normal, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
Name = VD->getName();
|
|
|
|
if (VD->getDeclContext() && !isa<FunctionDecl>(VD->getDeclContext()) &&
|
|
|
|
!isa<ObjCMethodDecl>(VD->getDeclContext()))
|
|
|
|
LinkageName = CGM.getMangledName(VD);
|
|
|
|
if (LinkageName == Name)
|
|
|
|
LinkageName = StringRef();
|
|
|
|
|
|
|
|
// Since we emit declarations (DW_AT_members) for static members, place the
|
|
|
|
// definition of those static members in the namespace they were declared in
|
|
|
|
// in the source code (the lexical decl context).
|
|
|
|
// FIXME: Generalize this for even non-member global variables where the
|
|
|
|
// declaration and definition may have different lexical decl contexts, once
|
|
|
|
// we have support for emitting declarations of (non-member) global variables.
|
2015-02-28 08:13:13 +08:00
|
|
|
const DeclContext *DC = VD->isStaticDataMember() ? VD->getLexicalDeclContext()
|
|
|
|
: VD->getDeclContext();
|
|
|
|
// When a record type contains an in-line initialization of a static data
|
|
|
|
// member, and the record type is marked as __declspec(dllexport), an implicit
|
|
|
|
// definition of the member will be created in the record context. DWARF
|
|
|
|
// doesn't seem to have a nice way to describe this in a form that consumers
|
|
|
|
// are likely to understand, so fake the "normal" situation of a definition
|
|
|
|
// outside the class by putting it in the global scope.
|
|
|
|
if (DC->isRecord())
|
|
|
|
DC = CGM.getContext().getTranslationUnitDecl();
|
2015-09-12 01:23:08 +08:00
|
|
|
|
|
|
|
llvm::DIScope *Mod = getParentModuleOrNull(VD);
|
|
|
|
VDContext = getContextDescriptor(cast<Decl>(DC), Mod ? Mod : TheCU);
|
2014-11-18 11:40:46 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DISubprogram *
|
2014-11-18 11:40:51 +08:00
|
|
|
CGDebugInfo::getFunctionForwardDeclaration(const FunctionDecl *FD) {
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DINodeArray TParamsArray;
|
2014-11-18 11:40:51 +08:00
|
|
|
StringRef Name, LinkageName;
|
|
|
|
unsigned Flags = 0;
|
|
|
|
SourceLocation Loc = FD->getLocation();
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *Unit = getOrCreateFile(Loc);
|
|
|
|
llvm::DIScope *DContext = Unit;
|
2014-11-18 11:40:51 +08:00
|
|
|
unsigned Line = getLineNumber(Loc);
|
|
|
|
|
|
|
|
collectFunctionDeclProps(FD, Unit, Name, LinkageName, DContext,
|
|
|
|
TParamsArray, Flags);
|
|
|
|
// Build function type.
|
|
|
|
SmallVector<QualType, 16> ArgTypes;
|
|
|
|
for (const ParmVarDecl *Parm: FD->parameters())
|
|
|
|
ArgTypes.push_back(Parm->getType());
|
|
|
|
QualType FnType =
|
|
|
|
CGM.getContext().getFunctionType(FD->getReturnType(), ArgTypes,
|
|
|
|
FunctionProtoType::ExtProtoInfo());
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DISubprogram *SP = DBuilder.createTempFunctionFwdDecl(
|
2015-04-08 00:50:49 +08:00
|
|
|
DContext, Name, LinkageName, Unit, Line,
|
|
|
|
getOrCreateFunctionType(FD, FnType, Unit), !FD->isExternallyVisible(),
|
2015-11-06 06:04:14 +08:00
|
|
|
/* isDefinition = */ false, 0, Flags, CGM.getLangOpts().Optimize,
|
2015-04-08 00:50:49 +08:00
|
|
|
TParamsArray.get(), getFunctionDeclaration(FD));
|
2014-11-18 11:40:51 +08:00
|
|
|
const FunctionDecl *CanonDecl = cast<FunctionDecl>(FD->getCanonicalDecl());
|
2015-04-17 00:36:45 +08:00
|
|
|
FwdDeclReplaceMap.emplace_back(std::piecewise_construct,
|
|
|
|
std::make_tuple(CanonDecl),
|
|
|
|
std::make_tuple(SP));
|
2014-11-18 11:40:51 +08:00
|
|
|
return SP;
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIGlobalVariable *
|
2014-11-18 11:40:51 +08:00
|
|
|
CGDebugInfo::getGlobalVariableForwardDeclaration(const VarDecl *VD) {
|
|
|
|
QualType T;
|
|
|
|
StringRef Name, LinkageName;
|
|
|
|
SourceLocation Loc = VD->getLocation();
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *Unit = getOrCreateFile(Loc);
|
|
|
|
llvm::DIScope *DContext = Unit;
|
2014-11-18 11:40:51 +08:00
|
|
|
unsigned Line = getLineNumber(Loc);
|
|
|
|
|
|
|
|
collectVarDeclProps(VD, Unit, Line, T, Name, LinkageName, DContext);
|
2015-04-22 02:43:54 +08:00
|
|
|
auto *GV = DBuilder.createTempGlobalVariableFwdDecl(
|
|
|
|
DContext, Name, LinkageName, Unit, Line, getOrCreateType(T, Unit),
|
|
|
|
!VD->isExternallyVisible(), nullptr, nullptr);
|
2014-12-10 02:39:32 +08:00
|
|
|
FwdDeclReplaceMap.emplace_back(
|
|
|
|
std::piecewise_construct,
|
|
|
|
std::make_tuple(cast<VarDecl>(VD->getCanonicalDecl())),
|
|
|
|
std::make_tuple(static_cast<llvm::Metadata *>(GV)));
|
2014-11-18 11:40:51 +08:00
|
|
|
return GV;
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DINode *CGDebugInfo::getDeclarationOrDefinition(const Decl *D) {
|
2013-05-20 12:58:53 +08:00
|
|
|
// We only need a declaration (not a definition) of the type - so use whatever
|
|
|
|
// we would otherwise do to get a type for a pointee. (forward declarations in
|
|
|
|
// limited debug info, full definitions (if the type definition is available)
|
|
|
|
// in unlimited debug info)
|
2013-08-13 07:14:36 +08:00
|
|
|
if (const TypeDecl *TD = dyn_cast<TypeDecl>(D))
|
|
|
|
return getOrCreateType(CGM.getContext().getTypeDeclType(TD),
|
2013-09-05 06:03:57 +08:00
|
|
|
getOrCreateFile(TD->getLocation()));
|
2014-12-10 02:39:32 +08:00
|
|
|
auto I = DeclCache.find(D->getCanonicalDecl());
|
2014-11-18 11:40:51 +08:00
|
|
|
|
2014-12-10 02:39:32 +08:00
|
|
|
if (I != DeclCache.end())
|
2015-04-30 00:40:08 +08:00
|
|
|
return dyn_cast_or_null<llvm::DINode>(I->second);
|
2014-11-18 11:40:51 +08:00
|
|
|
|
|
|
|
// No definition for now. Emit a forward definition that might be
|
|
|
|
// merged with a potential upcoming definition.
|
|
|
|
if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(D))
|
|
|
|
return getFunctionForwardDeclaration(FD);
|
|
|
|
else if (const auto *VD = dyn_cast<VarDecl>(D))
|
|
|
|
return getGlobalVariableForwardDeclaration(VD);
|
|
|
|
|
2015-04-17 00:36:45 +08:00
|
|
|
return nullptr;
|
2013-05-20 12:58:53 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DISubprogram *CGDebugInfo::getFunctionDeclaration(const Decl *D) {
|
2014-06-25 01:02:17 +08:00
|
|
|
if (!D || DebugKind <= CodeGenOptions::DebugLineTablesOnly)
|
2015-04-21 06:09:57 +08:00
|
|
|
return nullptr;
|
2013-06-22 08:09:36 +08:00
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
|
2014-10-27 07:40:33 +08:00
|
|
|
if (!FD)
|
2015-04-21 06:09:57 +08:00
|
|
|
return nullptr;
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// Setup context.
|
2015-09-11 02:39:45 +08:00
|
|
|
auto *S = getDeclContextDescriptor(D);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2014-12-10 02:39:32 +08:00
|
|
|
auto MI = SPCache.find(FD->getCanonicalDecl());
|
2013-08-10 01:20:05 +08:00
|
|
|
if (MI == SPCache.end()) {
|
2013-08-29 07:12:10 +08:00
|
|
|
if (const CXXMethodDecl *MD =
|
|
|
|
dyn_cast<CXXMethodDecl>(FD->getCanonicalDecl())) {
|
2015-04-21 05:17:26 +08:00
|
|
|
return CreateCXXMemberFunction(MD, getOrCreateFile(MD->getLocation()),
|
2015-04-30 00:40:08 +08:00
|
|
|
cast<llvm::DICompositeType>(S));
|
2013-08-10 01:20:05 +08:00
|
|
|
}
|
|
|
|
}
|
2012-12-18 22:30:41 +08:00
|
|
|
if (MI != SPCache.end()) {
|
2015-04-30 00:40:08 +08:00
|
|
|
auto *SP = dyn_cast_or_null<llvm::DISubprogram>(MI->second);
|
2015-04-14 11:24:14 +08:00
|
|
|
if (SP && !SP->isDefinition())
|
2012-12-18 22:30:41 +08:00
|
|
|
return SP;
|
|
|
|
}
|
|
|
|
|
2014-03-07 07:45:36 +08:00
|
|
|
for (auto NextFD : FD->redecls()) {
|
2014-12-10 02:39:32 +08:00
|
|
|
auto MI = SPCache.find(NextFD->getCanonicalDecl());
|
2012-12-18 22:30:41 +08:00
|
|
|
if (MI != SPCache.end()) {
|
2015-04-30 00:40:08 +08:00
|
|
|
auto *SP = dyn_cast_or_null<llvm::DISubprogram>(MI->second);
|
2015-04-14 11:24:14 +08:00
|
|
|
if (SP && !SP->isDefinition())
|
2012-12-18 22:30:41 +08:00
|
|
|
return SP;
|
|
|
|
}
|
|
|
|
}
|
2015-04-21 06:09:57 +08:00
|
|
|
return nullptr;
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-21 02:51:48 +08:00
|
|
|
// getOrCreateFunctionType - Construct type. If it is a c++ method, include
|
2012-12-18 22:30:41 +08:00
|
|
|
// implicit parameter "this".
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DISubroutineType *CGDebugInfo::getOrCreateFunctionType(const Decl *D,
|
2015-04-17 00:36:45 +08:00
|
|
|
QualType FnType,
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *F) {
|
2014-06-25 01:02:17 +08:00
|
|
|
if (!D || DebugKind <= CodeGenOptions::DebugLineTablesOnly)
|
2015-04-21 06:09:57 +08:00
|
|
|
// Create fake but valid subroutine type. Otherwise -verify would fail, and
|
|
|
|
// subprogram DIE will miss DW_AT_decl_file and DW_AT_decl_line fields.
|
2015-10-15 14:56:08 +08:00
|
|
|
return DBuilder.createSubroutineType(DBuilder.getOrCreateTypeArray(None));
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
|
|
|
|
return getOrCreateMethodType(Method, F);
|
|
|
|
if (const ObjCMethodDecl *OMethod = dyn_cast<ObjCMethodDecl>(D)) {
|
|
|
|
// Add "self" and "_cmd"
|
2014-12-10 02:39:32 +08:00
|
|
|
SmallVector<llvm::Metadata *, 16> Elts;
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// First element is always return type. For 'void' functions it is NULL.
|
2014-01-26 00:55:45 +08:00
|
|
|
QualType ResultTy = OMethod->getReturnType();
|
2013-05-23 05:37:49 +08:00
|
|
|
|
|
|
|
// Replace the instancetype keyword with the actual type.
|
|
|
|
if (ResultTy == CGM.getContext().getObjCInstanceType())
|
|
|
|
ResultTy = CGM.getContext().getPointerType(
|
2014-10-27 07:40:33 +08:00
|
|
|
QualType(OMethod->getClassInterface()->getTypeForDecl(), 0));
|
2013-05-23 05:37:49 +08:00
|
|
|
|
2013-05-11 05:08:31 +08:00
|
|
|
Elts.push_back(getOrCreateType(ResultTy, F));
|
2012-12-18 22:30:41 +08:00
|
|
|
// "self" pointer is always first argument.
|
2015-09-09 04:41:52 +08:00
|
|
|
QualType SelfDeclTy;
|
|
|
|
if (auto *SelfDecl = OMethod->getSelfDecl())
|
|
|
|
SelfDeclTy = SelfDecl->getType();
|
|
|
|
else if (auto *FPT = dyn_cast<FunctionProtoType>(FnType))
|
|
|
|
if (FPT->getNumParams() > 1)
|
|
|
|
SelfDeclTy = FPT->getParamType(0);
|
|
|
|
if (!SelfDeclTy.isNull())
|
|
|
|
Elts.push_back(CreateSelfType(SelfDeclTy, getOrCreateType(SelfDeclTy, F)));
|
2012-12-18 22:30:41 +08:00
|
|
|
// "_cmd" pointer is always second argument.
|
2015-04-21 02:51:48 +08:00
|
|
|
Elts.push_back(DBuilder.createArtificialType(
|
2015-09-09 04:41:52 +08:00
|
|
|
getOrCreateType(CGM.getContext().getObjCSelType(), F)));
|
2012-12-18 22:30:41 +08:00
|
|
|
// Get rest of the arguments.
|
2014-03-08 01:50:17 +08:00
|
|
|
for (const auto *PI : OMethod->params())
|
|
|
|
Elts.push_back(getOrCreateType(PI->getType(), F));
|
2014-08-12 12:42:23 +08:00
|
|
|
// Variadic methods need a special marker at the end of the type list.
|
|
|
|
if (OMethod->isVariadic())
|
|
|
|
Elts.push_back(DBuilder.createUnspecifiedParameter());
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DITypeRefArray EltTypeArray = DBuilder.getOrCreateTypeArray(Elts);
|
2015-10-15 14:56:08 +08:00
|
|
|
return DBuilder.createSubroutineType(EltTypeArray);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
2014-02-26 03:38:11 +08:00
|
|
|
|
2014-02-26 07:42:18 +08:00
|
|
|
// Handle variadic function types; they need an additional
|
|
|
|
// unspecified parameter.
|
2014-02-26 03:38:11 +08:00
|
|
|
if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
|
|
|
|
if (FD->isVariadic()) {
|
2014-12-10 02:39:32 +08:00
|
|
|
SmallVector<llvm::Metadata *, 16> EltTys;
|
2014-02-26 03:38:11 +08:00
|
|
|
EltTys.push_back(getOrCreateType(FD->getReturnType(), F));
|
|
|
|
if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FnType))
|
|
|
|
for (unsigned i = 0, e = FPT->getNumParams(); i != e; ++i)
|
|
|
|
EltTys.push_back(getOrCreateType(FPT->getParamType(i), F));
|
|
|
|
EltTys.push_back(DBuilder.createUnspecifiedParameter());
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DITypeRefArray EltTypeArray = DBuilder.getOrCreateTypeArray(EltTys);
|
2015-10-15 14:56:08 +08:00
|
|
|
return DBuilder.createSubroutineType(EltTypeArray);
|
2014-02-26 03:38:11 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
return cast<llvm::DISubroutineType>(getOrCreateType(FnType, F));
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2014-10-27 07:40:33 +08:00
|
|
|
void CGDebugInfo::EmitFunctionStart(GlobalDecl GD, SourceLocation Loc,
|
|
|
|
SourceLocation ScopeLoc, QualType FnType,
|
|
|
|
llvm::Function *Fn, CGBuilderTy &Builder) {
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
StringRef Name;
|
|
|
|
StringRef LinkageName;
|
|
|
|
|
|
|
|
FnBeginRegionCount.push_back(LexicalBlockStack.size());
|
|
|
|
|
|
|
|
const Decl *D = GD.getDecl();
|
2014-05-21 13:09:00 +08:00
|
|
|
bool HasDecl = (D != nullptr);
|
2014-04-02 06:25:28 +08:00
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
unsigned Flags = 0;
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *Unit = getOrCreateFile(Loc);
|
|
|
|
llvm::DIScope *FDContext = Unit;
|
|
|
|
llvm::DINodeArray TParamsArray;
|
2012-12-18 22:30:41 +08:00
|
|
|
if (!HasDecl) {
|
|
|
|
// Use llvm function name.
|
2013-08-28 07:57:18 +08:00
|
|
|
LinkageName = Fn->getName();
|
2012-12-18 22:30:41 +08:00
|
|
|
} else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
|
2015-04-21 06:09:57 +08:00
|
|
|
// If there is a subprogram for this function available then use it.
|
2014-12-10 02:39:32 +08:00
|
|
|
auto FI = SPCache.find(FD->getCanonicalDecl());
|
2012-12-18 22:30:41 +08:00
|
|
|
if (FI != SPCache.end()) {
|
2015-04-30 00:40:08 +08:00
|
|
|
auto *SP = dyn_cast_or_null<llvm::DISubprogram>(FI->second);
|
2015-04-14 11:24:14 +08:00
|
|
|
if (SP && SP->isDefinition()) {
|
2015-04-18 08:07:30 +08:00
|
|
|
LexicalBlockStack.emplace_back(SP);
|
2014-12-10 02:39:32 +08:00
|
|
|
RegionMap[D].reset(SP);
|
2012-12-18 22:30:41 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2014-11-18 11:40:46 +08:00
|
|
|
collectFunctionDeclProps(GD, Unit, Name, LinkageName, FDContext,
|
|
|
|
TParamsArray, Flags);
|
2012-12-18 22:30:41 +08:00
|
|
|
} else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) {
|
|
|
|
Name = getObjCMethodName(OMD);
|
2015-04-30 00:40:08 +08:00
|
|
|
Flags |= llvm::DINode::FlagPrototyped;
|
2012-12-18 22:30:41 +08:00
|
|
|
} else {
|
|
|
|
// Use llvm function name.
|
|
|
|
Name = Fn->getName();
|
2015-04-30 00:40:08 +08:00
|
|
|
Flags |= llvm::DINode::FlagPrototyped;
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
if (!Name.empty() && Name[0] == '\01')
|
|
|
|
Name = Name.substr(1);
|
|
|
|
|
2014-04-11 07:21:53 +08:00
|
|
|
if (!HasDecl || D->isImplicit()) {
|
2015-04-30 00:40:08 +08:00
|
|
|
Flags |= llvm::DINode::FlagArtificial;
|
2014-04-11 07:21:53 +08:00
|
|
|
// Artificial functions without a location should not silently reuse CurLoc.
|
|
|
|
if (Loc.isInvalid())
|
|
|
|
CurLoc = SourceLocation();
|
|
|
|
}
|
|
|
|
unsigned LineNo = getLineNumber(Loc);
|
|
|
|
unsigned ScopeLine = getLineNumber(ScopeLoc);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2014-03-28 02:50:35 +08:00
|
|
|
// FIXME: The function declaration we're constructing here is mostly reusing
|
|
|
|
// declarations from CXXMethodDecl and not constructing new ones for arbitrary
|
|
|
|
// FunctionDecls. When/if we fix this we can have FDContext be TheCU/null for
|
|
|
|
// all subprograms instead of the actual context since subprogram definitions
|
|
|
|
// are emitted as CU level entities by the backend.
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DISubprogram *SP = DBuilder.createFunction(
|
2014-10-27 07:40:33 +08:00
|
|
|
FDContext, Name, LinkageName, Unit, LineNo,
|
|
|
|
getOrCreateFunctionType(D, FnType, Unit), Fn->hasInternalLinkage(),
|
2015-11-06 06:04:14 +08:00
|
|
|
true /*definition*/, ScopeLine, Flags, CGM.getLangOpts().Optimize,
|
2015-04-08 00:50:49 +08:00
|
|
|
TParamsArray.get(), getFunctionDeclaration(D));
|
2015-11-06 06:04:14 +08:00
|
|
|
Fn->setSubprogram(SP);
|
2014-11-06 03:19:04 +08:00
|
|
|
// We might get here with a VarDecl in the case we're generating
|
|
|
|
// code for the initialization of globals. Do not record these decls
|
|
|
|
// as they will overwrite the actual VarDecl Decl in the cache.
|
|
|
|
if (HasDecl && isa<FunctionDecl>(D))
|
2014-12-10 02:39:32 +08:00
|
|
|
DeclCache[D->getCanonicalDecl()].reset(static_cast<llvm::Metadata *>(SP));
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2014-03-22 05:01:58 +08:00
|
|
|
// Push the function onto the lexical block stack.
|
2015-04-18 08:07:30 +08:00
|
|
|
LexicalBlockStack.emplace_back(SP);
|
2014-03-22 05:01:58 +08:00
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
if (HasDecl)
|
2014-12-10 02:39:32 +08:00
|
|
|
RegionMap[D].reset(SP);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-09-09 04:41:52 +08:00
|
|
|
void CGDebugInfo::EmitFunctionDecl(GlobalDecl GD, SourceLocation Loc,
|
|
|
|
QualType FnType) {
|
|
|
|
StringRef Name;
|
|
|
|
StringRef LinkageName;
|
|
|
|
|
|
|
|
const Decl *D = GD.getDecl();
|
|
|
|
if (!D)
|
|
|
|
return;
|
|
|
|
|
|
|
|
unsigned Flags = 0;
|
|
|
|
llvm::DIFile *Unit = getOrCreateFile(Loc);
|
2015-10-05 07:23:04 +08:00
|
|
|
llvm::DIScope *FDContext = getDeclContextDescriptor(D);
|
2015-09-09 04:41:52 +08:00
|
|
|
llvm::DINodeArray TParamsArray;
|
|
|
|
if (isa<FunctionDecl>(D)) {
|
|
|
|
// If there is a DISubprogram for this function available then use it.
|
|
|
|
collectFunctionDeclProps(GD, Unit, Name, LinkageName, FDContext,
|
|
|
|
TParamsArray, Flags);
|
|
|
|
} else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) {
|
|
|
|
Name = getObjCMethodName(OMD);
|
|
|
|
Flags |= llvm::DINode::FlagPrototyped;
|
|
|
|
} else {
|
|
|
|
llvm_unreachable("not a function or ObjC method");
|
|
|
|
}
|
|
|
|
if (!Name.empty() && Name[0] == '\01')
|
|
|
|
Name = Name.substr(1);
|
|
|
|
|
|
|
|
if (D->isImplicit()) {
|
|
|
|
Flags |= llvm::DINode::FlagArtificial;
|
|
|
|
// Artificial functions without a location should not silently reuse CurLoc.
|
|
|
|
if (Loc.isInvalid())
|
|
|
|
CurLoc = SourceLocation();
|
|
|
|
}
|
|
|
|
unsigned LineNo = getLineNumber(Loc);
|
|
|
|
unsigned ScopeLine = 0;
|
|
|
|
|
|
|
|
DBuilder.createFunction(FDContext, Name, LinkageName, Unit, LineNo,
|
|
|
|
getOrCreateFunctionType(D, FnType, Unit),
|
|
|
|
false /*internalLinkage*/, true /*definition*/,
|
2015-11-06 06:04:14 +08:00
|
|
|
ScopeLine, Flags, CGM.getLangOpts().Optimize,
|
|
|
|
TParamsArray.get(), getFunctionDeclaration(D));
|
2015-09-09 04:41:52 +08:00
|
|
|
}
|
|
|
|
|
2015-01-22 07:08:17 +08:00
|
|
|
void CGDebugInfo::EmitLocation(CGBuilderTy &Builder, SourceLocation Loc) {
|
2012-12-18 22:30:41 +08:00
|
|
|
// Update our current location
|
|
|
|
setLocation(Loc);
|
|
|
|
|
2014-10-27 07:40:33 +08:00
|
|
|
if (CurLoc.isInvalid() || CurLoc.isMacroID())
|
|
|
|
return;
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2014-01-08 06:05:52 +08:00
|
|
|
llvm::MDNode *Scope = LexicalBlockStack.back();
|
2014-10-27 07:40:33 +08:00
|
|
|
Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(
|
2015-01-22 07:08:17 +08:00
|
|
|
getLineNumber(CurLoc), getColumnNumber(CurLoc), Scope));
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CGDebugInfo::CreateLexicalBlock(SourceLocation Loc) {
|
2014-12-10 03:22:40 +08:00
|
|
|
llvm::MDNode *Back = nullptr;
|
|
|
|
if (!LexicalBlockStack.empty())
|
|
|
|
Back = LexicalBlockStack.back().get();
|
2015-04-18 08:07:30 +08:00
|
|
|
LexicalBlockStack.emplace_back(DBuilder.createLexicalBlock(
|
2015-04-30 00:40:08 +08:00
|
|
|
cast<llvm::DIScope>(Back), getOrCreateFile(CurLoc), getLineNumber(CurLoc),
|
2015-04-18 08:07:30 +08:00
|
|
|
getColumnNumber(CurLoc)));
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2013-05-16 08:52:20 +08:00
|
|
|
void CGDebugInfo::EmitLexicalBlockStart(CGBuilderTy &Builder,
|
|
|
|
SourceLocation Loc) {
|
2012-12-18 22:30:41 +08:00
|
|
|
// Set our current location.
|
|
|
|
setLocation(Loc);
|
|
|
|
|
|
|
|
// Emit a line table change for the current location inside the new scope.
|
2014-10-27 07:40:33 +08:00
|
|
|
Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(
|
|
|
|
getLineNumber(Loc), getColumnNumber(Loc), LexicalBlockStack.back()));
|
2014-10-23 03:34:33 +08:00
|
|
|
|
|
|
|
if (DebugKind <= CodeGenOptions::DebugLineTablesOnly)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Create a new lexical block and push it on the stack.
|
|
|
|
CreateLexicalBlock(Loc);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2013-05-16 08:52:20 +08:00
|
|
|
void CGDebugInfo::EmitLexicalBlockEnd(CGBuilderTy &Builder,
|
|
|
|
SourceLocation Loc) {
|
2012-12-18 22:30:41 +08:00
|
|
|
assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
|
|
|
|
|
|
|
|
// Provide an entry in the line table for the end of the block.
|
|
|
|
EmitLocation(Builder, Loc);
|
|
|
|
|
2014-10-23 03:34:33 +08:00
|
|
|
if (DebugKind <= CodeGenOptions::DebugLineTablesOnly)
|
|
|
|
return;
|
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
LexicalBlockStack.pop_back();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGDebugInfo::EmitFunctionEnd(CGBuilderTy &Builder) {
|
|
|
|
assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
|
|
|
|
unsigned RCount = FnBeginRegionCount.back();
|
|
|
|
assert(RCount <= LexicalBlockStack.size() && "Region stack mismatch");
|
|
|
|
|
|
|
|
// Pop all regions for this function.
|
2014-10-23 03:34:33 +08:00
|
|
|
while (LexicalBlockStack.size() != RCount) {
|
|
|
|
// Provide an entry in the line table for the end of the block.
|
|
|
|
EmitLocation(Builder, CurLoc);
|
|
|
|
LexicalBlockStack.pop_back();
|
|
|
|
}
|
2012-12-18 22:30:41 +08:00
|
|
|
FnBeginRegionCount.pop_back();
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::EmitTypeForVarWithBlocksAttr(const VarDecl *VD,
|
2015-04-21 02:51:48 +08:00
|
|
|
uint64_t *XOffset) {
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2014-12-10 02:39:32 +08:00
|
|
|
SmallVector<llvm::Metadata *, 5> EltTys;
|
2012-12-18 22:30:41 +08:00
|
|
|
QualType FType;
|
|
|
|
uint64_t FieldSize, FieldOffset;
|
|
|
|
unsigned FieldAlign;
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *Unit = getOrCreateFile(VD->getLocation());
|
2013-05-16 08:45:12 +08:00
|
|
|
QualType Type = VD->getType();
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
FieldOffset = 0;
|
|
|
|
FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
|
|
|
|
EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
|
|
|
|
EltTys.push_back(CreateMemberType(Unit, FType, "__forwarding", &FieldOffset));
|
|
|
|
FType = CGM.getContext().IntTy;
|
|
|
|
EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
|
|
|
|
EltTys.push_back(CreateMemberType(Unit, FType, "__size", &FieldOffset));
|
|
|
|
|
|
|
|
bool HasCopyAndDispose = CGM.getContext().BlockRequiresCopying(Type, VD);
|
|
|
|
if (HasCopyAndDispose) {
|
|
|
|
FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
|
2014-10-27 07:40:33 +08:00
|
|
|
EltTys.push_back(
|
|
|
|
CreateMemberType(Unit, FType, "__copy_helper", &FieldOffset));
|
|
|
|
EltTys.push_back(
|
|
|
|
CreateMemberType(Unit, FType, "__destroy_helper", &FieldOffset));
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
bool HasByrefExtendedLayout;
|
|
|
|
Qualifiers::ObjCLifetime Lifetime;
|
2014-10-27 07:40:33 +08:00
|
|
|
if (CGM.getContext().getByrefLifetime(Type, Lifetime,
|
|
|
|
HasByrefExtendedLayout) &&
|
|
|
|
HasByrefExtendedLayout) {
|
2013-07-23 08:12:14 +08:00
|
|
|
FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
|
2014-10-27 07:40:33 +08:00
|
|
|
EltTys.push_back(
|
|
|
|
CreateMemberType(Unit, FType, "__byref_variable_layout", &FieldOffset));
|
2013-07-23 08:12:14 +08:00
|
|
|
}
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
CharUnits Align = CGM.getContext().getDeclAlign(VD);
|
|
|
|
if (Align > CGM.getContext().toCharUnitsFromBits(
|
2014-10-27 07:40:33 +08:00
|
|
|
CGM.getTarget().getPointerAlign(0))) {
|
|
|
|
CharUnits FieldOffsetInBytes =
|
|
|
|
CGM.getContext().toCharUnitsFromBits(FieldOffset);
|
|
|
|
CharUnits AlignedOffsetInBytes =
|
|
|
|
FieldOffsetInBytes.RoundUpToAlignment(Align);
|
|
|
|
CharUnits NumPaddingBytes = AlignedOffsetInBytes - FieldOffsetInBytes;
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
if (NumPaddingBytes.isPositive()) {
|
|
|
|
llvm::APInt pad(32, NumPaddingBytes.getQuantity());
|
|
|
|
FType = CGM.getContext().getConstantArrayType(CGM.getContext().CharTy,
|
|
|
|
pad, ArrayType::Normal, 0);
|
|
|
|
EltTys.push_back(CreateMemberType(Unit, FType, "", &FieldOffset));
|
|
|
|
}
|
|
|
|
}
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
FType = Type;
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *FieldTy = getOrCreateType(FType, Unit);
|
2012-12-18 22:30:41 +08:00
|
|
|
FieldSize = CGM.getContext().getTypeSize(FType);
|
|
|
|
FieldAlign = CGM.getContext().toBits(Align);
|
|
|
|
|
2013-05-16 08:45:12 +08:00
|
|
|
*XOffset = FieldOffset;
|
2014-10-27 07:40:33 +08:00
|
|
|
FieldTy = DBuilder.createMemberType(Unit, VD->getName(), Unit, 0, FieldSize,
|
|
|
|
FieldAlign, FieldOffset, 0, FieldTy);
|
2012-12-18 22:30:41 +08:00
|
|
|
EltTys.push_back(FieldTy);
|
|
|
|
FieldOffset += FieldSize;
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DINodeArray Elements = DBuilder.getOrCreateArray(EltTys);
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
unsigned Flags = llvm::DINode::FlagBlockByrefStruct;
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
return DBuilder.createStructType(Unit, "", Unit, 0, FieldOffset, 0, Flags,
|
2015-04-21 02:51:48 +08:00
|
|
|
nullptr, Elements);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-08-01 01:56:14 +08:00
|
|
|
void CGDebugInfo::EmitDeclare(const VarDecl *VD, llvm::Value *Storage,
|
|
|
|
llvm::Optional<unsigned> ArgNo,
|
2014-10-27 07:40:33 +08:00
|
|
|
CGBuilderTy &Builder) {
|
2013-05-16 08:45:23 +08:00
|
|
|
assert(DebugKind >= CodeGenOptions::LimitedDebugInfo);
|
2012-12-18 22:30:41 +08:00
|
|
|
assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
|
|
|
|
|
2013-08-19 11:37:48 +08:00
|
|
|
bool Unwritten =
|
|
|
|
VD->isImplicit() || (isa<Decl>(VD->getDeclContext()) &&
|
|
|
|
cast<Decl>(VD->getDeclContext())->isImplicit());
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *Unit = nullptr;
|
2013-08-19 11:37:48 +08:00
|
|
|
if (!Unwritten)
|
|
|
|
Unit = getOrCreateFile(VD->getLocation());
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *Ty;
|
2012-12-18 22:30:41 +08:00
|
|
|
uint64_t XOffset = 0;
|
|
|
|
if (VD->hasAttr<BlocksAttr>())
|
|
|
|
Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
|
2013-05-16 08:45:12 +08:00
|
|
|
else
|
2012-12-18 22:30:41 +08:00
|
|
|
Ty = getOrCreateType(VD->getType(), Unit);
|
|
|
|
|
|
|
|
// If there is no debug info for this type then do not emit debug info
|
|
|
|
// for this variable.
|
|
|
|
if (!Ty)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Get location information.
|
2013-08-19 11:37:48 +08:00
|
|
|
unsigned Line = 0;
|
|
|
|
unsigned Column = 0;
|
|
|
|
if (!Unwritten) {
|
|
|
|
Line = getLineNumber(VD->getLocation());
|
|
|
|
Column = getColumnNumber(VD->getLocation());
|
|
|
|
}
|
2015-01-20 01:51:58 +08:00
|
|
|
SmallVector<int64_t, 9> Expr;
|
2012-12-18 22:30:41 +08:00
|
|
|
unsigned Flags = 0;
|
|
|
|
if (VD->isImplicit())
|
2015-04-30 00:40:08 +08:00
|
|
|
Flags |= llvm::DINode::FlagArtificial;
|
2012-12-18 22:30:41 +08:00
|
|
|
// If this is the first argument and it is implicit then
|
|
|
|
// give it an object pointer flag.
|
|
|
|
// FIXME: There has to be a better way to do this, but for static
|
|
|
|
// functions there won't be an implicit param at arg1 and
|
|
|
|
// otherwise it is 'self' or 'this'.
|
2015-08-01 01:56:14 +08:00
|
|
|
if (isa<ImplicitParamDecl>(VD) && ArgNo && *ArgNo == 1)
|
2015-04-30 00:40:08 +08:00
|
|
|
Flags |= llvm::DINode::FlagObjectPointer;
|
2013-06-20 05:53:53 +08:00
|
|
|
if (llvm::Argument *Arg = dyn_cast<llvm::Argument>(Storage))
|
2013-07-18 06:52:53 +08:00
|
|
|
if (Arg->getType()->isPointerTy() && !Arg->hasByValAttr() &&
|
|
|
|
!VD->getType()->isPointerType())
|
2015-01-20 01:51:58 +08:00
|
|
|
Expr.push_back(llvm::dwarf::DW_OP_deref);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
auto *Scope = cast<llvm::DIScope>(LexicalBlockStack.back());
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
StringRef Name = VD->getName();
|
|
|
|
if (!Name.empty()) {
|
|
|
|
if (VD->hasAttr<BlocksAttr>()) {
|
|
|
|
CharUnits offset = CharUnits::fromQuantity(32);
|
2015-01-20 01:51:58 +08:00
|
|
|
Expr.push_back(llvm::dwarf::DW_OP_plus);
|
2012-12-18 22:30:41 +08:00
|
|
|
// offset of __forwarding field
|
|
|
|
offset = CGM.getContext().toCharUnitsFromBits(
|
2014-10-27 07:40:33 +08:00
|
|
|
CGM.getTarget().getPointerWidth(0));
|
2015-01-20 01:51:58 +08:00
|
|
|
Expr.push_back(offset.getQuantity());
|
|
|
|
Expr.push_back(llvm::dwarf::DW_OP_deref);
|
|
|
|
Expr.push_back(llvm::dwarf::DW_OP_plus);
|
2012-12-18 22:30:41 +08:00
|
|
|
// offset of x field
|
|
|
|
offset = CGM.getContext().toCharUnitsFromBits(XOffset);
|
2015-01-20 01:51:58 +08:00
|
|
|
Expr.push_back(offset.getQuantity());
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// Create the descriptor for the variable.
|
2015-08-01 01:56:14 +08:00
|
|
|
auto *D = ArgNo
|
|
|
|
? DBuilder.createParameterVariable(Scope, VD->getName(),
|
|
|
|
*ArgNo, Unit, Line, Ty)
|
|
|
|
: DBuilder.createAutoVariable(Scope, VD->getName(), Unit,
|
|
|
|
Line, Ty);
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
// Insert an llvm.dbg.declare into the current block.
|
2015-04-16 05:18:30 +08:00
|
|
|
DBuilder.insertDeclare(Storage, D, DBuilder.createExpression(Expr),
|
|
|
|
llvm::DebugLoc::get(Line, Column, Scope),
|
|
|
|
Builder.GetInsertBlock());
|
2012-12-18 22:30:41 +08:00
|
|
|
return;
|
2013-09-19 06:18:17 +08:00
|
|
|
} else if (isa<VariableArrayType>(VD->getType()))
|
2015-01-20 01:51:58 +08:00
|
|
|
Expr.push_back(llvm::dwarf::DW_OP_deref);
|
2015-04-29 23:05:50 +08:00
|
|
|
} else if (const RecordType *RT = dyn_cast<RecordType>(VD->getType())) {
|
|
|
|
// If VD is an anonymous union then Storage represents value for
|
|
|
|
// all union fields.
|
|
|
|
const RecordDecl *RD = cast<RecordDecl>(RT->getDecl());
|
|
|
|
if (RD->isUnion() && RD->isAnonymousStructOrUnion()) {
|
2015-04-30 00:52:31 +08:00
|
|
|
// GDB has trouble finding local variables in anonymous unions, so we emit
|
|
|
|
// artifical local variables for each of the members.
|
|
|
|
//
|
|
|
|
// FIXME: Remove this code as soon as GDB supports this.
|
|
|
|
// The debug info verifier in LLVM operates based on the assumption that a
|
|
|
|
// variable has the same size as its storage and we had to disable the check
|
|
|
|
// for artificial variables.
|
2015-04-29 23:05:50 +08:00
|
|
|
for (const auto *Field : RD->fields()) {
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *FieldTy = getOrCreateType(Field->getType(), Unit);
|
2015-04-29 23:05:50 +08:00
|
|
|
StringRef FieldName = Field->getName();
|
|
|
|
|
|
|
|
// Ignore unnamed fields. Do not ignore unnamed records.
|
|
|
|
if (FieldName.empty() && !isa<RecordType>(Field->getType()))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Use VarDecl's Tag, Scope and Line number.
|
2015-08-01 01:56:14 +08:00
|
|
|
auto *D = DBuilder.createAutoVariable(
|
|
|
|
Scope, FieldName, Unit, Line, FieldTy, CGM.getLangOpts().Optimize,
|
|
|
|
Flags | llvm::DINode::FlagArtificial);
|
2015-04-29 23:05:50 +08:00
|
|
|
|
|
|
|
// Insert an llvm.dbg.declare into the current block.
|
|
|
|
DBuilder.insertDeclare(Storage, D, DBuilder.createExpression(Expr),
|
|
|
|
llvm::DebugLoc::get(Line, Column, Scope),
|
|
|
|
Builder.GetInsertBlock());
|
|
|
|
}
|
|
|
|
}
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
2013-01-05 13:58:35 +08:00
|
|
|
|
|
|
|
// Create the descriptor for the variable.
|
2015-04-22 02:43:54 +08:00
|
|
|
auto *D =
|
2015-08-01 01:56:14 +08:00
|
|
|
ArgNo
|
|
|
|
? DBuilder.createParameterVariable(Scope, Name, *ArgNo, Unit, Line,
|
|
|
|
Ty, CGM.getLangOpts().Optimize,
|
|
|
|
Flags)
|
|
|
|
: DBuilder.createAutoVariable(Scope, Name, Unit, Line, Ty,
|
|
|
|
CGM.getLangOpts().Optimize, Flags);
|
2013-01-05 13:58:35 +08:00
|
|
|
|
|
|
|
// Insert an llvm.dbg.declare into the current block.
|
2015-04-16 05:18:30 +08:00
|
|
|
DBuilder.insertDeclare(Storage, D, DBuilder.createExpression(Expr),
|
|
|
|
llvm::DebugLoc::get(Line, Column, Scope),
|
|
|
|
Builder.GetInsertBlock());
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CGDebugInfo::EmitDeclareOfAutoVariable(const VarDecl *VD,
|
|
|
|
llvm::Value *Storage,
|
|
|
|
CGBuilderTy &Builder) {
|
2013-05-16 08:45:23 +08:00
|
|
|
assert(DebugKind >= CodeGenOptions::LimitedDebugInfo);
|
2015-08-01 01:56:14 +08:00
|
|
|
EmitDeclare(VD, Storage, llvm::None, Builder);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *CGDebugInfo::CreateSelfType(const QualType &QualTy,
|
|
|
|
llvm::DIType *Ty) {
|
|
|
|
llvm::DIType *CachedTy = getTypeOrNull(QualTy);
|
2014-10-27 07:40:33 +08:00
|
|
|
if (CachedTy)
|
|
|
|
Ty = CachedTy;
|
2013-03-30 03:20:29 +08:00
|
|
|
return DBuilder.createObjectPointerType(Ty);
|
|
|
|
}
|
|
|
|
|
2014-10-27 07:40:33 +08:00
|
|
|
void CGDebugInfo::EmitDeclareOfBlockDeclRefVariable(
|
|
|
|
const VarDecl *VD, llvm::Value *Storage, CGBuilderTy &Builder,
|
2014-11-21 08:35:25 +08:00
|
|
|
const CGBlockInfo &blockInfo, llvm::Instruction *InsertPoint) {
|
2013-05-16 08:45:23 +08:00
|
|
|
assert(DebugKind >= CodeGenOptions::LimitedDebugInfo);
|
2012-12-18 22:30:41 +08:00
|
|
|
assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2014-05-21 13:09:00 +08:00
|
|
|
if (Builder.GetInsertBlock() == nullptr)
|
2012-12-18 22:30:41 +08:00
|
|
|
return;
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
bool isByRef = VD->hasAttr<BlocksAttr>();
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
uint64_t XOffset = 0;
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *Unit = getOrCreateFile(VD->getLocation());
|
|
|
|
llvm::DIType *Ty;
|
2012-12-18 22:30:41 +08:00
|
|
|
if (isByRef)
|
|
|
|
Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset);
|
2013-05-16 08:45:12 +08:00
|
|
|
else
|
2012-12-18 22:30:41 +08:00
|
|
|
Ty = getOrCreateType(VD->getType(), Unit);
|
|
|
|
|
|
|
|
// Self is passed along as an implicit non-arg variable in a
|
|
|
|
// block. Mark it as the object pointer.
|
|
|
|
if (isa<ImplicitParamDecl>(VD) && VD->getName() == "self")
|
2013-03-30 03:20:29 +08:00
|
|
|
Ty = CreateSelfType(VD->getType(), Ty);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// Get location information.
|
|
|
|
unsigned Line = getLineNumber(VD->getLocation());
|
|
|
|
unsigned Column = getColumnNumber(VD->getLocation());
|
|
|
|
|
|
|
|
const llvm::DataLayout &target = CGM.getDataLayout();
|
|
|
|
|
|
|
|
CharUnits offset = CharUnits::fromQuantity(
|
2014-10-27 07:40:33 +08:00
|
|
|
target.getStructLayout(blockInfo.StructureType)
|
2012-12-18 22:30:41 +08:00
|
|
|
->getElementOffset(blockInfo.getCapture(VD).getIndex()));
|
|
|
|
|
2014-10-02 04:26:18 +08:00
|
|
|
SmallVector<int64_t, 9> addr;
|
2013-03-30 03:20:35 +08:00
|
|
|
if (isa<llvm::AllocaInst>(Storage))
|
2014-10-02 04:26:18 +08:00
|
|
|
addr.push_back(llvm::dwarf::DW_OP_deref);
|
|
|
|
addr.push_back(llvm::dwarf::DW_OP_plus);
|
|
|
|
addr.push_back(offset.getQuantity());
|
2012-12-18 22:30:41 +08:00
|
|
|
if (isByRef) {
|
2014-10-02 04:26:18 +08:00
|
|
|
addr.push_back(llvm::dwarf::DW_OP_deref);
|
|
|
|
addr.push_back(llvm::dwarf::DW_OP_plus);
|
2012-12-18 22:30:41 +08:00
|
|
|
// offset of __forwarding field
|
2014-10-27 07:40:33 +08:00
|
|
|
offset =
|
|
|
|
CGM.getContext().toCharUnitsFromBits(target.getPointerSizeInBits(0));
|
2014-10-02 04:26:18 +08:00
|
|
|
addr.push_back(offset.getQuantity());
|
|
|
|
addr.push_back(llvm::dwarf::DW_OP_deref);
|
|
|
|
addr.push_back(llvm::dwarf::DW_OP_plus);
|
2012-12-18 22:30:41 +08:00
|
|
|
// offset of x field
|
|
|
|
offset = CGM.getContext().toCharUnitsFromBits(XOffset);
|
2014-10-02 04:26:18 +08:00
|
|
|
addr.push_back(offset.getQuantity());
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create the descriptor for the variable.
|
2015-08-01 01:56:14 +08:00
|
|
|
auto *D = DBuilder.createAutoVariable(
|
2015-04-30 00:40:08 +08:00
|
|
|
cast<llvm::DILocalScope>(LexicalBlockStack.back()), VD->getName(), Unit,
|
2015-04-17 00:36:45 +08:00
|
|
|
Line, Ty);
|
2013-03-30 03:20:35 +08:00
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
// Insert an llvm.dbg.declare into the current block.
|
2015-04-16 05:18:30 +08:00
|
|
|
auto DL = llvm::DebugLoc::get(Line, Column, LexicalBlockStack.back());
|
|
|
|
if (InsertPoint)
|
|
|
|
DBuilder.insertDeclare(Storage, D, DBuilder.createExpression(addr), DL,
|
|
|
|
InsertPoint);
|
|
|
|
else
|
|
|
|
DBuilder.insertDeclare(Storage, D, DBuilder.createExpression(addr), DL,
|
|
|
|
Builder.GetInsertBlock());
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CGDebugInfo::EmitDeclareOfArgVariable(const VarDecl *VD, llvm::Value *AI,
|
|
|
|
unsigned ArgNo,
|
|
|
|
CGBuilderTy &Builder) {
|
2013-05-16 08:45:23 +08:00
|
|
|
assert(DebugKind >= CodeGenOptions::LimitedDebugInfo);
|
2015-08-01 01:56:14 +08:00
|
|
|
EmitDeclare(VD, AI, ArgNo, Builder);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
2014-10-27 07:40:33 +08:00
|
|
|
struct BlockLayoutChunk {
|
|
|
|
uint64_t OffsetInBits;
|
|
|
|
const BlockDecl::Capture *Capture;
|
|
|
|
};
|
|
|
|
bool operator<(const BlockLayoutChunk &l, const BlockLayoutChunk &r) {
|
|
|
|
return l.OffsetInBits < r.OffsetInBits;
|
|
|
|
}
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CGDebugInfo::EmitDeclareOfBlockLiteralArgVariable(const CGBlockInfo &block,
|
2013-03-15 01:53:33 +08:00
|
|
|
llvm::Value *Arg,
|
2014-08-09 01:10:14 +08:00
|
|
|
unsigned ArgNo,
|
2013-03-15 01:53:33 +08:00
|
|
|
llvm::Value *LocalAddr,
|
2012-12-18 22:30:41 +08:00
|
|
|
CGBuilderTy &Builder) {
|
2013-05-16 08:45:23 +08:00
|
|
|
assert(DebugKind >= CodeGenOptions::LimitedDebugInfo);
|
2012-12-18 22:30:41 +08:00
|
|
|
ASTContext &C = CGM.getContext();
|
|
|
|
const BlockDecl *blockDecl = block.getBlockDecl();
|
|
|
|
|
|
|
|
// Collect some general information about the block's location.
|
|
|
|
SourceLocation loc = blockDecl->getCaretLocation();
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *tunit = getOrCreateFile(loc);
|
2012-12-18 22:30:41 +08:00
|
|
|
unsigned line = getLineNumber(loc);
|
|
|
|
unsigned column = getColumnNumber(loc);
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
// Build the debug-info type for the block literal.
|
2015-09-11 02:39:45 +08:00
|
|
|
getDeclContextDescriptor(blockDecl);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
const llvm::StructLayout *blockLayout =
|
2014-10-27 07:40:33 +08:00
|
|
|
CGM.getDataLayout().getStructLayout(block.StructureType);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2014-12-10 02:39:32 +08:00
|
|
|
SmallVector<llvm::Metadata *, 16> fields;
|
2012-12-18 22:30:41 +08:00
|
|
|
fields.push_back(createFieldType("__isa", C.VoidPtrTy, 0, loc, AS_public,
|
|
|
|
blockLayout->getElementOffsetInBits(0),
|
|
|
|
tunit, tunit));
|
|
|
|
fields.push_back(createFieldType("__flags", C.IntTy, 0, loc, AS_public,
|
|
|
|
blockLayout->getElementOffsetInBits(1),
|
|
|
|
tunit, tunit));
|
|
|
|
fields.push_back(createFieldType("__reserved", C.IntTy, 0, loc, AS_public,
|
|
|
|
blockLayout->getElementOffsetInBits(2),
|
|
|
|
tunit, tunit));
|
2014-11-05 09:01:30 +08:00
|
|
|
auto *FnTy = block.getBlockExpr()->getFunctionType();
|
|
|
|
auto FnPtrType = CGM.getContext().getPointerType(FnTy->desugar());
|
|
|
|
fields.push_back(createFieldType("__FuncPtr", FnPtrType, 0, loc, AS_public,
|
2012-12-18 22:30:41 +08:00
|
|
|
blockLayout->getElementOffsetInBits(3),
|
|
|
|
tunit, tunit));
|
2014-10-27 07:40:33 +08:00
|
|
|
fields.push_back(createFieldType(
|
|
|
|
"__descriptor", C.getPointerType(block.NeedsCopyDispose
|
|
|
|
? C.getBlockDescriptorExtendedType()
|
|
|
|
: C.getBlockDescriptorType()),
|
|
|
|
0, loc, AS_public, blockLayout->getElementOffsetInBits(4), tunit, tunit));
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// We want to sort the captures by offset, not because DWARF
|
|
|
|
// requires this, but because we're paranoid about debuggers.
|
|
|
|
SmallVector<BlockLayoutChunk, 8> chunks;
|
|
|
|
|
|
|
|
// 'this' capture.
|
|
|
|
if (blockDecl->capturesCXXThis()) {
|
|
|
|
BlockLayoutChunk chunk;
|
|
|
|
chunk.OffsetInBits =
|
2014-10-27 07:40:33 +08:00
|
|
|
blockLayout->getElementOffsetInBits(block.CXXThisIndex);
|
2014-05-21 13:09:00 +08:00
|
|
|
chunk.Capture = nullptr;
|
2012-12-18 22:30:41 +08:00
|
|
|
chunks.push_back(chunk);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Variable captures.
|
2014-03-15 02:34:04 +08:00
|
|
|
for (const auto &capture : blockDecl->captures()) {
|
2012-12-18 22:30:41 +08:00
|
|
|
const VarDecl *variable = capture.getVariable();
|
|
|
|
const CGBlockInfo::Capture &captureInfo = block.getCapture(variable);
|
|
|
|
|
|
|
|
// Ignore constant captures.
|
|
|
|
if (captureInfo.isConstant())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
BlockLayoutChunk chunk;
|
|
|
|
chunk.OffsetInBits =
|
2014-10-27 07:40:33 +08:00
|
|
|
blockLayout->getElementOffsetInBits(captureInfo.getIndex());
|
2012-12-18 22:30:41 +08:00
|
|
|
chunk.Capture = &capture;
|
|
|
|
chunks.push_back(chunk);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sort by offset.
|
|
|
|
llvm::array_pod_sort(chunks.begin(), chunks.end());
|
|
|
|
|
2014-10-27 07:40:33 +08:00
|
|
|
for (SmallVectorImpl<BlockLayoutChunk>::iterator i = chunks.begin(),
|
|
|
|
e = chunks.end();
|
|
|
|
i != e; ++i) {
|
2012-12-18 22:30:41 +08:00
|
|
|
uint64_t offsetInBits = i->OffsetInBits;
|
|
|
|
const BlockDecl::Capture *capture = i->Capture;
|
|
|
|
|
|
|
|
// If we have a null capture, this must be the C++ 'this' capture.
|
|
|
|
if (!capture) {
|
|
|
|
const CXXMethodDecl *method =
|
2014-10-27 07:40:33 +08:00
|
|
|
cast<CXXMethodDecl>(blockDecl->getNonClosureContext());
|
2012-12-18 22:30:41 +08:00
|
|
|
QualType type = method->getThisType(C);
|
|
|
|
|
|
|
|
fields.push_back(createFieldType("this", type, 0, loc, AS_public,
|
|
|
|
offsetInBits, tunit, tunit));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
const VarDecl *variable = capture->getVariable();
|
|
|
|
StringRef name = variable->getName();
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *fieldType;
|
2012-12-18 22:30:41 +08:00
|
|
|
if (capture->isByRef()) {
|
2014-07-30 09:30:47 +08:00
|
|
|
TypeInfo PtrInfo = C.getTypeInfo(C.VoidPtrTy);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// FIXME: this creates a second copy of this type!
|
|
|
|
uint64_t xoffset;
|
|
|
|
fieldType = EmitTypeForVarWithBlocksAttr(variable, &xoffset);
|
2014-07-30 09:30:47 +08:00
|
|
|
fieldType = DBuilder.createPointerType(fieldType, PtrInfo.Width);
|
|
|
|
fieldType =
|
|
|
|
DBuilder.createMemberType(tunit, name, tunit, line, PtrInfo.Width,
|
|
|
|
PtrInfo.Align, offsetInBits, 0, fieldType);
|
2012-12-18 22:30:41 +08:00
|
|
|
} else {
|
2014-10-27 07:40:33 +08:00
|
|
|
fieldType = createFieldType(name, variable->getType(), 0, loc, AS_public,
|
|
|
|
offsetInBits, tunit, tunit);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
fields.push_back(fieldType);
|
|
|
|
}
|
|
|
|
|
|
|
|
SmallString<36> typeName;
|
2014-10-27 07:40:33 +08:00
|
|
|
llvm::raw_svector_ostream(typeName) << "__block_literal_"
|
|
|
|
<< CGM.getUniqueBlockCount();
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DINodeArray fieldsArray = DBuilder.getOrCreateArray(fields);
|
2012-12-18 22:30:41 +08:00
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *type = DBuilder.createStructType(
|
2015-04-21 02:51:48 +08:00
|
|
|
tunit, typeName.str(), tunit, line,
|
|
|
|
CGM.getContext().toBits(block.BlockSize),
|
|
|
|
CGM.getContext().toBits(block.BlockAlign), 0, nullptr, fieldsArray);
|
2012-12-18 22:30:41 +08:00
|
|
|
type = DBuilder.createPointerType(type, CGM.PointerWidthInBits);
|
|
|
|
|
|
|
|
// Get overall information about the block.
|
2015-04-30 00:40:08 +08:00
|
|
|
unsigned flags = llvm::DINode::FlagArtificial;
|
|
|
|
auto *scope = cast<llvm::DILocalScope>(LexicalBlockStack.back());
|
2012-12-18 22:30:41 +08:00
|
|
|
|
|
|
|
// Create the descriptor for the parameter.
|
2015-08-01 01:56:14 +08:00
|
|
|
auto *debugVar = DBuilder.createParameterVariable(
|
|
|
|
scope, Arg->getName(), ArgNo, tunit, line, type,
|
|
|
|
CGM.getLangOpts().Optimize, flags);
|
2013-03-15 01:53:33 +08:00
|
|
|
|
2013-03-15 05:52:59 +08:00
|
|
|
if (LocalAddr) {
|
2013-03-15 01:53:33 +08:00
|
|
|
// Insert an llvm.dbg.value into the current block.
|
2015-04-16 05:18:30 +08:00
|
|
|
DBuilder.insertDbgValueIntrinsic(
|
2014-10-27 07:40:33 +08:00
|
|
|
LocalAddr, 0, debugVar, DBuilder.createExpression(),
|
2015-04-16 05:18:30 +08:00
|
|
|
llvm::DebugLoc::get(line, column, scope), Builder.GetInsertBlock());
|
2013-03-15 05:52:59 +08:00
|
|
|
}
|
2013-03-15 01:53:33 +08:00
|
|
|
|
2013-03-15 05:52:59 +08:00
|
|
|
// Insert an llvm.dbg.declare into the current block.
|
2015-04-16 05:18:30 +08:00
|
|
|
DBuilder.insertDeclare(Arg, debugVar, DBuilder.createExpression(),
|
|
|
|
llvm::DebugLoc::get(line, column, scope),
|
|
|
|
Builder.GetInsertBlock());
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIDerivedType *
|
2013-08-20 09:28:15 +08:00
|
|
|
CGDebugInfo::getOrCreateStaticDataMemberDeclarationOrNull(const VarDecl *D) {
|
|
|
|
if (!D->isStaticDataMember())
|
2015-04-21 05:17:26 +08:00
|
|
|
return nullptr;
|
2015-02-28 08:13:13 +08:00
|
|
|
|
2014-12-10 02:39:32 +08:00
|
|
|
auto MI = StaticDataMemberCache.find(D->getCanonicalDecl());
|
2013-08-20 09:28:15 +08:00
|
|
|
if (MI != StaticDataMemberCache.end()) {
|
|
|
|
assert(MI->second && "Static data member declaration should still exist");
|
2015-07-25 02:05:58 +08:00
|
|
|
return MI->second;
|
2013-08-20 09:28:15 +08:00
|
|
|
}
|
2013-08-21 05:49:21 +08:00
|
|
|
|
|
|
|
// If the member wasn't found in the cache, lazily construct and add it to the
|
|
|
|
// type (used when a limited form of the type is emitted).
|
2014-08-30 06:44:27 +08:00
|
|
|
auto DC = D->getDeclContext();
|
2015-09-11 02:39:45 +08:00
|
|
|
auto *Ctxt = cast<llvm::DICompositeType>(getDeclContextDescriptor(D));
|
2014-08-30 06:44:27 +08:00
|
|
|
return CreateRecordStaticField(D, Ctxt, cast<RecordDecl>(DC));
|
2013-08-20 09:28:15 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIGlobalVariable *CGDebugInfo::CollectAnonRecordDecls(
|
|
|
|
const RecordDecl *RD, llvm::DIFile *Unit, unsigned LineNo,
|
|
|
|
StringRef LinkageName, llvm::GlobalVariable *Var, llvm::DIScope *DContext) {
|
|
|
|
llvm::DIGlobalVariable *GV = nullptr;
|
2014-04-10 13:20:00 +08:00
|
|
|
|
|
|
|
for (const auto *Field : RD->fields()) {
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *FieldTy = getOrCreateType(Field->getType(), Unit);
|
2014-04-10 13:20:00 +08:00
|
|
|
StringRef FieldName = Field->getName();
|
|
|
|
|
|
|
|
// Ignore unnamed fields, but recurse into anonymous records.
|
|
|
|
if (FieldName.empty()) {
|
|
|
|
const RecordType *RT = dyn_cast<RecordType>(Field->getType());
|
|
|
|
if (RT)
|
|
|
|
GV = CollectAnonRecordDecls(RT->getDecl(), Unit, LineNo, LinkageName,
|
|
|
|
Var, DContext);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// Use VarDecl's Tag, Scope and Line number.
|
2015-04-21 05:17:26 +08:00
|
|
|
GV = DBuilder.createGlobalVariable(DContext, FieldName, LinkageName, Unit,
|
|
|
|
LineNo, FieldTy,
|
|
|
|
Var->hasInternalLinkage(), Var, nullptr);
|
2014-04-10 13:20:00 +08:00
|
|
|
}
|
|
|
|
return GV;
|
|
|
|
}
|
|
|
|
|
2013-08-30 16:53:09 +08:00
|
|
|
void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var,
|
2012-12-18 22:30:41 +08:00
|
|
|
const VarDecl *D) {
|
2013-05-16 08:45:23 +08:00
|
|
|
assert(DebugKind >= CodeGenOptions::LimitedDebugInfo);
|
2012-12-18 22:30:41 +08:00
|
|
|
// Create global variable debug descriptor.
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *Unit = nullptr;
|
|
|
|
llvm::DIScope *DContext = nullptr;
|
2014-11-18 11:40:46 +08:00
|
|
|
unsigned LineNo;
|
|
|
|
StringRef DeclName, LinkageName;
|
|
|
|
QualType T;
|
|
|
|
collectVarDeclProps(D, Unit, LineNo, T, DeclName, LinkageName, DContext);
|
2014-04-10 13:20:00 +08:00
|
|
|
|
|
|
|
// Attempt to store one global variable for the declaration - even if we
|
|
|
|
// emit a lot of fields.
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIGlobalVariable *GV = nullptr;
|
2014-04-10 13:20:00 +08:00
|
|
|
|
|
|
|
// If this is an anonymous union then we'll want to emit a global
|
|
|
|
// variable for each member of the anonymous union so that it's possible
|
|
|
|
// to find the name of any field in the union.
|
|
|
|
if (T->isUnionType() && DeclName.empty()) {
|
2015-11-21 01:41:12 +08:00
|
|
|
const RecordDecl *RD = T->castAs<RecordType>()->getDecl();
|
2014-10-27 07:40:33 +08:00
|
|
|
assert(RD->isAnonymousStructOrUnion() &&
|
|
|
|
"unnamed non-anonymous struct or union?");
|
2014-04-10 13:20:00 +08:00
|
|
|
GV = CollectAnonRecordDecls(RD, Unit, LineNo, LinkageName, Var, DContext);
|
|
|
|
} else {
|
2014-10-21 01:42:23 +08:00
|
|
|
GV = DBuilder.createGlobalVariable(
|
2014-04-10 13:20:00 +08:00
|
|
|
DContext, DeclName, LinkageName, Unit, LineNo, getOrCreateType(T, Unit),
|
|
|
|
Var->hasInternalLinkage(), Var,
|
|
|
|
getOrCreateStaticDataMemberDeclarationOrNull(D));
|
|
|
|
}
|
2014-12-10 02:39:32 +08:00
|
|
|
DeclCache[D->getCanonicalDecl()].reset(static_cast<llvm::Metadata *>(GV));
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2013-08-30 16:53:09 +08:00
|
|
|
void CGDebugInfo::EmitGlobalVariable(const ValueDecl *VD,
|
|
|
|
llvm::Constant *Init) {
|
2013-05-16 08:45:23 +08:00
|
|
|
assert(DebugKind >= CodeGenOptions::LimitedDebugInfo);
|
2013-08-30 16:53:09 +08:00
|
|
|
// Create the descriptor for the variable.
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *Unit = getOrCreateFile(VD->getLocation());
|
2013-08-30 16:53:09 +08:00
|
|
|
StringRef Name = VD->getName();
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *Ty = getOrCreateType(VD->getType(), Unit);
|
2013-08-30 16:53:09 +08:00
|
|
|
if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(VD)) {
|
|
|
|
const EnumDecl *ED = cast<EnumDecl>(ECD->getDeclContext());
|
|
|
|
assert(isa<EnumType>(ED->getTypeForDecl()) && "Enum without EnumType?");
|
|
|
|
Ty = getOrCreateType(QualType(ED->getTypeForDecl(), 0), Unit);
|
|
|
|
}
|
2015-04-22 02:43:54 +08:00
|
|
|
// Do not use global variables for enums.
|
|
|
|
//
|
|
|
|
// FIXME: why not?
|
2015-04-16 09:00:56 +08:00
|
|
|
if (Ty->getTag() == llvm::dwarf::DW_TAG_enumeration_type)
|
2013-08-30 16:53:09 +08:00
|
|
|
return;
|
2014-04-05 04:56:17 +08:00
|
|
|
// Do not emit separate definitions for function local const/statics.
|
|
|
|
if (isa<FunctionDecl>(VD->getDeclContext()))
|
|
|
|
return;
|
2014-04-05 15:23:17 +08:00
|
|
|
VD = cast<ValueDecl>(VD->getCanonicalDecl());
|
2014-11-20 03:42:40 +08:00
|
|
|
auto *VarD = cast<VarDecl>(VD);
|
2014-11-21 08:20:58 +08:00
|
|
|
if (VarD->isStaticDataMember()) {
|
|
|
|
auto *RD = cast<RecordDecl>(VarD->getDeclContext());
|
2015-09-11 02:39:45 +08:00
|
|
|
getDeclContextDescriptor(VarD);
|
2014-11-20 03:42:40 +08:00
|
|
|
// Ensure that the type is retained even though it's otherwise unreferenced.
|
|
|
|
RetainedTypes.push_back(
|
2014-11-21 08:20:58 +08:00
|
|
|
CGM.getContext().getRecordType(RD).getAsOpaquePtr());
|
2014-11-20 03:42:40 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-09-11 02:39:45 +08:00
|
|
|
llvm::DIScope *DContext = getDeclContextDescriptor(VD);
|
2014-11-21 08:20:58 +08:00
|
|
|
|
2014-12-10 02:39:32 +08:00
|
|
|
auto &GV = DeclCache[VD];
|
|
|
|
if (GV)
|
2014-04-05 15:23:17 +08:00
|
|
|
return;
|
2014-12-10 02:39:32 +08:00
|
|
|
GV.reset(DBuilder.createGlobalVariable(
|
2014-04-05 15:46:57 +08:00
|
|
|
DContext, Name, StringRef(), Unit, getLineNumber(VD->getLocation()), Ty,
|
2014-12-10 02:39:32 +08:00
|
|
|
true, Init, getOrCreateStaticDataMemberDeclarationOrNull(VarD)));
|
2013-05-20 12:58:53 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIScope *CGDebugInfo::getCurrentContextDescriptor(const Decl *D) {
|
2013-05-20 12:58:53 +08:00
|
|
|
if (!LexicalBlockStack.empty())
|
2015-04-21 02:32:15 +08:00
|
|
|
return LexicalBlockStack.back();
|
2015-09-12 01:23:08 +08:00
|
|
|
llvm::DIScope *Mod = getParentModuleOrNull(D);
|
|
|
|
return getContextDescriptor(D, Mod ? Mod : TheCU);
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
|
|
|
|
2013-04-22 14:13:21 +08:00
|
|
|
void CGDebugInfo::EmitUsingDirective(const UsingDirectiveDecl &UD) {
|
2013-05-20 12:58:53 +08:00
|
|
|
if (CGM.getCodeGenOpts().getDebugInfo() < CodeGenOptions::LimitedDebugInfo)
|
|
|
|
return;
|
2015-12-11 02:52:50 +08:00
|
|
|
const NamespaceDecl *NSDecl = UD.getNominatedNamespace();
|
|
|
|
if (!NSDecl->isAnonymousNamespace() ||
|
|
|
|
CGM.getCodeGenOpts().DebugExplicitImport) {
|
|
|
|
DBuilder.createImportedModule(
|
|
|
|
getCurrentContextDescriptor(cast<Decl>(UD.getDeclContext())),
|
|
|
|
getOrCreateNameSpace(NSDecl),
|
|
|
|
getLineNumber(UD.getLocation()));
|
|
|
|
}
|
2013-04-22 14:13:21 +08:00
|
|
|
}
|
|
|
|
|
2013-05-20 12:58:53 +08:00
|
|
|
void CGDebugInfo::EmitUsingDecl(const UsingDecl &UD) {
|
|
|
|
if (CGM.getCodeGenOpts().getDebugInfo() < CodeGenOptions::LimitedDebugInfo)
|
|
|
|
return;
|
|
|
|
assert(UD.shadow_size() &&
|
|
|
|
"We shouldn't be codegening an invalid UsingDecl containing no decls");
|
|
|
|
// Emitting one decl is sufficient - debuggers can detect that this is an
|
|
|
|
// overloaded name & provide lookup for all the overloads.
|
|
|
|
const UsingShadowDecl &USD = **UD.shadow_begin();
|
2015-04-30 00:40:08 +08:00
|
|
|
if (llvm::DINode *Target =
|
2013-06-08 06:54:39 +08:00
|
|
|
getDeclarationOrDefinition(USD.getUnderlyingDecl()))
|
2013-05-20 12:58:53 +08:00
|
|
|
DBuilder.createImportedDeclaration(
|
|
|
|
getCurrentContextDescriptor(cast<Decl>(USD.getDeclContext())), Target,
|
|
|
|
getLineNumber(USD.getLocation()));
|
|
|
|
}
|
|
|
|
|
2015-07-01 01:39:51 +08:00
|
|
|
void CGDebugInfo::EmitImportDecl(const ImportDecl &ID) {
|
2015-12-19 03:44:31 +08:00
|
|
|
if (Module *M = ID.getImportedModule()) {
|
|
|
|
auto Info = ExternalASTSource::ASTSourceDescriptor(*ID.getImportedModule());
|
|
|
|
DBuilder.createImportedDeclaration(
|
|
|
|
getCurrentContextDescriptor(cast<Decl>(ID.getDeclContext())),
|
|
|
|
getOrCreateModuleRef(Info, DebugTypeExtRefs),
|
|
|
|
getLineNumber(ID.getLocation()));
|
|
|
|
}
|
2015-07-01 01:39:51 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIImportedEntity *
|
2013-05-21 06:50:41 +08:00
|
|
|
CGDebugInfo::EmitNamespaceAlias(const NamespaceAliasDecl &NA) {
|
|
|
|
if (CGM.getCodeGenOpts().getDebugInfo() < CodeGenOptions::LimitedDebugInfo)
|
2015-04-22 02:43:54 +08:00
|
|
|
return nullptr;
|
2014-12-10 02:39:32 +08:00
|
|
|
auto &VH = NamespaceAliasCache[&NA];
|
2013-05-21 06:50:41 +08:00
|
|
|
if (VH)
|
2015-04-30 00:40:08 +08:00
|
|
|
return cast<llvm::DIImportedEntity>(VH);
|
|
|
|
llvm::DIImportedEntity *R;
|
2013-05-21 06:50:41 +08:00
|
|
|
if (const NamespaceAliasDecl *Underlying =
|
|
|
|
dyn_cast<NamespaceAliasDecl>(NA.getAliasedNamespace()))
|
|
|
|
// This could cache & dedup here rather than relying on metadata deduping.
|
2014-04-06 14:30:03 +08:00
|
|
|
R = DBuilder.createImportedDeclaration(
|
2013-05-21 06:50:41 +08:00
|
|
|
getCurrentContextDescriptor(cast<Decl>(NA.getDeclContext())),
|
|
|
|
EmitNamespaceAlias(*Underlying), getLineNumber(NA.getLocation()),
|
|
|
|
NA.getName());
|
|
|
|
else
|
2014-04-06 14:30:03 +08:00
|
|
|
R = DBuilder.createImportedDeclaration(
|
2013-05-21 06:50:41 +08:00
|
|
|
getCurrentContextDescriptor(cast<Decl>(NA.getDeclContext())),
|
|
|
|
getOrCreateNameSpace(cast<NamespaceDecl>(NA.getAliasedNamespace())),
|
|
|
|
getLineNumber(NA.getLocation()), NA.getName());
|
2014-12-10 02:39:32 +08:00
|
|
|
VH.reset(R);
|
2013-05-21 06:50:41 +08:00
|
|
|
return R;
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DINamespace *
|
2012-12-18 22:30:41 +08:00
|
|
|
CGDebugInfo::getOrCreateNameSpace(const NamespaceDecl *NSDecl) {
|
2013-08-17 06:52:07 +08:00
|
|
|
NSDecl = NSDecl->getCanonicalDecl();
|
2014-12-10 02:39:32 +08:00
|
|
|
auto I = NameSpaceCache.find(NSDecl);
|
2012-12-18 22:30:41 +08:00
|
|
|
if (I != NameSpaceCache.end())
|
2015-04-30 00:40:08 +08:00
|
|
|
return cast<llvm::DINamespace>(I->second);
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
unsigned LineNo = getLineNumber(NSDecl->getLocation());
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIFile *FileD = getOrCreateFile(NSDecl->getLocation());
|
2015-09-11 02:39:45 +08:00
|
|
|
llvm::DIScope *Context = getDeclContextDescriptor(NSDecl);
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DINamespace *NS =
|
2015-04-21 06:09:57 +08:00
|
|
|
DBuilder.createNameSpace(Context, NSDecl->getName(), FileD, LineNo);
|
2014-12-10 02:39:32 +08:00
|
|
|
NameSpaceCache[NSDecl].reset(NS);
|
2012-12-18 22:30:41 +08:00
|
|
|
return NS;
|
|
|
|
}
|
|
|
|
|
2015-09-23 07:26:43 +08:00
|
|
|
void CGDebugInfo::setDwoId(uint64_t Signature) {
|
|
|
|
assert(TheCU && "no main compile unit");
|
|
|
|
TheCU->setDWOId(Signature);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
void CGDebugInfo::finalize() {
|
2014-05-08 00:56:58 +08:00
|
|
|
// Creating types might create further types - invalidating the current
|
|
|
|
// element and the size(), so don't cache/reference them.
|
|
|
|
for (size_t i = 0; i != ObjCInterfaceCache.size(); ++i) {
|
|
|
|
ObjCInterfaceCacheEntry E = ObjCInterfaceCache[i];
|
2015-04-30 00:40:08 +08:00
|
|
|
llvm::DIType *Ty = E.Type->getDecl()->getDefinition()
|
2015-04-12 03:05:04 +08:00
|
|
|
? CreateTypeDefinition(E.Type, E.Unit)
|
|
|
|
: E.Decl;
|
2015-04-30 00:40:08 +08:00
|
|
|
DBuilder.replaceTemporary(llvm::TempDIType(E.Decl), Ty);
|
2014-05-08 00:56:58 +08:00
|
|
|
}
|
|
|
|
|
2014-05-06 11:42:01 +08:00
|
|
|
for (auto p : ReplaceMap) {
|
|
|
|
assert(p.second);
|
2015-04-30 00:40:08 +08:00
|
|
|
auto *Ty = cast<llvm::DIType>(p.second);
|
2015-04-16 09:00:56 +08:00
|
|
|
assert(Ty->isForwardDecl());
|
2013-05-16 08:45:12 +08:00
|
|
|
|
2014-05-06 11:42:01 +08:00
|
|
|
auto it = TypeCache.find(p.first);
|
2014-05-06 05:21:39 +08:00
|
|
|
assert(it != TypeCache.end());
|
|
|
|
assert(it->second);
|
2013-03-12 02:33:46 +08:00
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
DBuilder.replaceTemporary(llvm::TempDIType(Ty),
|
|
|
|
cast<llvm::DIType>(it->second));
|
2012-12-18 22:30:41 +08:00
|
|
|
}
|
2013-03-12 02:33:46 +08:00
|
|
|
|
2014-11-18 11:40:51 +08:00
|
|
|
for (const auto &p : FwdDeclReplaceMap) {
|
|
|
|
assert(p.second);
|
2015-04-18 08:07:30 +08:00
|
|
|
llvm::TempMDNode FwdDecl(cast<llvm::MDNode>(p.second));
|
2014-12-10 02:39:32 +08:00
|
|
|
llvm::Metadata *Repl;
|
2014-11-18 11:40:51 +08:00
|
|
|
|
|
|
|
auto it = DeclCache.find(p.first);
|
2014-12-19 09:02:11 +08:00
|
|
|
// If there has been no definition for the declaration, call RAUW
|
2014-11-18 11:40:51 +08:00
|
|
|
// with ourselves, that will destroy the temporary MDNode and
|
|
|
|
// replace it with a standard one, avoiding leaking memory.
|
|
|
|
if (it == DeclCache.end())
|
2014-12-10 02:39:32 +08:00
|
|
|
Repl = p.second;
|
2014-11-18 11:40:51 +08:00
|
|
|
else
|
2014-12-10 02:39:32 +08:00
|
|
|
Repl = it->second;
|
2014-11-20 02:53:46 +08:00
|
|
|
|
2015-04-18 08:07:30 +08:00
|
|
|
DBuilder.replaceTemporary(std::move(FwdDecl), cast<llvm::MDNode>(Repl));
|
2014-11-18 11:40:51 +08:00
|
|
|
}
|
|
|
|
|
2013-03-12 02:33:46 +08:00
|
|
|
// We keep our own list of retained types, because we need to look
|
|
|
|
// up the final type in the type cache.
|
2015-08-28 06:56:46 +08:00
|
|
|
for (auto &RT : RetainedTypes)
|
2015-08-28 05:21:19 +08:00
|
|
|
if (auto MD = TypeCache[RT])
|
|
|
|
DBuilder.retainType(cast<llvm::DIType>(MD));
|
2013-03-12 02:33:46 +08:00
|
|
|
|
2012-12-18 22:30:41 +08:00
|
|
|
DBuilder.finalize();
|
|
|
|
}
|
2014-09-25 01:01:27 +08:00
|
|
|
|
|
|
|
void CGDebugInfo::EmitExplicitCastType(QualType Ty) {
|
|
|
|
if (CGM.getCodeGenOpts().getDebugInfo() < CodeGenOptions::LimitedDebugInfo)
|
|
|
|
return;
|
2015-03-28 06:58:05 +08:00
|
|
|
|
2015-04-21 02:51:48 +08:00
|
|
|
if (auto *DieTy = getOrCreateType(Ty, getOrCreateMainFile()))
|
2015-03-28 06:58:05 +08:00
|
|
|
// Don't ignore in case of explicit cast where it is referenced indirectly.
|
|
|
|
DBuilder.retainType(DieTy);
|
2014-09-25 01:01:27 +08:00
|
|
|
}
|