[clang][ASTImporter] Remove use of ParentMapContext.
authorBalázs Kéri <1.int32@gmail.com>
Wed, 26 Oct 2022 13:53:53 +0000 (15:53 +0200)
committerBalázs Kéri <1.int32@gmail.com>
Wed, 26 Oct 2022 14:25:10 +0000 (16:25 +0200)
commita688b5f92a17dccbad411b41e254addfbd4d2852
treea2f963f5547aedfcbd15115313590c2d6daac6e7
parente0448245671342ad4f0431aeabef8d575cfd80f5
[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
clang/lib/AST/ASTImporter.cpp