From: Balázs Kéri <1.int32@gmail.com> Date: Wed, 26 Oct 2022 13:53:53 +0000 (+0200) Subject: [clang][ASTImporter] Remove use of ParentMapContext. X-Git-Tag: upstream/17.0.6~29457 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a688b5f92a17dccbad411b41e254addfbd4d2852;p=platform%2Fupstream%2Fllvm.git [clang][ASTImporter] Remove use of ParentMapContext. Function 'isAncestorDeclContextOf' was using 'ParentMapContext' for looking up parent of statement nodes. There may be cases (bugs?) with ParentMapContext when parents of specific statements are not found. This leads to 'ASTImporter' infinite import loops when function 'hasAutoReturnTypeDeclaredInside' returns false incorrectly. A real case was found but could not be reproduced with test code. Use of 'ParentMapContext' is now removed and changed to a more safe (currently) method by searching for declarations in statements and find parent of these declarations. The new code was tested on a number of projects and no related crash was found. Reviewed By: martong Differential Revision: https://reviews.llvm.org/D136684 --- diff --git a/clang/lib/AST/ASTImporter.cpp b/clang/lib/AST/ASTImporter.cpp index 0606c5c..bfe21cc 100644 --- a/clang/lib/AST/ASTImporter.cpp +++ b/clang/lib/AST/ASTImporter.cpp @@ -34,7 +34,6 @@ #include "clang/AST/LambdaCapture.h" #include "clang/AST/NestedNameSpecifier.h" #include "clang/AST/OperationKinds.h" -#include "clang/AST/ParentMapContext.h" #include "clang/AST/Stmt.h" #include "clang/AST/StmtCXX.h" #include "clang/AST/StmtObjC.h" @@ -3230,16 +3229,19 @@ static bool isAncestorDeclContextOf(const DeclContext *DC, const Decl *D) { return false; } -// Returns true if the statement S has a parent declaration that has a -// DeclContext that is inside (or equal to) DC. In a specific use case if DC is -// a FunctionDecl, check if statement S resides in the body of the function. +// Check if there is a declaration that has 'DC' as parent context and is +// referenced from statement 'S' or one of its children. The search is done in +// BFS order through children of 'S'. static bool isAncestorDeclContextOf(const DeclContext *DC, const Stmt *S) { - ParentMapContext &ParentC = DC->getParentASTContext().getParentMapContext(); - DynTypedNodeList Parents = ParentC.getParents(*S); - while (!Parents.empty()) { - if (const Decl *PD = Parents.begin()->get()) - return isAncestorDeclContextOf(DC, PD); - Parents = ParentC.getParents(*Parents.begin()); + SmallVector ToProcess; + ToProcess.push_back(S); + while (!ToProcess.empty()) { + const Stmt *CurrentS = ToProcess.pop_back_val(); + ToProcess.append(CurrentS->child_begin(), CurrentS->child_end()); + if (const auto *DeclRef = dyn_cast(CurrentS)) + if (const Decl *D = DeclRef->getDecl()) + if (isAncestorDeclContextOf(DC, D)) + return true; } return false; }