Add asserts to DIBuilder & fix DINameSpace::Verify to allow unnamed namespaces.

llvm-svn: 176837
This commit is contained in:
David Blaikie 2013-03-11 23:21:19 +00:00
parent d42740843f
commit 085abe38e4
2 changed files with 31 additions and 8 deletions

View File

@ -487,7 +487,9 @@ DIType DIBuilder::createClassType(DIDescriptor Context, StringRef Name,
DIType DerivedFrom, DIArray Elements, DIType DerivedFrom, DIArray Elements,
MDNode *VTableHolder, MDNode *VTableHolder,
MDNode *TemplateParams) { MDNode *TemplateParams) {
// TAG_class_type is encoded in DICompositeType format. assert((!Context || Context.Verify()) &&
"createClassType should be called with a valid Context");
// TAG_class_type is encoded in DICompositeType format.
Value *Elts[] = { Value *Elts[] = {
GetTagConstant(VMContext, dwarf::DW_TAG_class_type), GetTagConstant(VMContext, dwarf::DW_TAG_class_type),
getNonCompileUnitScope(Context), getNonCompileUnitScope(Context),
@ -504,7 +506,9 @@ DIType DIBuilder::createClassType(DIDescriptor Context, StringRef Name,
VTableHolder, VTableHolder,
TemplateParams TemplateParams
}; };
return DIType(MDNode::get(VMContext, Elts)); DIType R(MDNode::get(VMContext, Elts));
assert(R.Verify() && "createClassType should return a verifiable DIType");
return R;
} }
/// createStructType - Create debugging information entry for a struct. /// createStructType - Create debugging information entry for a struct.
@ -534,7 +538,9 @@ DICompositeType DIBuilder::createStructType(DIDescriptor Context,
VTableHolder, VTableHolder,
NULL, NULL,
}; };
return DICompositeType(MDNode::get(VMContext, Elts)); DICompositeType R(MDNode::get(VMContext, Elts));
assert(R.Verify() && "createStructType should return a verifiable DIType");
return R;
} }
/// createUnionType - Create debugging information entry for an union. /// createUnionType - Create debugging information entry for an union.
@ -766,6 +772,8 @@ DIType DIBuilder::createForwardDecl(unsigned Tag, StringRef Name,
ConstantInt::get(Type::getInt32Ty(VMContext), RuntimeLang) ConstantInt::get(Type::getInt32Ty(VMContext), RuntimeLang)
}; };
MDNode *Node = MDNode::getTemporary(VMContext, Elts); MDNode *Node = MDNode::getTemporary(VMContext, Elts);
assert(DIType(Node).Verify() &&
"createForwardDecl result should be verifiable");
return DIType(Node); return DIType(Node);
} }
@ -846,6 +854,11 @@ DIVariable DIBuilder::createLocalVariable(unsigned Tag, DIDescriptor Scope,
unsigned LineNo, DIType Ty, unsigned LineNo, DIType Ty,
bool AlwaysPreserve, unsigned Flags, bool AlwaysPreserve, unsigned Flags,
unsigned ArgNo) { unsigned ArgNo) {
DIDescriptor Context(getNonCompileUnitScope(Scope));
assert((!Context || Context.Verify()) &&
"createLocalVariable should be called with a valid Context");
assert(Ty.Verify() &&
"createLocalVariable should be called with a valid type");
Value *Elts[] = { Value *Elts[] = {
GetTagConstant(VMContext, Tag), GetTagConstant(VMContext, Tag),
getNonCompileUnitScope(Scope), getNonCompileUnitScope(Scope),
@ -865,6 +878,8 @@ DIVariable DIBuilder::createLocalVariable(unsigned Tag, DIDescriptor Scope,
NamedMDNode *FnLocals = getOrInsertFnSpecificMDNode(M, Fn); NamedMDNode *FnLocals = getOrInsertFnSpecificMDNode(M, Fn);
FnLocals->addOperand(Node); FnLocals->addOperand(Node);
} }
assert(DIVariable(Node).Verify() &&
"createLocalVariable should return a verifiable DIVariable");
return DIVariable(Node); return DIVariable(Node);
} }
@ -990,7 +1005,10 @@ DINameSpace DIBuilder::createNameSpace(DIDescriptor Scope, StringRef Name,
File, File,
ConstantInt::get(Type::getInt32Ty(VMContext), LineNo) ConstantInt::get(Type::getInt32Ty(VMContext), LineNo)
}; };
return DINameSpace(MDNode::get(VMContext, Elts)); DINameSpace R(MDNode::get(VMContext, Elts));
assert(R.Verify() &&
"createNameSpace should return a verifiable DINameSpace");
return R;
} }
/// createLexicalBlockFile - This creates a new MDNode that encapsulates /// createLexicalBlockFile - This creates a new MDNode that encapsulates
@ -1002,7 +1020,11 @@ DILexicalBlockFile DIBuilder::createLexicalBlockFile(DIDescriptor Scope,
Scope, Scope,
File File
}; };
return DILexicalBlockFile(MDNode::get(VMContext, Elts)); DILexicalBlockFile R(MDNode::get(VMContext, Elts));
assert(
R.Verify() &&
"createLexicalBlockFile should return a verifiable DILexicalBlockFile");
return R;
} }
DILexicalBlock DIBuilder::createLexicalBlock(DIDescriptor Scope, DIFile File, DILexicalBlock DIBuilder::createLexicalBlock(DIDescriptor Scope, DIFile File,
@ -1017,7 +1039,10 @@ DILexicalBlock DIBuilder::createLexicalBlock(DIDescriptor Scope, DIFile File,
File, File,
ConstantInt::get(Type::getInt32Ty(VMContext), unique_id++) ConstantInt::get(Type::getInt32Ty(VMContext), unique_id++)
}; };
return DILexicalBlock(MDNode::get(VMContext, Elts)); DILexicalBlock R(MDNode::get(VMContext, Elts));
assert(R.Verify() &&
"createLexicalBlock should return a verifiable DILexicalBlock");
return R;
} }
/// insertDeclare - Insert a new llvm.dbg.declare intrinsic call. /// insertDeclare - Insert a new llvm.dbg.declare intrinsic call.

View File

@ -517,8 +517,6 @@ bool DILocation::Verify() const {
bool DINameSpace::Verify() const { bool DINameSpace::Verify() const {
if (!DbgNode) if (!DbgNode)
return false; return false;
if (getName().empty())
return false;
return true; return true;
} }