PR33552: Distinguish between declarations that are owned by no module and
declarations that are owned but unconditionally visible. This allows us to set declarations as visible even if they have a local owning module, without losing information. In turn, that means that our Objective-C support can keep on incorrectly assuming the "hidden" bit on the declaration is the whole story with regard to name visibility. This will also be useful once we support the C++ Modules TS export semantics. Objective-C name visibility is still incorrect in any case where the "hidden" bit is not the complete story: for instance, in Objective-C++ the set of visible categories will be wrong during template instantiation, and with local submodule visibility enabled it will be wrong when building modules. Fixing that will require a major overhaul of how visibility is handled for Objective-C (and particularly for categories). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@306075 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- include/clang/AST/DeclBase.h 97 additions, 58 deletionsinclude/clang/AST/DeclBase.h
- lib/AST/ASTContext.cpp 1 addition, 1 deletionlib/AST/ASTContext.cpp
- lib/AST/DeclBase.cpp 3 additions, 3 deletionslib/AST/DeclBase.cpp
- lib/Sema/SemaDecl.cpp 6 additions, 2 deletionslib/Sema/SemaDecl.cpp
- lib/Sema/SemaExprCXX.cpp 2 additions, 2 deletionslib/Sema/SemaExprCXX.cpp
- lib/Sema/SemaLookup.cpp 2 additions, 2 deletionslib/Sema/SemaLookup.cpp
- lib/Sema/SemaTemplateInstantiate.cpp 2 additions, 2 deletionslib/Sema/SemaTemplateInstantiate.cpp
- lib/Sema/SemaTemplateInstantiateDecl.cpp 2 additions, 2 deletionslib/Sema/SemaTemplateInstantiateDecl.cpp
- lib/Serialization/ASTReader.cpp 3 additions, 3 deletionslib/Serialization/ASTReader.cpp
- lib/Serialization/ASTReaderDecl.cpp 13 additions, 15 deletionslib/Serialization/ASTReaderDecl.cpp
- test/Misc/ast-dump-decl.c 16 additions, 6 deletionstest/Misc/ast-dump-decl.c
- test/Misc/ast-dump-decl.cpp 0 additions, 5 deletionstest/Misc/ast-dump-decl.cpp
Loading
Please register or sign in to comment