Description
Hi hello,
I'm a committer for the Chromium project & we've been experimenting with building CodeQL databases of Chromium.
The Bug
While building the Chromium CodeQL database, we get multiple instances (~thousands) of "catastrophic error" in build-tracer.log
, and, when attempting to query the resulting database, we observe that large portions of the code are not reflected in the database query results.
I've pinpointed one of the types of catastrophic error we're seeing, which manifests with the following error message:
In construct_text_message: "../../third_party/dawn/src/dawn/native/webgpu_absl_format.cpp", line 118: internal error: assertion failed: cast_node: cast to class type (exprutil.c, line 9462 in cast_node)
new absl::ParsedFormat<'u', 's', 's', 's'>("{ binding: %u, visibility: %s, %s: %s }");
^
Reproducing The Bug
I have created a standalone file which can be used to reproduce this bug, which is attached here as webcpu_absl_format_true_ii.cc.txt
(please remove the .txt
extension; this was to make the Github attachment uploader happy).
Reproduction steps (assumes that webcpu_absl_format_true_ii.cc
is in /YOUR/ROOT/HERE
; assumes Clang 19; assumes Linux):
(1) codeql database init --language=cpp --source-root=/YOUR/ROOT/HERE/SOME-EMPTY-DIRECTORY /YOUR/ROOT/HERE/repro-catastrophic-db --overwrite
(2) codeql database trace-command /YOUR_ROOT_HERE/repro-catastrophic-db --working-dir=/YOUR/ROOT/HERE -- clang -fno-ident -fno-strict-aliasing -fstack-protector -funwind-tables -fPIC -pthread -fcolor-diagnostics -fmerge-all-constants -mllvm -instcombine-lower-dbg-declare=0 -mllvm -split-threshold-for-reg-with-hint=0 -ffp-contract=off -fcomplete-member-pointers -m64 -msse3 -Wno-builtin-macro-redefined -D__DATE__= -D__TIME__= -D__TIMESTAMP__= -ffile-compilation-dir=. -no-canonical-prefixes -ftrivial-auto-var-init=pattern -O0 -fno-omit-frame-pointer -gdwarf-4 -g2 -gdwarf-aranges -gsplit-dwarf -ggnu-pubnames -fvisibility=hidden '-std=c++20' -gsimple-template-names -fno-exceptions -fno-rtti '-nostdinc++' -fvisibility-inlines-hidden -c /usr/local/google/home/flowerhack/webcpu_absl_format_true_ii.cc -o webcpu_absl_format_true_ii.o
(3) codeql database finalize -j=-1 /YOUR/ROOT/HERE/repro-catastrophic-db
.
At the conclusion of these steps there should be logs in build-tracer.log
and logs/extractor/
indicating the failure.
In addition to (1) webcpu_absl_format_true_ii.cc
(the reproducer file), please find attached (2) the build-tracer.log
and (3) the relevant extractor logfile (c66e3.log
) from running this on my own machine, which will hopefully be useful for debugging/triage.
I do have the logs for the entire Chromium build available upon request, but as you might imagine, those files are very large and may not be as useful to you as this standalone reproducer.
A fix for this bug (or, guidance on how we might be holding it wrong!) would be extremely helpful for us here in Chromium. Please let me know if you need any more information. Thank you!
build-tracer.log
c66e3.log
webcpu_absl_format_true_ii.cc.txt