DebugInfo: Remove DICompositeType mutation API

Change `DIBuilder` to mutate `MDCompositeTypeBase` directly, and remove
the wrapping API in `DICompositeType`.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234289 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duncan P. N. Exon Smith
2015-04-07 04:12:02 +00:00
parent 351071c069
commit b135631d2e
3 changed files with 13 additions and 36 deletions

View File

@ -125,23 +125,8 @@ static bool isDescriptorRef(const Metadata *MD) {
}
#endif
void DICompositeType::setArraysHelper(MDNode *Elements, MDNode *TParams) {
TypedTrackingMDRef<MDCompositeTypeBase> N(get());
if (Elements)
N->replaceElements(cast<MDTuple>(Elements));
if (TParams)
N->replaceTemplateParams(cast<MDTuple>(TParams));
DbgNode = N;
}
DIScopeRef DIScope::getRef() const { return MDScopeRef::get(get()); }
void DICompositeType::setContainingType(DICompositeType ContainingType) {
TypedTrackingMDRef<MDCompositeTypeBase> N(get());
N->replaceVTableHolder(MDTypeRef::get(ContainingType));
DbgNode = N;
}
bool DIVariable::isInlinedFnArgument(const Function *CurFn) {
assert(CurFn && "Invalid function");
DISubprogram SP = dyn_cast<MDSubprogram>(getContext());