diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst index 7dff43ba30930..dd66c71122999 100644 --- a/clang/docs/ReleaseNotes.rst +++ b/clang/docs/ReleaseNotes.rst @@ -290,6 +290,8 @@ Bug Fixes in This Version (`#61142 `_) - Clang now better diagnose placeholder types constrained with a concept that is not a type concept. +- Fix crash when a doc comment contains a line splicing. + (`#62054 `_) Bug Fixes to Compiler Builtins ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/clang/include/clang/AST/RawCommentList.h b/clang/include/clang/AST/RawCommentList.h index 1bb8d7ce40a90..a293e219e2502 100644 --- a/clang/include/clang/AST/RawCommentList.h +++ b/clang/include/clang/AST/RawCommentList.h @@ -115,6 +115,17 @@ class RawComment { return extractBriefText(Context); } + bool hasUnsupportedSplice(const SourceManager &SourceMgr) const { + if (!isInvalid()) + return false; + StringRef Text = getRawText(SourceMgr); + if (Text.size() < 6 || Text[0] != '/') + return false; + if (Text[1] == '*') + return Text[Text.size() - 1] != '/' || Text[Text.size() - 2] != '*'; + return Text[1] != '/'; + } + /// Returns sanitized comment text, suitable for presentation in editor UIs. /// E.g. will transform: /// // This is a long multiline comment. diff --git a/clang/include/clang/Basic/DiagnosticSemaKinds.td b/clang/include/clang/Basic/DiagnosticSemaKinds.td index 379554baaaa1f..cd5930d385e69 100644 --- a/clang/include/clang/Basic/DiagnosticSemaKinds.td +++ b/clang/include/clang/Basic/DiagnosticSemaKinds.td @@ -11377,6 +11377,8 @@ def err_coro_invalid_addr_of_label : Error< let CategoryName = "Documentation Issue" in { def warn_not_a_doxygen_trailing_member_comment : Warning< "not a Doxygen trailing comment">, InGroup, DefaultIgnore; +def warn_splice_in_doxygen_comment : Warning< + "line splicing in Doxygen comments are not supported">, InGroup, DefaultIgnore; } // end of documentation issue category let CategoryName = "Nullability Issue" in { diff --git a/clang/lib/Sema/Sema.cpp b/clang/lib/Sema/Sema.cpp index 89ac016f60e97..e1b309bd01938 100644 --- a/clang/lib/Sema/Sema.cpp +++ b/clang/lib/Sema/Sema.cpp @@ -2390,7 +2390,7 @@ void Sema::ActOnComment(SourceRange Comment) { SourceMgr.isInSystemHeader(Comment.getBegin())) return; RawComment RC(SourceMgr, Comment, LangOpts.CommentOpts, false); - if (RC.isAlmostTrailingComment()) { + if (RC.isAlmostTrailingComment() || RC.hasUnsupportedSplice(SourceMgr)) { SourceRange MagicMarkerRange(Comment.getBegin(), Comment.getBegin().getLocWithOffset(3)); StringRef MagicMarkerText; @@ -2401,6 +2401,11 @@ void Sema::ActOnComment(SourceRange Comment) { case RawComment::RCK_OrdinaryC: MagicMarkerText = "/**<"; break; + case RawComment::RCK_Invalid: + // FIXME: are there other scenarios that could produce an invalid + // raw comment here? + Diag(Comment.getBegin(), diag::warn_splice_in_doxygen_comment); + return; default: llvm_unreachable("if this is an almost Doxygen comment, " "it should be ordinary"); diff --git a/clang/test/Lexer/comment-escape.c b/clang/test/Lexer/comment-escape.c index 191e65441dd47..e9851caf2ce21 100644 --- a/clang/test/Lexer/comment-escape.c +++ b/clang/test/Lexer/comment-escape.c @@ -1,6 +1,38 @@ -// RUN: %clang -fsyntax-only %s +// RUN: %clang -fsyntax-only -Wdocumentation %s // rdar://6757323 // foo \ #define blork 32 +// GH62054 + +/**<*\ +/ +//expected-warning@-2 {{escaped newline between}} \ +//expected-warning@-2 {{line splicing in Doxygen comments are not supported}} + +/**<*\ +/ +//expected-warning@-2 {{escaped newline between}} \ +//expected-warning@-2 {{backslash and newline separated by space}} \ +//expected-warning@-2 {{line splicing in Doxygen comments are not supported}} + + +/*<*\ +/ +//expected-warning@-2 {{escaped newline between}} \ +//expected-warning@-2 {{line splicing in Doxygen comments are not supported}} + +/*<*\ +/ +//expected-warning@-2 {{escaped newline between}} \ +//expected-warning@-2 {{backslash and newline separated by space}} \ +//expected-warning@-2 {{line splicing in Doxygen comments are not supported}} + +/\ +*<**/ +//expected-warning@-2 {{line splicing in Doxygen comments are not supported}} + +/\ +/<* +//expected-warning@-2 {{line splicing in Doxygen comments are not supported}}