Bug 434031 - Code parsing stalls (and hogs cpu) on clang_parseTranslationUnit2 error
Summary: Code parsing stalls (and hogs cpu) on clang_parseTranslationUnit2 error
Status: REPORTED
Alias: None
Product: kdevelop
Classification: Applications
Component: Language Support: CPP (Clang-based) (show other bugs)
Version: 5.6.2
Platform: Debian testing Linux
: NOR normal
Target Milestone: ---
Assignee: kdevelop-bugs-null
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2021-03-05 23:43 UTC by Raúl
Modified: 2021-03-06 00:29 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments
all threads backtrace after 99% parsing and ctrl-Q kdevelop (96.03 KB, text/plain)
2021-03-05 23:43 UTC, Raúl
Details
standalone clang invokation + backtrace (11.86 KB, text/plain)
2021-03-06 00:29 UTC, Raúl
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Raúl 2021-03-05 23:43:30 UTC
Created attachment 136415 [details]
all threads backtrace after 99% parsing and ctrl-Q kdevelop

When kdevelope is parsing a somewhat big project, with includes properly configured so all code dependencies are captured, clang parser shows an error, the background parser never ends parsing (stalled at 99%). Moreover on kdevelop quit (ctrl-Q) the background parser keeps on running hogging the CPU


STEPS TO REPRODUCE
1. Start with a recent zephyr project checkout: https://docs.zephyrproject.org/latest/getting_started/index.html (up to west init step)
2. Open zephyr rtos recent version as project (CMake based)
3. Add some important parsing paths in the project language parsing configuration:
zephyrproject/modules/lib/mcumgr/mgmt/include
zephyrproject/modules/lib/mcumgr/smp/include
zephyrproject/modules/lib/tinycbor/include
zephyrproject/bootloader/mcuboot/boot/bootutil/include
zephyrproject/zephyr/include
zephyrproject/bootloader/mcuboot/boot/zephyr/include
4. Let kdevelop parse the code

OBSERVED RESULT
Background parsing stalls at 99% and exit kdevelop keeps background parser running, even GUI has been shutdown. You'd need to kill kdevelop (again) for it to exit.

EXPECTED RESULT
kdevelop properly parses code, tolerates parsing failures or at least stop background parsing.

SOFTWARE/OS VERSIONS

Linux/KDE Plasma: Debian testing
kdevelop 5.6.2
KDE Frameworks 5.78.0
Qt 5.15.2

ADDITIONAL INFORMATION
I'm attaching an all threads backtrace. See how there are 2 lengthy stacked frames threads

console output:

libclang: crash detected during parsing: {
  'source_filename' : 'zephyrproject/zephyr/drivers/dac/dac_dacx0508.c'
  'command_line_args' : ['clang', '-ferror-limit=100', '-fspell-checking', '', '-Wunused-parameter', '-Wunreachable-code', '-Wall', '-std=c99', '-nostdinc', '-xc', '-isystemzephyrproject/modules/lib/mcumgr/mgmt/include', '-isystemzephyrproject/modules/lib/mcumgr/smp/include', '-isystemzephyrproject/modules/lib/tinycbor/include', '-isystemzephyrproject/bootloader/mcuboot/boot/bootutil/include', '-isystem/usr/lib/gcc/arm-none-eabi/8.3.1/include', '-isystem/usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed', '-isystem/usr/include/newlib', '-Izephyrproject/zephyr/include', '-Izephyrproject/bootloader/mcuboot/boot/zephyr/include', '-isystem', '/usr/lib/llvm-11/lib/clang/11.0.1/include', '-imacros', '/tmp/kdevelop.uxcuiC'],
  'unsaved_files' : [],
  'options' : 513,
}
kdevelop.plugins.clang: clang_parseTranslationUnit2 return with error code 2
kdevelop.plugins.clang:   (start KDevelop with `KDEV_CLANG_DISPLAY_DIAGS=1 kdevelop` to see more diagnostics)
kdevelop.plugins.clang: Failed to parse translation unit: "zephyrproject/zephyr/drivers/dac/dac_dacx0508.c"
libclang: crash detected during parsing: {
  'source_filename' : 'zephyrproject/zephyr/subsys/usb/class/audio/audio.c'
  'command_line_args' : ['clang', '-ferror-limit=100', '-fspell-checking', '', '-Wunused-parameter', '-Wunreachable-code', '-Wall', '-std=c99', '-nostdinc', '-xc', '-isystemzephyrproject/modules/lib/mcumgr/mgmt/include', '-isystemzephyrproject/modules/lib/mcumgr/smp/include', '-isystemzephyrproject/modules/lib/tinycbor/include', '-isystemzephyrproject/bootloader/mcuboot/boot/bootutil/include', '-isystem/usr/lib/gcc/arm-none-eabi/8.3.1/include', '-isystem/usr/lib/gcc/arm-none-eabi/8.3.1/include-fixed', '-isystem/usr/include/newlib', '-Izephyrproject/zephyr/include', '-Izephyrproject/bootloader/mcuboot/boot/zephyr/include', '-isystem', '/usr/lib/llvm-11/lib/clang/11.0.1/include', '-imacros', '/tmp/kdevelop.hjUibn'],
  'unsaved_files' : [],
  'options' : 513,
}
kdevelop.plugins.clang: clang_parseTranslationUnit2 return with error code 2
kdevelop.plugins.clang:   (start KDevelop with `KDEV_CLANG_DISPLAY_DIAGS=1 kdevelop` to see more diagnostics)
kdevelop.plugins.clang: Failed to parse translation unit: "zephyrproject/zephyr/subsys/usb/class/audio/audio.c"
Comment 1 Raúl 2021-03-06 00:29:17 UTC
Created attachment 136418 [details]
standalone clang invokation + backtrace

I've mangled paths to avoid some non-relevant information disclosuring