LLVM/project 3ae8e35orc-rt/test/unit CommonTestUtils.h

[orc-rt] Make noDispatch test helper fail in -Asserts builds. (#209493)

noDispatch guards Sessions that must never dispatch a wrapper call, but
it did so with assert(false), which compiles out under NDEBUG.

Replace the assert with ADD_FAILURE(), which records a failure in every
build mode, and then complete the call via its Return continuation with
an out-of-band error. Completing the call means a caller awaiting the
result unblocks and fails too, rather than hanging, even when the
dispatch arrives on a non-test thread where ADD_FAILURE() alone may not
be observed.
DeltaFile
+14-5orc-rt/test/unit/CommonTestUtils.h
+14-51 files

LLVM/project 4e092a8lldb/packages/Python/lldbsuite/test/tools/lldb_dap types.py dap_types.py, llvm/test/CodeGen/AArch64 active_lane_mask.ll

Rebase, fixes

Created using spr 1.3.7
DeltaFile
+2,026-0lldb/packages/Python/lldbsuite/test/tools/lldb_dap/types.py
+0-2,026lldb/packages/Python/lldbsuite/test/tools/lldb_dap/dap_types.py
+0-541mlir/lib/Target/LLVMIR/Dialect/OpenACC/OpenACCToLLVMIRTranslation.cpp
+136-100mlir/lib/Dialect/XeGPU/Transforms/XeGPUPropagateLayout.cpp
+117-101llvm/test/CodeGen/AArch64/active_lane_mask.ll
+216-0lldb/packages/Python/lldbsuite/test/tools/lldb_dap/testcase.py
+2,495-2,7681,124 files not shown
+8,898-7,1131,130 files

LLVM/project 3eb929blibcxx/src ios.cpp

Make ios_base::xalloc non-atomic with LIBCXX_ENABLE_THREADS=OFF. (#208356)

762b77a moved the definition of "xindex" out of the header, and in the
process dropped the _LIBCPP_HAS_THREADS check. Re-add the check to
maintain the status quo.

The discussion on https://github.com/llvm/llvm-project/pull/198994
indicates it's not clear whether LIBCXX_ENABLE_THREADS=OFF is actually
supposed to mean single-threaded. But it clearly does in practice:
atomic_support.h uses non-atomic ops when threads are disabled, and a
few other APIs have explicit non-atomic fallback paths.

My team ran into this trying to run libc++ tests for a RISC-V core
without the "a" extension.
DeltaFile
+7-0libcxx/src/ios.cpp
+7-01 files

FreeNAS/freenas 158d2bdsrc/middlewared/middlewared/plugins/container attachments.py, src/middlewared/middlewared/plugins/pool_ unlock.py dataset_encryption_lock.py

restart autostart containers and VMs after encrypted pool unlock
DeltaFile
+95-0src/middlewared/middlewared/plugins/vm/attachments.py
+94-0src/middlewared/middlewared/pytest/unit/plugins/test_vm_attachment_matching.py
+85-1src/middlewared/middlewared/plugins/container/attachments.py
+69-0src/middlewared/middlewared/pytest/unit/plugins/test_container_attachment_matching.py
+0-50src/middlewared/middlewared/plugins/pool_/unlock.py
+28-13src/middlewared/middlewared/plugins/pool_/dataset_encryption_lock.py
+371-643 files not shown
+423-689 files

LLVM/project d9f6dbclibcxx/utils compare-benchmarks requirements.txt

[libc++] Compute a confidence interval in compare-benchmarks (#208090)

When comparing benchmark results with more than one sample per
benchmark, compute a confidence interval and flag rows that are
statistically significant. This should make the A/B comparison PR job
more robust to noise and easier to rely on. After this change, output
for a multi-sample run looks like:

```
Benchmark                         Baseline    Candidate    Difference    % Difference   Significant?   95% C.I. of %diff
------------------------------  ----------  -----------  ------------  --------------  --------------  -------------------
std::any_of(list<int>)/32            39.92        39.22         -0.70          -1.75%                  [-6.5%, +1.6%]
std::any_of(list<int>)/32768      54071.34     65395.51      11324.17          20.94%                  [-2.8%, +34.5%]
std::any_of(list<int>)/50            67.39        69.08          1.69           2.51%        x         [+0.2%, +4.7%]
std::any_of(list<int>)/8              7.21         6.46         -0.75         -10.40%        x         [-25.0%, -0.7%]
std::any_of(list<int>)/8192       21745.58     22299.32        553.74           2.55%                  [-20.3%, +38.4%]
std::any_of(vector<int>)/32          24.21        14.61         -9.60         -39.65%        x         [-41.2%, -38.4%]
std::any_of(vector<int>)/32768    24365.14     12498.21     -11866.93         -48.70%        x         [-48.9%, -48.6%]
Geomean                             324.15       247.83        -76.32         -23.54%

    [16 lines not shown]
DeltaFile
+109-24libcxx/utils/compare-benchmarks
+1-0libcxx/utils/requirements.txt
+110-242 files

LLVM/project ef118b5clang/include/clang/ScalableStaticAnalysis BuiltinAnchorSources.def, clang/include/clang/ScalableStaticAnalysis/Analyses/SharedLexicalRepresentation SharedLexicalRepresentation.h

[SSAF] Add EntitySourceLocationsSummary and JSON format (#208841)

Adds a per-entity TU-level summary recording the canonical (file, line,
column) of each declaration registered against an entity. The data feeds
a follow-on whole-program analysis that groups entities sharing a
declaration source-location into equivalence classes.

Assisted-By: Claude Opus 4.7
DeltaFile
+259-0clang/unittests/ScalableStaticAnalysis/Serialization/JSONFormatTest/SharedLexicalRepresentationFormatTest.cpp
+128-0clang/lib/ScalableStaticAnalysis/Analyses/SharedLexicalRepresentation/SharedLexicalRepresentationFormat.cpp
+69-0clang/include/clang/ScalableStaticAnalysis/Analyses/SharedLexicalRepresentation/SharedLexicalRepresentation.h
+1-0clang/unittests/ScalableStaticAnalysis/CMakeLists.txt
+1-0clang/include/clang/ScalableStaticAnalysis/BuiltinAnchorSources.def
+1-0clang/lib/ScalableStaticAnalysis/Analyses/CMakeLists.txt
+459-06 files

LLVM/project 74e2505lldb/test/Shell/helper toolchain.py

rebase

Created using spr 1.3.7
DeltaFile
+4-4lldb/test/Shell/helper/toolchain.py
+4-41 files

LLVM/project 7b73f62lldb/test/Shell/helper toolchain.py

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+4-4lldb/test/Shell/helper/toolchain.py
+4-41 files

LLVM/project c1a7192lldb/test/Shell/helper toolchain.py

formatting

Created using spr 1.3.7
DeltaFile
+4-4lldb/test/Shell/helper/toolchain.py
+4-41 files

OpenZFS/src 9a02e53lib/libzfs libzfs_sendrecv.c, tests/runfiles common.run

libzfs: don't abort receiving a raw encrypted send that carries holds

A raw send that gathers holds but not properties (zfs send -w -h,
without -p or -R) produces a compound stream whose per-filesystem
nvlist has no "props" entry.  recv_fix_encryption_hierarchy() looked
that entry up with fnvlist_lookup_nvlist(), which aborts the process
when the key is missing, so receiving such a stream of an encrypted
dataset crashed with a failed VERIFY0() after the data had already
been received.  Release builds abort the same way, since the VERIFY
family is always compiled in.

Look "props" up tolerantly and skip the keylocation fixup when it is
absent: a holds-only raw send sends no properties, and the raw
receive has already established a usable keylocation.  The
FORCE_NEW_KEY and FORCE_INHERIT fixups, which do not need
properties, still run.

A new rsend test sends an encrypted dataset with -w -h, both a full
and an incremental stream, and confirms the receive succeeds with

    [6 lines not shown]
DeltaFile
+90-0tests/zfs-tests/tests/functional/rsend/send_encrypted_holds.ksh
+37-18lib/libzfs/libzfs_sendrecv.c
+1-0tests/zfs-tests/tests/Makefile.am
+1-0tests/runfiles/common.run
+129-184 files

LLVM/project 83ef68fllvm/utils/lit/lit TestRunner.py

formatting

Created using spr 1.3.7
DeltaFile
+3-6llvm/utils/lit/lit/TestRunner.py
+3-61 files

LLVM/project 147bf71lldb/test/API/tools/lldb-dap/stackTrace TestDAP_stackTrace.py

[lldb-dap][test] Fix stackTrace test in symlink environment (#209595)

This test (edited in #209236) fails when run in an environment where
source files are symlinks. Using `realpath` breaks that, as we use the
path in assertions later. The var is already constructed as `source_file
= self.getSourcePath("main.c")` which should be sufficient for
`_RecurseSource()` to work.
DeltaFile
+1-1lldb/test/API/tools/lldb-dap/stackTrace/TestDAP_stackTrace.py
+1-11 files

OpenZFS/src 3042621module/zfs zio.c, tests/zfs-tests/include tunables.cfg

Rate limit Direct I/O verify zevents

Each vdev initializes a vdev_dio_verify_rl rate limiter (governed by
zfs_dio_write_verify_events_per_second), but
zio_dio_chksum_verify_error_report() never consults it, so
dio_verify_rd and dio_verify_wr zevents are posted with no rate
limiting.  A workload that repeatedly trips the Direct I/O verify can
therefore produce an unbounded flood of zevents.

Gate both ereport posts through zfs_ratelimit(&vd->vdev_dio_verify_rl),
as is already done for the other per-vdev ereports (checksum, delay,
deadman).  The vs_dio_verify_errors vdev stat still increments on every
event, so the true count remains observable via zpool status -d.

The dio_write_verify test checks on every iteration that a
dio_verify_wr zevent was posted.  With rate limiting now in effect the
shared limiter window is exhausted after the first iteration, so later
iterations observe zero events and the test fails.  Raise
zfs_dio_write_verify_events_per_second for the duration of that test

    [5 lines not shown]
DeltaFile
+8-6module/zfs/zio.c
+12-0tests/zfs-tests/tests/functional/direct/dio_write_verify.ksh
+1-0tests/zfs-tests/include/tunables.cfg
+21-63 files

LLVM/project 925cc7dlldb/packages/Python/lldbsuite/test/tools/lldb_dap types.py dap_types.py, llvm/test/Transforms/ConstraintElimination induction-condition-in-loop-exit-postinc.ll induction-condition-in-loop-exit.ll

rebase

Created using spr 1.3.7
DeltaFile
+2,026-0lldb/packages/Python/lldbsuite/test/tools/lldb_dap/types.py
+0-2,026lldb/packages/Python/lldbsuite/test/tools/lldb_dap/dap_types.py
+578-0llvm/test/Transforms/ConstraintElimination/induction-condition-in-loop-exit-postinc.ll
+0-541mlir/lib/Target/LLVMIR/Dialect/OpenACC/OpenACCToLLVMIRTranslation.cpp
+0-514llvm/test/Transforms/ConstraintElimination/induction-condition-in-loop-exit.ll
+136-100mlir/lib/Dialect/XeGPU/Transforms/XeGPUPropagateLayout.cpp
+2,740-3,1811,279 files not shown
+10,451-8,3301,285 files

LLVM/project 78170bdlldb/packages/Python/lldbsuite/test/tools/lldb_dap types.py dap_types.py, llvm/test/Transforms/ConstraintElimination induction-condition-in-loop-exit-postinc.ll induction-condition-in-loop-exit.ll

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+2,026-0lldb/packages/Python/lldbsuite/test/tools/lldb_dap/types.py
+0-2,026lldb/packages/Python/lldbsuite/test/tools/lldb_dap/dap_types.py
+578-0llvm/test/Transforms/ConstraintElimination/induction-condition-in-loop-exit-postinc.ll
+0-541mlir/lib/Target/LLVMIR/Dialect/OpenACC/OpenACCToLLVMIRTranslation.cpp
+0-514llvm/test/Transforms/ConstraintElimination/induction-condition-in-loop-exit.ll
+136-100mlir/lib/Dialect/XeGPU/Transforms/XeGPUPropagateLayout.cpp
+2,740-3,1811,279 files not shown
+10,451-8,3301,285 files

LLVM/project 0a9065fcompiler-rt/test/builtins/Unit lit.cfg.py, llvm/utils/lit/tests shtest-format.py shtest-run-at-line.py

rebase

Created using spr 1.3.7
DeltaFile
+33-66llvm/utils/lit/tests/shtest-format.py
+5-53llvm/utils/lit/tests/shtest-run-at-line.py
+7-30llvm/utils/lit/tests/shtest-timeout.py
+2-35compiler-rt/test/builtins/Unit/lit.cfg.py
+0-36llvm/utils/lit/tests/shtest-external-shell-kill.py
+0-25llvm/utils/lit/tests/shtest-readfile-external.py
+47-24569 files not shown
+139-57475 files

LLVM/project 323dcc3compiler-rt/test/builtins/Unit lit.cfg.py, llvm/utils/lit/tests shtest-format.py shtest-run-at-line.py

[𝘀𝗽𝗿] changes to main this commit is based on

Created using spr 1.3.7

[skip ci]
DeltaFile
+33-66llvm/utils/lit/tests/shtest-format.py
+5-53llvm/utils/lit/tests/shtest-run-at-line.py
+2-35compiler-rt/test/builtins/Unit/lit.cfg.py
+7-30llvm/utils/lit/tests/shtest-timeout.py
+0-36llvm/utils/lit/tests/shtest-external-shell-kill.py
+0-25llvm/utils/lit/tests/shtest-readfile-external.py
+47-24567 files not shown
+136-56273 files

LLVM/project 15907fbflang/test lit.cfg.py, llvm/utils/lit/tests shtest-format.py shtest-run-at-line.py

[𝘀𝗽𝗿] changes to main this commit is based on

Created using spr 1.3.7

[skip ci]
DeltaFile
+33-66llvm/utils/lit/tests/shtest-format.py
+5-53llvm/utils/lit/tests/shtest-run-at-line.py
+7-30llvm/utils/lit/tests/shtest-timeout.py
+0-36llvm/utils/lit/tests/shtest-external-shell-kill.py
+0-25llvm/utils/lit/tests/shtest-readfile-external.py
+1-12flang/test/lit.cfg.py
+46-22265 files not shown
+133-51871 files

LLVM/project 4a629b3compiler-rt/test/builtins/Unit lit.cfg.py, llvm/utils/lit/tests shtest-format.py shtest-run-at-line.py

rebase

Created using spr 1.3.7
DeltaFile
+33-66llvm/utils/lit/tests/shtest-format.py
+5-53llvm/utils/lit/tests/shtest-run-at-line.py
+7-30llvm/utils/lit/tests/shtest-timeout.py
+2-35compiler-rt/test/builtins/Unit/lit.cfg.py
+0-36llvm/utils/lit/tests/shtest-external-shell-kill.py
+0-25llvm/utils/lit/tests/shtest-readfile-external.py
+47-24567 files not shown
+136-56273 files

LLVM/project a528c08llvm/utils/lit/tests shtest-format.py shtest-run-at-line.py, polly/test lit.cfg

rebase

Created using spr 1.3.7
DeltaFile
+33-66llvm/utils/lit/tests/shtest-format.py
+5-53llvm/utils/lit/tests/shtest-run-at-line.py
+7-30llvm/utils/lit/tests/shtest-timeout.py
+0-36llvm/utils/lit/tests/shtest-external-shell-kill.py
+0-25llvm/utils/lit/tests/shtest-readfile-external.py
+1-12polly/test/lit.cfg
+46-22265 files not shown
+133-51871 files

LLVM/project 4c1d2d0llvm/utils/lit/tests shtest-format.py shtest-run-at-line.py, polly/test lit.cfg

[𝘀𝗽𝗿] changes to main this commit is based on

Created using spr 1.3.7

[skip ci]
DeltaFile
+33-66llvm/utils/lit/tests/shtest-format.py
+5-53llvm/utils/lit/tests/shtest-run-at-line.py
+7-30llvm/utils/lit/tests/shtest-timeout.py
+0-36llvm/utils/lit/tests/shtest-external-shell-kill.py
+0-25llvm/utils/lit/tests/shtest-readfile-external.py
+1-12polly/test/lit.cfg
+46-22262 files not shown
+130-48468 files

LLVM/project 4997774clang/test lit.cfg.py, llvm/utils/lit/tests shtest-format.py shtest-run-at-line.py

[𝘀𝗽𝗿] changes to main this commit is based on

Created using spr 1.3.7

[skip ci]
DeltaFile
+33-66llvm/utils/lit/tests/shtest-format.py
+5-53llvm/utils/lit/tests/shtest-run-at-line.py
+7-30llvm/utils/lit/tests/shtest-timeout.py
+0-36llvm/utils/lit/tests/shtest-external-shell-kill.py
+0-25llvm/utils/lit/tests/shtest-readfile-external.py
+1-12clang/test/lit.cfg.py
+46-22260 files not shown
+128-46166 files

LLVM/project 31f4d0allvm/utils/lit/tests shtest-format.py shtest-run-at-line.py, polly/test lit.cfg

rebase

Created using spr 1.3.7
DeltaFile
+33-66llvm/utils/lit/tests/shtest-format.py
+5-53llvm/utils/lit/tests/shtest-run-at-line.py
+7-30llvm/utils/lit/tests/shtest-timeout.py
+0-36llvm/utils/lit/tests/shtest-external-shell-kill.py
+0-25llvm/utils/lit/tests/shtest-readfile-external.py
+1-12polly/test/lit.cfg
+46-22262 files not shown
+130-48468 files

LLVM/project 826ecdalldb/packages/Python/lldbsuite/test/tools/lldb_dap types.py dap_types.py, llvm/test/Transforms/ConstraintElimination induction-condition-in-loop-exit-postinc.ll induction-condition-in-loop-exit.ll

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+2,026-0lldb/packages/Python/lldbsuite/test/tools/lldb_dap/types.py
+0-2,026lldb/packages/Python/lldbsuite/test/tools/lldb_dap/dap_types.py
+578-0llvm/test/Transforms/ConstraintElimination/induction-condition-in-loop-exit-postinc.ll
+0-541mlir/lib/Target/LLVMIR/Dialect/OpenACC/OpenACCToLLVMIRTranslation.cpp
+0-514llvm/test/Transforms/ConstraintElimination/induction-condition-in-loop-exit.ll
+136-100mlir/lib/Dialect/XeGPU/Transforms/XeGPUPropagateLayout.cpp
+2,740-3,1811,270 files not shown
+10,440-8,2171,276 files

LLVM/project 62960ealldb/packages/Python/lldbsuite/test/tools/lldb_dap types.py dap_types.py, llvm/test/Transforms/ConstraintElimination induction-condition-in-loop-exit-postinc.ll induction-condition-in-loop-exit.ll

rebase

Created using spr 1.3.7
DeltaFile
+2,026-0lldb/packages/Python/lldbsuite/test/tools/lldb_dap/types.py
+0-2,026lldb/packages/Python/lldbsuite/test/tools/lldb_dap/dap_types.py
+578-0llvm/test/Transforms/ConstraintElimination/induction-condition-in-loop-exit-postinc.ll
+0-541mlir/lib/Target/LLVMIR/Dialect/OpenACC/OpenACCToLLVMIRTranslation.cpp
+0-514llvm/test/Transforms/ConstraintElimination/induction-condition-in-loop-exit.ll
+136-100mlir/lib/Dialect/XeGPU/Transforms/XeGPUPropagateLayout.cpp
+2,740-3,1811,270 files not shown
+10,440-8,2171,276 files

LLVM/project 1adb526lldb/packages/Python/lldbsuite/test/tools/lldb_dap dap_types.py types.py, llvm/test/Transforms/ConstraintElimination induction-condition-in-loop-exit-postinc.ll induction-condition-in-loop-exit.ll

rebase

Created using spr 1.3.7
DeltaFile
+0-2,026lldb/packages/Python/lldbsuite/test/tools/lldb_dap/dap_types.py
+2,026-0lldb/packages/Python/lldbsuite/test/tools/lldb_dap/types.py
+578-0llvm/test/Transforms/ConstraintElimination/induction-condition-in-loop-exit-postinc.ll
+0-541mlir/lib/Target/LLVMIR/Dialect/OpenACC/OpenACCToLLVMIRTranslation.cpp
+0-514llvm/test/Transforms/ConstraintElimination/induction-condition-in-loop-exit.ll
+136-100mlir/lib/Dialect/XeGPU/Transforms/XeGPUPropagateLayout.cpp
+2,740-3,1811,270 files not shown
+10,440-8,2171,276 files

LLVM/project 2fbc89elldb/packages/Python/lldbsuite/test/tools/lldb_dap types.py dap_types.py, llvm/test/Transforms/ConstraintElimination induction-condition-in-loop-exit-postinc.ll induction-condition-in-loop-exit.ll

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+2,026-0lldb/packages/Python/lldbsuite/test/tools/lldb_dap/types.py
+0-2,026lldb/packages/Python/lldbsuite/test/tools/lldb_dap/dap_types.py
+578-0llvm/test/Transforms/ConstraintElimination/induction-condition-in-loop-exit-postinc.ll
+0-541mlir/lib/Target/LLVMIR/Dialect/OpenACC/OpenACCToLLVMIRTranslation.cpp
+0-514llvm/test/Transforms/ConstraintElimination/induction-condition-in-loop-exit.ll
+136-100mlir/lib/Dialect/XeGPU/Transforms/XeGPUPropagateLayout.cpp
+2,740-3,1811,270 files not shown
+10,440-8,2171,276 files

LLVM/project 533e44dlldb/packages/Python/lldbsuite/test/tools/lldb_dap dap_types.py types.py, llvm/test/Transforms/ConstraintElimination induction-condition-in-loop-exit-postinc.ll induction-condition-in-loop-exit.ll

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+0-2,026lldb/packages/Python/lldbsuite/test/tools/lldb_dap/dap_types.py
+2,026-0lldb/packages/Python/lldbsuite/test/tools/lldb_dap/types.py
+578-0llvm/test/Transforms/ConstraintElimination/induction-condition-in-loop-exit-postinc.ll
+0-541mlir/lib/Target/LLVMIR/Dialect/OpenACC/OpenACCToLLVMIRTranslation.cpp
+0-514llvm/test/Transforms/ConstraintElimination/induction-condition-in-loop-exit.ll
+136-100mlir/lib/Dialect/XeGPU/Transforms/XeGPUPropagateLayout.cpp
+2,740-3,1811,270 files not shown
+10,440-8,2171,276 files

LLVM/project 2aeb4fdlldb/packages/Python/lldbsuite/test/tools/lldb_dap types.py dap_types.py, llvm/test/Transforms/ConstraintElimination induction-condition-in-loop-exit-postinc.ll induction-condition-in-loop-exit.ll

rebase

Created using spr 1.3.7
DeltaFile
+2,026-0lldb/packages/Python/lldbsuite/test/tools/lldb_dap/types.py
+0-2,026lldb/packages/Python/lldbsuite/test/tools/lldb_dap/dap_types.py
+578-0llvm/test/Transforms/ConstraintElimination/induction-condition-in-loop-exit-postinc.ll
+0-541mlir/lib/Target/LLVMIR/Dialect/OpenACC/OpenACCToLLVMIRTranslation.cpp
+0-514llvm/test/Transforms/ConstraintElimination/induction-condition-in-loop-exit.ll
+136-100mlir/lib/Dialect/XeGPU/Transforms/XeGPUPropagateLayout.cpp
+2,740-3,1811,270 files not shown
+10,440-8,2171,276 files

LLVM/project 11d3482lldb/packages/Python/lldbsuite/test/tools/lldb_dap types.py dap_types.py, llvm/test/Transforms/ConstraintElimination induction-condition-in-loop-exit-postinc.ll induction-condition-in-loop-exit.ll

rebase

Created using spr 1.3.7
DeltaFile
+2,026-0lldb/packages/Python/lldbsuite/test/tools/lldb_dap/types.py
+0-2,026lldb/packages/Python/lldbsuite/test/tools/lldb_dap/dap_types.py
+578-0llvm/test/Transforms/ConstraintElimination/induction-condition-in-loop-exit-postinc.ll
+0-541mlir/lib/Target/LLVMIR/Dialect/OpenACC/OpenACCToLLVMIRTranslation.cpp
+0-514llvm/test/Transforms/ConstraintElimination/induction-condition-in-loop-exit.ll
+136-100mlir/lib/Dialect/XeGPU/Transforms/XeGPUPropagateLayout.cpp
+2,740-3,1811,270 files not shown
+10,440-8,2171,276 files