Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

llvm_unreachable when processing comment & line continuation #62054

Closed
rupprecht opened this issue Apr 11, 2023 · 7 comments
Closed

llvm_unreachable when processing comment & line continuation #62054

rupprecht opened this issue Apr 11, 2023 · 7 comments
Labels
clang:diagnostics New/improved warning or error message in Clang, but not in clang-tidy or static analyzer clang:frontend Language frontend issues, e.g. anything involving "Sema" confirmed Verified by a second party crash Prefer [crash-on-valid] or [crash-on-invalid]

Comments

@rupprecht
Copy link
Collaborator

rupprecht commented Apr 11, 2023

Crash when processing an "almost trailing comment" line:

https://godbolt.org/z/ehPM8f1ob

/*<*\
/

->

<source>:1:5: warning: escaped newline between */ characters at block comment end [-Wcomment]
/*<*\
    ^
if this is an almost Doxygen comment, it should be ordinary
UNREACHABLE executed at /root/llvm-project/clang/lib/Sema/Sema.cpp:2405!
PLEASE submit a bug report to https://github.com/llvm/llvm-project/issues/ and include the crash backtrace, preprocessed source, and associated run script.
Stack dump:
0.	Program arguments: /opt/compiler-explorer/clang-assertions-trunk/bin/clang++ -gdwarf-4 -g -o /app/output.s -mllvm --x86-asm-syntax=intel -S --gcc-toolchain=/opt/compiler-explorer/gcc-snapshot -fcolor-diagnostics -fno-crash-diagnostics <source>
1.	<unknown> parser at unknown location
 #0 0x0000562be67b783f llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x3c6283f)
 #1 0x0000562be67b557c llvm::sys::CleanupOnSignal(unsigned long) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x3c6057c)
 #2 0x0000562be67028c8 CrashRecoverySignalHandler(int) CrashRecoveryContext.cpp:0:0
 #3 0x00007f668966b420 __restore_rt (/lib/x86_64-linux-gnu/libpthread.so.0+0x14420)
 #4 0x00007f668913800b raise (/lib/x86_64-linux-gnu/libc.so.6+0x4300b)
 #5 0x00007f6689117859 abort (/lib/x86_64-linux-gnu/libc.so.6+0x22859)
 #6 0x0000562be670dbae (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x3bb8bae)
 #7 0x0000562be900ed4e clang::Sema::ActOnComment(clang::SourceRange) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x64b9d4e)
 #8 0x0000562be8eaf494 (anonymous namespace)::ActionCommentHandler::HandleComment(clang::Preprocessor&, clang::SourceRange) Parser.cpp:0:0
 #9 0x0000562bea9ba487 clang::Preprocessor::HandleComment(clang::Token&, clang::SourceRange) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x7e65487)
@rupprecht rupprecht added clang Clang issues not falling into any other category clang:frontend Language frontend issues, e.g. anything involving "Sema" crash Prefer [crash-on-valid] or [crash-on-invalid] labels Apr 11, 2023
@llvmbot
Copy link
Member

llvmbot commented Apr 11, 2023

@llvm/issue-subscribers-clang-frontend

@EugeneZelenko EugeneZelenko removed the clang Clang issues not falling into any other category label Apr 11, 2023
@shafik
Copy link
Collaborator

shafik commented Apr 11, 2023

Confirmed

@shafik shafik added the confirmed Verified by a second party label Apr 11, 2023
@shafik
Copy link
Collaborator

shafik commented Apr 11, 2023

CC @cor3ntin I think you recently modified the code around this crash maybe you have an idea what is going on.

@cor3ntin
Copy link
Contributor

@shafik I think this is prexisting

RawComment::getCommentKind() classify the comment as invalid because it does not end with */ and ActOnComment does not account for that.

I'm playing with seeking backward through the splice to find the *, but I'm wondering if we should just remove the
unreachable, or the check that produced the invalid comment

@rupprecht
Copy link
Collaborator Author

Sorry, I forgot to mention this isn't reporting a recent regression. I just found this recently in an LLDB fuzzing report (which uses Clang libraries for expression evaluation).

The oldest clang+asserts binary I have on hand is from 2019 (r374907 / 84423bd) and the issue reproduces there.

@shafik
Copy link
Collaborator

shafik commented Apr 11, 2023

That is good to know, we don't mind bug found via fuzzing as long as they are curated to avoid a lot of noise and the volume is not too high.

@cor3ntin
Copy link
Contributor

@EugeneZelenko EugeneZelenko added the clang:diagnostics New/improved warning or error message in Clang, but not in clang-tidy or static analyzer label Apr 12, 2023
flemairen6 pushed a commit to Xilinx/llvm-project that referenced this issue May 10, 2023
Because the comment parser does not support slices,
we emit a warning for comments that do contain
a splice within their delimiter, and do not add them as
documentation comment.

Fixes llvm#62054

Reviewed By: shafik, aaron.ballman

Differential Revision: https://reviews.llvm.org/D148029
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
clang:diagnostics New/improved warning or error message in Clang, but not in clang-tidy or static analyzer clang:frontend Language frontend issues, e.g. anything involving "Sema" confirmed Verified by a second party crash Prefer [crash-on-valid] or [crash-on-invalid]
Projects
None yet
Development

No branches or pull requests

5 participants