From: Ted Kremenek Date: Sat, 26 Sep 2009 04:15:09 +0000 (+0000) Subject: Hoist some branches in AnalysisManager::HandleTranslationUnit so we X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=74e3c92aa3eb1750ac2eb89994046eb69db39100;p=clang Hoist some branches in AnalysisManager::HandleTranslationUnit so we avoid scanning for an "entry point" FunctionDecl if we (a) have no translation unit actions and (b) no entry point function has been specified. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@82846 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Frontend/AnalysisConsumer.cpp b/lib/Frontend/AnalysisConsumer.cpp index d078cb7978..276599470b 100644 --- a/lib/Frontend/AnalysisConsumer.cpp +++ b/lib/Frontend/AnalysisConsumer.cpp @@ -223,30 +223,33 @@ void AnalysisConsumer::HandleTopLevelSingleDecl(Decl *D) { } void AnalysisConsumer::HandleTranslationUnit(ASTContext &C) { - // Find the entry function definition. - FunctionDecl *FD = 0; - TranslationUnitDecl *TU = Ctx->getTranslationUnitDecl(); - for (DeclContext::decl_iterator I = TU->decls_begin(), E = TU->decls_end(); - I != E; ++I) { - if (FunctionDecl *fd = dyn_cast(*I)) - if (fd->isThisDeclarationADefinition() && - fd->getNameAsString() == Opts.AnalyzeSpecificFunction) { - FD = fd; - break; + + TranslationUnitDecl *TU = C.getTranslationUnitDecl(); + + if (!TranslationUnitActions.empty()) { + // Find the entry function definition (if any). + FunctionDecl *FD = 0; + + if (!Opts.AnalyzeSpecificFunction.empty()) { + for (DeclContext::decl_iterator I=TU->decls_begin(), E=TU->decls_end(); + I != E; ++I) { + if (FunctionDecl *fd = dyn_cast(*I)) + if (fd->isThisDeclarationADefinition() && + fd->getNameAsString() == Opts.AnalyzeSpecificFunction) { + FD = fd; + break; + } } - } + } - if(!TranslationUnitActions.empty()) { for (Actions::iterator I = TranslationUnitActions.begin(), E = TranslationUnitActions.end(); I != E; ++I) (*I)(*Mgr, FD); } if (!ObjCImplementationActions.empty()) { - TranslationUnitDecl *TUD = C.getTranslationUnitDecl(); - - for (DeclContext::decl_iterator I = TUD->decls_begin(), - E = TUD->decls_end(); + for (DeclContext::decl_iterator I = TU->decls_begin(), + E = TU->decls_end(); I != E; ++I) if (ObjCImplementationDecl* ID = dyn_cast(*I)) HandleCode(ID, 0, ObjCImplementationActions);