[PATCH] D83189: [clangd] More complete fix for hover crashes on invalid record.
Haojian Wu via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Jul 6 12:53:47 PDT 2020
hokein updated this revision to Diff 275664.
hokein marked 2 inline comments as done.
hokein added a comment.
address comment.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D83189/new/
https://reviews.llvm.org/D83189
Files:
clang-tools-extra/clangd/Hover.cpp
clang-tools-extra/clangd/unittests/HoverTests.cpp
Index: clang-tools-extra/clangd/unittests/HoverTests.cpp
===================================================================
--- clang-tools-extra/clangd/unittests/HoverTests.cpp
+++ clang-tools-extra/clangd/unittests/HoverTests.cpp
@@ -784,11 +784,24 @@
HI.NamespaceScope = "";
HI.Definition = "int xx";
HI.LocalScope = "Foo::";
- HI.Size = 4;
HI.Type = "int";
HI.AccessSpecifier = "public";
}},
- };
+ {R"cpp(
+ // error-ok
+ struct Foo {
+ Bar xx;
+ int [[y^y]];
+ };)cpp",
+ [](HoverInfo &HI) {
+ HI.Name = "yy";
+ HI.Kind = index::SymbolKind::Field;
+ HI.NamespaceScope = "";
+ HI.Definition = "int yy";
+ HI.LocalScope = "Foo::";
+ HI.Type = "int";
+ HI.AccessSpecifier = "public";
+ }}};
for (const auto &Case : Cases) {
SCOPED_TRACE(Case.Code);
Index: clang-tools-extra/clangd/Hover.cpp
===================================================================
--- clang-tools-extra/clangd/Hover.cpp
+++ clang-tools-extra/clangd/Hover.cpp
@@ -659,8 +659,10 @@
}
void addLayoutInfo(const NamedDecl &ND, HoverInfo &HI) {
- const auto &Ctx = ND.getASTContext();
+ if (ND.isInvalidDecl())
+ return;
+ const auto &Ctx = ND.getASTContext();
if (auto *RD = llvm::dyn_cast<RecordDecl>(&ND)) {
if (auto Size = Ctx.getTypeSizeInCharsIfKnown(RD->getTypeForDecl()))
HI.Size = Size->getQuantity();
@@ -671,11 +673,11 @@
const auto *Record = FD->getParent();
if (Record)
Record = Record->getDefinition();
- if (Record && !Record->isDependentType()) {
- if (auto Size = Ctx.getTypeSizeInCharsIfKnown(FD->getType()))
+ if (Record && !Record->isInvalidDecl() && !Record->isDependentType()) {
+ if (auto Size = Ctx.getTypeSizeInCharsIfKnown(FD->getType())) {
HI.Size = Size->getQuantity();
- if (!FD->isInvalidDecl())
HI.Offset = Ctx.getFieldOffset(FD) / 8;
+ }
}
return;
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D83189.275664.patch
Type: text/x-patch
Size: 2048 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20200706/4075372e/attachment-0001.bin>
More information about the cfe-commits
mailing list