DebugInfo: Unify & optimize the lazy addition of record types

Rather than going through the whole getOrCreateType machinery to
manifest a type, cut straight to the implementation because we know we
have to do work.

While the previous implementation was sufficient for the two cases
(completeness and required completeness) we have already (the general
machinery could inspect the type for those attributes & go down the full
definition path), a pending change (to emit info for types when we emit
their vtables) won't have that luxury & we'll need to force the creation
rather than relying on the general purpose routine.

llvm-svn: 188486
This commit is contained in:
David Blaikie
2013-08-15 20:49:17 +00:00
parent 0a41d9ae7f
commit b2e86eb64a
4 changed files with 32 additions and 17 deletions

View File

@@ -100,7 +100,7 @@ namespace {
virtual void HandleTagDeclRequiredDefinition(const TagDecl *D) LLVM_OVERRIDE {
if (CodeGen::CGDebugInfo *DI = Builder->getModuleDebugInfo())
if (const RecordDecl *RD = dyn_cast<RecordDecl>(D))
DI->completeFwdDecl(*RD);
DI->completeRequiredType(RD);
}
virtual void HandleTranslationUnit(ASTContext &Ctx) {