diff options
author | Devang Patel <dpatel@apple.com> | 2011-05-31 22:21:11 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2011-05-31 22:21:11 +0000 |
commit | 5c71c2154bb36251ce9a4918f1cda410598bc9a5 (patch) | |
tree | 9dcf58d4b326f1809ae89cfe47ebec6889d43991 /clang/lib/CodeGen | |
parent | aacf92ebb43235eecf626ae633e3beb5b6dcd25b (diff) | |
download | bcm5719-llvm-5c71c2154bb36251ce9a4918f1cda410598bc9a5.tar.gz bcm5719-llvm-5c71c2154bb36251ce9a4918f1cda410598bc9a5.zip |
Robustify objc method type description (subroutine type) by walking parameters directly.
llvm-svn: 132368
Diffstat (limited to 'clang/lib/CodeGen')
-rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.cpp | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.cpp b/clang/lib/CodeGen/CGDebugInfo.cpp index 5ebf133303e..cc0dbd6bb5e 100644 --- a/clang/lib/CodeGen/CGDebugInfo.cpp +++ b/clang/lib/CodeGen/CGDebugInfo.cpp @@ -1628,25 +1628,20 @@ llvm::DIType CGDebugInfo::getOrCreateFunctionType(const Decl * D, QualType FnTyp if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) return getOrCreateMethodType(Method, F); else if (const ObjCMethodDecl *OMethod = dyn_cast<ObjCMethodDecl>(D)) { - - llvm::DIType MTy = getOrCreateType(FnType, F); - llvm::DIArray Args = llvm::DICompositeType(MTy).getTypeArray(); - assert (Args.getNumElements() && "Invalid number of arguments!"); - // Add "self" and "_cmd" llvm::SmallVector<llvm::Value *, 16> Elts; // First element is always return type. For 'void' functions it is NULL. - Elts.push_back(Args.getElement(0)); - + Elts.push_back(getOrCreateType(OMethod->getResultType(), F)); // "self" pointer is always first argument. Elts.push_back(getOrCreateType(OMethod->getSelfDecl()->getType(), F)); // "cmd" pointer is always second argument. Elts.push_back(getOrCreateType(OMethod->getCmdDecl()->getType(), F)); - - // Copy rest of the arguments. - for (unsigned i = 1, e = Args.getNumElements(); i != e; ++i) - Elts.push_back(Args.getElement(i)); + // Get rest of the arguments. + for (ObjCMethodDecl::param_iterator PI = OMethod->param_begin(), + PE = OMethod->param_end(); PI != PE; ++PI) + Elts.push_back(getOrCreateType((*PI)->getType(), F)); + llvm::DIArray EltTypeArray = DBuilder.getOrCreateArray(Elts); return DBuilder.createSubroutineType(F, EltTypeArray); } |