[PATCH] D79627: [AST] Fix an assertion violation in FieldDecl::getParent.
Haojian Wu via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue May 19 07:01:27 PDT 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rGfcf0764998b4: [AST] Fix an assertion violation in FieldDecl::getParent. (authored by hokein).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D79627/new/
https://reviews.llvm.org/D79627
Files:
clang-tools-extra/clangd/Hover.cpp
clang-tools-extra/clangd/unittests/HoverTests.cpp
clang/include/clang/AST/Decl.h
Index: clang/include/clang/AST/Decl.h
===================================================================
--- clang/include/clang/AST/Decl.h
+++ clang/include/clang/AST/Decl.h
@@ -2920,12 +2920,15 @@
/// Returns the parent of this field declaration, which
/// is the struct in which this field is defined.
+ ///
+ /// Returns null if this is not a normal class/struct field declaration, e.g.
+ /// ObjCAtDefsFieldDecl, ObjCIvarDecl.
const RecordDecl *getParent() const {
- return cast<RecordDecl>(getDeclContext());
+ return dyn_cast<RecordDecl>(getDeclContext());
}
RecordDecl *getParent() {
- return cast<RecordDecl>(getDeclContext());
+ return dyn_cast<RecordDecl>(getDeclContext());
}
SourceRange getSourceRange() const override LLVM_READONLY;
Index: clang-tools-extra/clangd/unittests/HoverTests.cpp
===================================================================
--- clang-tools-extra/clangd/unittests/HoverTests.cpp
+++ clang-tools-extra/clangd/unittests/HoverTests.cpp
@@ -1737,6 +1737,19 @@
HI.Definition = "template <> void foo<int>(const int &)";
HI.NamespaceScope = "";
}},
+ {
+ R"cpp(// should not crash
+ @interface ObjC {
+ char [[da^ta]];
+ }@end
+ )cpp",
+ [](HoverInfo &HI) {
+ HI.Name = "data";
+ HI.Type = "char";
+ HI.Kind = index::SymbolKind::Field;
+ HI.NamespaceScope = "ObjC::"; // FIXME: fix it
+ HI.Definition = "char data";
+ }},
};
// Create a tiny index, so tests above can verify documentation is fetched.
@@ -1753,6 +1766,8 @@
Annotations T(Case.Code);
TestTU TU = TestTU::withCode(T.code());
TU.ExtraArgs.push_back("-std=c++17");
+ TU.ExtraArgs.push_back("-xobjective-c++");
+
TU.ExtraArgs.push_back("-Wno-gnu-designator");
// Types might be different depending on the target triplet, we chose a
// fixed one to make sure tests passes on different platform.
Index: clang-tools-extra/clangd/Hover.cpp
===================================================================
--- clang-tools-extra/clangd/Hover.cpp
+++ clang-tools-extra/clangd/Hover.cpp
@@ -662,7 +662,9 @@
}
if (const auto *FD = llvm::dyn_cast<FieldDecl>(&ND)) {
- const auto *Record = FD->getParent()->getDefinition();
+ const auto *Record = FD->getParent();
+ if (Record)
+ Record = Record->getDefinition();
if (Record && !Record->isDependentType()) {
uint64_t OffsetBits = Ctx.getFieldOffset(FD);
if (auto Size = Ctx.getTypeSizeInCharsIfKnown(FD->getType())) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D79627.264888.patch
Type: text/x-patch
Size: 2651 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20200519/55b32bc7/attachment.bin>
More information about the cfe-commits
mailing list