LLVM/project 3cd4a79clang/lib/Basic OffloadArch.cpp, clang/lib/Basic/Targets SPIR.cpp

clang: Avoid hardcoding some offload triple strings (#193811)

This will make it easier to use the subarch field in the future.
DeltaFile
+16-11clang/lib/Driver/Driver.cpp
+11-6clang/lib/Basic/OffloadArch.cpp
+4-1clang/lib/Basic/Targets/SPIR.cpp
+3-1clang/lib/Sema/SemaAMDGPU.cpp
+34-194 files

LLVM/project 8ebc730llvm/lib/Object COFFObjectFile.cpp WindowsResource.cpp, llvm/test/tools/llvm-rc windres-target.test

[llvm-rc] Add support for MIPS machine (#193830)
DeltaFile
+7-0llvm/test/tools/llvm-rc/windres-target.test
+3-0llvm/lib/Object/COFFObjectFile.cpp
+3-0llvm/lib/Object/WindowsResource.cpp
+3-0llvm/tools/llvm-rc/llvm-rc.cpp
+16-04 files

LLVM/project 7ed9d96llvm/test/Transforms/PreISelIntrinsicLowering/AArch64 expand-fp-math.ll expand-fp-math-binary.ll

[AArch64][PreISelIntrinsicLowering] Adjust tests to include -march=+sve (#193833)

These tests are exercising expansion of scalable vectors. This is
ill-defined without SVE as there aren't such legal vector types. This
mostly doesn't change the output (since the ops being exercised are
Expand in both configurations), but for fcanonicalize we're testing the
wrong result as this _shouldn't_ be (and isn't) expanded when you have
SVE.
DeltaFile
+15-27llvm/test/Transforms/PreISelIntrinsicLowering/AArch64/expand-fp-math.ll
+5-5llvm/test/Transforms/PreISelIntrinsicLowering/AArch64/expand-fp-math-binary.ll
+3-4llvm/test/Transforms/PreISelIntrinsicLowering/AArch64/expand-exp.ll
+3-3llvm/test/Transforms/PreISelIntrinsicLowering/AArch64/expand-log.ll
+26-394 files

LLVM/project de82b47clang/lib/CodeGen CGExprAgg.cpp ItaniumCXXABI.cpp, clang/lib/CodeGen/Targets AMDGPU.cpp

[Clang] Fix sret AS for non-trivial-copy returns. (#186275)

classifyReturnType used getAllocaAddrSpace() for sret, which is wrong
on targets like AMDGPU where alloca lives in addrspace(5). For types
with deleted copy/move constructors, there is no way to construct into
a temp and copy out — the sret pointer must point directly to the caller's 
destination in the default address space.

Add a target hook getSRetAddrSpace() so AMDGPU can return LangAS::Default
for non-register-passable types.

Fixes issue #185744
DeltaFile
+56-16clang/test/CodeGenHIP/sret-nontrivial-copyable.hip
+29-6clang/test/CodeGenHIP/store-addr-space.hip
+12-7clang/lib/CodeGen/CGExprAgg.cpp
+13-0clang/lib/CodeGen/Targets/AMDGPU.cpp
+8-4clang/test/CodeGenCXX/no-elide-constructors.cpp
+6-4clang/lib/CodeGen/ItaniumCXXABI.cpp
+124-373 files not shown
+136-429 files

LLVM/project 6b31a99clang/lib/Driver/ToolChains Darwin.cpp, clang/test/Driver darwin-objc-selector-stubs.m

Revert "[Darwin] Remove linker version checks for objc_msgSend selector stubs (#193637)" (#193828)

This reverts commit a6ab955369ae401cec75ced651c52c2348f117ad.

The linker version checks cannot be removed yet. The commit broke builds
that were using old linkers.
DeltaFile
+43-14clang/test/Driver/darwin-objc-selector-stubs.m
+4-2clang/lib/Driver/ToolChains/Darwin.cpp
+47-162 files

LLVM/project 3baafedopenmp/docs/design Runtimes.rst

[NFC][offload][OpenMP] Fix kernel replay documentation (#193832)
DeltaFile
+6-6openmp/docs/design/Runtimes.rst
+6-61 files

LLVM/project ecefc4allvm/lib/Transforms/Vectorize VPlanTransforms.cpp

[VPlan] Shallow-traverse vector-loop in dropPoisonGen (NFC) (#193635)

A shallow-traversal of the vector loop region is sufficient to operate
on Memory and Interleave recipes.
DeltaFile
+2-1llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+2-11 files

LLVM/project 6d826cbflang/include/flang/Parser parse-tree.h dump-parse-tree.h, flang/lib/Parser program-parsers.cpp unparse.cpp

[flang] Add parser support for Fortran 2023 conditional arguments (F2023 R1526-R1528) (#191303)

Implement parsing, unparsing, and parse tree nodes for the Fortran 2023
conditional argument syntax (F2023 R1526-R1528). This enables calls of
the form:

  call sub((flag ? a : b))
  call sub((x > 10 ? a : x > 5 ? b : c))
  call sub((flag ? a : .NIL.))

- Add ConditionalArg and ConditionalArgTail parse tree nodes
- Add Nil empty class for .NIL. representation
- Add ConditionalArg as a new alternative in ActualArg
- Add parser rules for conditional-arg, consequent, and chained branches
- Add unparse support for round-trip printing
- Add dump-parse-tree and FeatureList support
- Add parser tests covering simple, multi-branch, .NIL., BOZ, NULL(),
keyword arguments, and module procedure cases
DeltaFile
+453-0flang/test/Parser/conditional-arg.f90
+32-2flang/include/flang/Parser/parse-tree.h
+29-0flang/test/Semantics/conditional-arg.f90
+21-2flang/lib/Parser/program-parsers.cpp
+21-0flang/lib/Parser/unparse.cpp
+4-0flang/include/flang/Parser/dump-parse-tree.h
+560-42 files not shown
+568-48 files

LLVM/project 0b255femlir/include/mlir/IR DialectRegistry.h, mlir/include/mlir/Transforms Passes.td

[mlir][canonicalize] Add filter-dialects option (#193041)

Add a new `filter-dialects` list option to the canonicalize pass. When
provided, only canonicalization patterns from the listed dialects are
collected, and the named dialects are force-loaded via
getDependentDialects.

Loading flow: the Canonicalizer's getDependentDialects override calls
`registry.addDialectToPreload(name)` for each filter-dialect name, which
records the name in a new `dialectsToPreload` list on DialectRegistry.
The PassManager's pipeline-init then calls
`dependentDialects.preloadSelectDialects(ctx, emitError)`, which loads
each preload entry via `context->getOrLoadDialect(name)` — the real
allocator is resolved from the context's own registry (registered by
the tool) and the dialect is loaded before multi-threaded execution
begins. If a requested dialect has no registration in the context, a
diagnostic `"can't load dialect '<name>': missing registration?"` is
emitted.


    [17 lines not shown]
DeltaFile
+50-5mlir/include/mlir/IR/DialectRegistry.h
+33-2mlir/lib/IR/Dialect.cpp
+29-0mlir/test/Transforms/canonicalize-filter-dialects.mlir
+25-2mlir/lib/Transforms/Canonicalizer.cpp
+7-2mlir/lib/Pass/Pass.cpp
+5-1mlir/include/mlir/Transforms/Passes.td
+149-123 files not shown
+153-169 files

LLVM/project 427c92cclang/include/clang/Basic HLSLIntrinsics.td, clang/test/CIR/CodeGen cast-lvalue-conv.cpp

rebase

Created using spr 1.3.7
DeltaFile
+120-0llvm/test/Transforms/PreISelIntrinsicLowering/RISCV/expand-fp-math.ll
+112-0llvm/test/CodeGen/X86/pr193700.ll
+48-13llvm/lib/Target/SPIRV/SPIRVInstructionSelector.cpp
+14-43clang/test/Driver/darwin-objc-selector-stubs.m
+57-0clang/test/CIR/CodeGen/cast-lvalue-conv.cpp
+53-1clang/include/clang/Basic/HLSLIntrinsics.td
+404-5732 files not shown
+780-8938 files

LLVM/project 7813882clang/include/clang/Basic HLSLIntrinsics.td, clang/test/CIR/CodeGen cast-lvalue-conv.cpp

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+120-0llvm/test/Transforms/PreISelIntrinsicLowering/RISCV/expand-fp-math.ll
+112-0llvm/test/CodeGen/X86/pr193700.ll
+48-13llvm/lib/Target/SPIRV/SPIRVInstructionSelector.cpp
+14-43clang/test/Driver/darwin-objc-selector-stubs.m
+57-0clang/test/CIR/CodeGen/cast-lvalue-conv.cpp
+53-1clang/include/clang/Basic/HLSLIntrinsics.td
+404-5732 files not shown
+780-8938 files

LLVM/project ad4cd22libcxx/utils/libcxx/test config.py

[libcxx] Use debug() instead of note() for substitutions (#193667)

This reduces the noise in the lit output when running tests like this:

```
llvm-lit: llvm-project/libcxx/utils/libcxx/test/config.py:24: note: (llvm-libunwind-shared.cfg.in) Using %{cxx} substitution: 'bin/clang++'
llvm-lit: llvm-project/libcxx/utils/libcxx/test/config.py:24: note: (llvm-libunwind-shared.cfg.in) Using %{flags} substitution: ' --target=x86_64-unknown-linux-gnu'
llvm-lit: llvm-project/libcxx/utils/libcxx/test/config.py:24: note: (llvm-libunwind-shared.cfg.in) Using %{compile_flags} substitution: '-nostdinc++ -I %{include} -D_LIBUNWIND_HAVE_GETAUXVAL -funwind-tables -std=c++26 -Werror -Wall -Wctad-maybe-unsupported -Wextra -Wshadow -Wundef -Wunused-template -Wno-unused-command-line-argument -Wno-attributes -Wno-pessimizing-move -Wno-noexcept-type -Wno-atomic-alignment -Wno-reserved-module-identifier -Wdeprecated-copy -Wdeprecated-copy-dtor -Wshift-negative-value -Wno-user-defined-literals -Wno-tautological-compare -Wsign-compare -Wunused-variable -Wunused-parameter -Wunreachable-code -Wno-unused-local-typedef -Wno-local-type-template-args -Wno-c++11-extensions -Wno-unknown-pragmas -Wno-pass-failed -Wno-mismatched-new-delete -Wno-redundant-move -Wno-self-move -Wno-nullability-completeness -flax-vector-conversions=none -D_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER -Wuser-defined-warnings'
llvm-lit: llvm-project/libcxx/utils/libcxx/test/config.py:24: note: (llvm-libunwind-shared.cfg.in) Using %{link_flags} substitution: '-L %{lib} -Wl,-rpath,%{lib} -lunwind -Wl,--export-dynamic -ldl -latomic'
llvm-lit: llvm-project/libcxx/utils/libcxx/test/config.py:24: note: (llvm-libunwind-shared.cfg.in) Using %{benchmark_flags} substitution: ''
llvm-lit: llvm-project/libcxx/utils/libcxx/test/config.py:24: note: (llvm-libunwind-shared.cfg.in) Using %{exec} substitution: '%{executor} --execdir %{temp} -- '
llvm-lit: llvm-project/libcxx/utils/libcxx/test/config.py:24: note: (llvm-libunwind-shared.cfg.in) All available features: add-latomic-workaround, buildhost=linux, c++26, can-create-symlinks, character-conversion-warnings, clang, clang-23, clang-23.0, clang-23.0.0, diagnose-if-support, enable-benchmarks=run, gcc-style-warnings, has-fblocks, has-fconstexpr-steps, has-filecheck, has-unix-headers, host-has-gdb-with-python, large_tests, libcpp-has-no-experimental-hardening-observe-semantic, libcpp-has-no-experimental-optional-iterator, libcpp-has-no-experimental-syncstream, libcpp-has-no-experimental-tzdb, libcpp-has-no-incomplete-pstl, linux, locale.cs_CZ.ISO8859-2, locale.en_US.UTF-8, locale.fr_CA.ISO8859-1, locale.fr_FR.UTF-8, locale.ja_JP.UTF-8, locale.ru_RU.UTF-8, locale.zh_CN.UTF-8, long_tests, objcopy-available, objective-c++, optimization=none, std-at-least-c++03, std-at-least-c++11, std-at-least-c++14, std-at-least-c++17, std-at-least-c++20, std-at-least-c++23, std-at-least-c++26, stdlib=libc++, stdlib=llvm-libc++, target=x86_64-unknown-linux-gnu, verify-support, win32-broken-utf8-wchar-ctype
llvm-lit: llvm-project/libcxx/utils/libcxx/test/config.py:24: note: (llvm-libc++-shared.cfg.in) Using %{cxx} substitution: 'bin/clang++'
llvm-lit: llvm-project/libcxx/utils/libcxx/test/config.py:24: note: (llvm-libc++-shared.cfg.in) Using %{flags} substitution: '-pthread --target=x86_64-unknown-linux-gnu'
llvm-lit: llvm-project/libcxx/utils/libcxx/test/config.py:24: note: (llvm-libc++-shared.cfg.in) Using %{compile_flags} substitution: '-nostdinc++ -I %{target-include-dir} -I %{include-dir} -I %{libcxx-dir}/test/support -std=c++26 -Werror -Wall -Wctad-maybe-unsupported -Wextra -Wshadow -Wundef -Wunused-template -Wno-unused-command-line-argument -Wno-attributes -Wno-pessimizing-move -Wno-noexcept-type -Wno-atomic-alignment -Wno-reserved-module-identifier -Wdeprecated-copy -Wdeprecated-copy-dtor -Wshift-negative-value -Wno-user-defined-literals -Wno-tautological-compare -Wsign-compare -Wunused-variable -Wunused-parameter -Wunreachable-code -Wno-unused-local-typedef -Wno-local-type-template-args -Wno-c++11-extensions -Wno-unknown-pragmas -Wno-pass-failed -Wno-mismatched-new-delete -Wno-redundant-move -Wno-self-move -Wno-nullability-completeness -flax-vector-conversions=none -D_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER -D_LIBCPP_ENABLE_EXPERIMENTAL -Wuser-defined-warnings'
llvm-lit: llvm-project/libcxx/utils/libcxx/test/config.py:24: note: (llvm-libc++-shared.cfg.in) Using %{link_flags} substitution: '-lc++experimental -nostdlib++ -L %{lib-dir} -Wl,-rpath,%{lib-dir} -lc++ -latomic'
llvm-lit: llvm-project/libcxx/utils/libcxx/test/config.py:24: note: (llvm-libc++-shared.cfg.in) Using %{benchmark_flags} substitution: '-I runtimes/runtimes-bins/libcxx/test/benchmarks/google-benchmark/include -L runtimes/runtimes-bins/libcxx/test/benchmarks/google-benchmark/lib -L runtimes/runtimes-bins/libcxx/test/benchmarks/google-benchmark/lib64 -l benchmark'
llvm-lit: llvm-project/libcxx/utils/libcxx/test/config.py:24: note: (llvm-libc++-shared.cfg.in) Using %{exec} substitution: '%{executor} --execdir %{temp} -- '
llvm-lit: llvm-project/libcxx/utils/libcxx/test/config.py:24: note: (llvm-libc++-shared.cfg.in) All available features: add-latomic-workaround, buildhost=linux, c++26, c++experimental, can-create-symlinks, character-conversion-warnings, clang, clang-23, clang-23.0, clang-23.0.0, diagnose-if-support, enable-benchmarks=no, gcc-style-warnings, has-1024-bit-atomics, has-64-bit-atomics, has-fblocks, has-fconstexpr-steps, has-filecheck, has-unix-headers, host-has-gdb-with-python, large_tests, libcpp-abi-version=1, libcpp-hardening-mode=extensive, libcpp-has-no-availability-markup, libcpp-has-thread-api-pthread, linux, locale.cs_CZ.ISO8859-2, locale.en_US.UTF-8, locale.fr_CA.ISO8859-1, locale.fr_FR.UTF-8, locale.ja_JP.UTF-8, locale.ru_RU.UTF-8, locale.zh_CN.UTF-8, objective-c++, optimization=none, std-at

    [4 lines not shown]
DeltaFile
+1-1libcxx/utils/libcxx/test/config.py
+1-11 files

LLVM/project 4691613clang/include/clang/Basic HLSLIntrinsics.td, clang/test/CIR/CodeGen cast-lvalue-conv.cpp

rebase

Created using spr 1.3.7
DeltaFile
+120-0llvm/test/Transforms/PreISelIntrinsicLowering/RISCV/expand-fp-math.ll
+112-0llvm/test/CodeGen/X86/pr193700.ll
+48-13llvm/lib/Target/SPIRV/SPIRVInstructionSelector.cpp
+14-43clang/test/Driver/darwin-objc-selector-stubs.m
+57-0clang/test/CIR/CodeGen/cast-lvalue-conv.cpp
+53-1clang/include/clang/Basic/HLSLIntrinsics.td
+404-5733 files not shown
+782-9139 files

LLVM/project ad003e3clang/include/clang/Basic HLSLIntrinsics.td, clang/test/CIR/CodeGen cast-lvalue-conv.cpp

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+120-0llvm/test/Transforms/PreISelIntrinsicLowering/RISCV/expand-fp-math.ll
+112-0llvm/test/CodeGen/X86/pr193700.ll
+48-13llvm/lib/Target/SPIRV/SPIRVInstructionSelector.cpp
+57-0clang/test/CIR/CodeGen/cast-lvalue-conv.cpp
+14-43clang/test/Driver/darwin-objc-selector-stubs.m
+53-1clang/include/clang/Basic/HLSLIntrinsics.td
+404-5733 files not shown
+782-9139 files

LLVM/project a88b4e7clang/test/CIR/CodeGen delete-destroying.cpp, lldb/source/Symbol Function.cpp

rebase

Created using spr 1.3.7
DeltaFile
+218-9mlir/lib/Conversion/AMDGPUToROCDL/AMDGPUToROCDL.cpp
+145-0clang/test/CIR/CodeGen/delete-destroying.cpp
+108-0llvm/unittests/TargetParser/TripleTest.cpp
+99-0mlir/test/Dialect/AMDGPU/invalid.mlir
+74-0mlir/test/Dialect/AMDGPU/ops.mlir
+32-35lldb/source/Symbol/Function.cpp
+676-4443 files not shown
+1,373-15349 files

LLVM/project 2ff901aclang/test/CIR/CodeGen delete-destroying.cpp, lldb/source/Symbol Function.cpp

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+218-9mlir/lib/Conversion/AMDGPUToROCDL/AMDGPUToROCDL.cpp
+145-0clang/test/CIR/CodeGen/delete-destroying.cpp
+108-0llvm/unittests/TargetParser/TripleTest.cpp
+99-0mlir/test/Dialect/AMDGPU/invalid.mlir
+74-0mlir/test/Dialect/AMDGPU/ops.mlir
+32-35lldb/source/Symbol/Function.cpp
+676-4443 files not shown
+1,373-15349 files

LLVM/project 032b0dalibcxx/utils/libcxx/test config.py

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+2-2libcxx/utils/libcxx/test/config.py
+2-21 files

LLVM/project cd927a3libcxx/utils/libcxx/test config.py

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

Created using spr 1.3.7

[skip ci]
DeltaFile
+1-1libcxx/utils/libcxx/test/config.py
+1-11 files

LLVM/project aa3f48flibcxx/utils/libcxx/test config.py, lld/test/wasm tls-base-non-shared-memory.s pic-static.s

split

Created using spr 1.3.7
DeltaFile
+37-0lld/test/wasm/tls-base-non-shared-memory.s
+11-4lld/wasm/Writer.cpp
+1-1libcxx/utils/libcxx/test/config.py
+1-1lld/test/wasm/pic-static.s
+50-64 files

LLVM/project c9014d3llvm/lib/Transforms/Utils LowerVectorIntrinsics.cpp, llvm/test/Transforms/PreISelIntrinsicLowering/RISCV expand-fp-math.ll

[PreISelIntrinsicLowering] Use index type for index in intrinsic expansion (#193807)

We'd chosen intptr type for the binary in review, but on reflection the
index type is probably a conceptually better fit. On riscv, these are
going to be the same, so it's purely a conceptual issue.

For the unary case, this is an actual change since we were using i64
unconditionally. This improves codegen for RV32 by avoiding the need for expensive legalization of i64 expressions for the IV.
DeltaFile
+120-0llvm/test/Transforms/PreISelIntrinsicLowering/RISCV/expand-fp-math.ll
+6-6llvm/lib/Transforms/Utils/LowerVectorIntrinsics.cpp
+126-62 files

LLVM/project 94a9efeflang/test/Parser/OpenMP parallel-loop-unparse.f90

Update newly appeared test
DeltaFile
+6-6flang/test/Parser/OpenMP/parallel-loop-unparse.f90
+6-61 files

LLVM/project 5f2841cllvm/test/CodeGen/AMDGPU/NextUseAnalysis spill-vreg-many-lanes.mir acyclic-770bb.mir

rebase

Created using spr 1.3.7
DeltaFile
+275,101-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/spill-vreg-many-lanes.mir
+144,679-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/acyclic-770bb.mir
+57,682-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/double-nested-loops-complex-cfg.mir
+41,844-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills2.mir
+40,613-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills1.mir
+37,209-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills3.mir
+597,128-01,685 files not shown
+875,551-22,4491,691 files

LLVM/project 70a5328llvm/test/CodeGen/AMDGPU/NextUseAnalysis spill-vreg-many-lanes.mir acyclic-770bb.mir

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+275,101-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/spill-vreg-many-lanes.mir
+144,679-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/acyclic-770bb.mir
+57,682-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/double-nested-loops-complex-cfg.mir
+41,844-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills2.mir
+40,613-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills1.mir
+37,209-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills3.mir
+597,128-01,685 files not shown
+875,551-22,4491,691 files

LLVM/project bc6402cllvm/test/CodeGen/AMDGPU/NextUseAnalysis spill-vreg-many-lanes.mir acyclic-770bb.mir

rebase

Created using spr 1.3.7
DeltaFile
+275,101-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/spill-vreg-many-lanes.mir
+144,679-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/acyclic-770bb.mir
+57,682-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/double-nested-loops-complex-cfg.mir
+41,844-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills2.mir
+40,613-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills1.mir
+37,209-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills3.mir
+597,128-01,686 files not shown
+875,551-22,4551,692 files

LLVM/project 26ed445llvm/test/CodeGen/AMDGPU/NextUseAnalysis spill-vreg-many-lanes.mir acyclic-770bb.mir

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+275,101-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/spill-vreg-many-lanes.mir
+144,679-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/acyclic-770bb.mir
+57,682-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/double-nested-loops-complex-cfg.mir
+41,844-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills2.mir
+40,613-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills1.mir
+37,209-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills3.mir
+597,128-01,675 files not shown
+875,369-22,3051,681 files

LLVM/project a7a7f43llvm/test/CodeGen/AMDGPU/NextUseAnalysis spill-vreg-many-lanes.mir acyclic-770bb.mir

rebase

Created using spr 1.3.7
DeltaFile
+275,101-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/spill-vreg-many-lanes.mir
+144,679-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/acyclic-770bb.mir
+57,682-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/double-nested-loops-complex-cfg.mir
+41,844-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills2.mir
+40,613-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills1.mir
+37,209-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills3.mir
+597,128-01,675 files not shown
+875,369-22,3091,681 files

LLVM/project b4310f8llvm/test/CodeGen/AMDGPU/NextUseAnalysis spill-vreg-many-lanes.mir acyclic-770bb.mir

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+275,101-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/spill-vreg-many-lanes.mir
+144,679-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/acyclic-770bb.mir
+57,682-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/double-nested-loops-complex-cfg.mir
+41,844-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills2.mir
+40,613-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills1.mir
+37,209-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills3.mir
+597,128-01,675 files not shown
+875,369-22,3091,681 files

LLVM/project 6a12242llvm/test/CodeGen/AMDGPU/NextUseAnalysis spill-vreg-many-lanes.mir acyclic-770bb.mir

rebase

Created using spr 1.3.7
DeltaFile
+275,101-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/spill-vreg-many-lanes.mir
+144,679-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/acyclic-770bb.mir
+57,682-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/double-nested-loops-complex-cfg.mir
+41,844-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills2.mir
+40,613-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills1.mir
+37,209-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills3.mir
+597,128-01,675 files not shown
+875,369-22,3091,681 files

LLVM/project b96263cclang/test/CodeGenHLSL/convergence global_array.hlsl

[HLSL] Update global array convergence test (#193380)

Updates global array initialization convergence test to use static array
of resources instead of a user-defined struct with a constructor. The
test will no longer work as is once the support for user-defined
constructors is removed (#193375).
DeltaFile
+3-9clang/test/CodeGenHLSL/convergence/global_array.hlsl
+3-91 files

LLVM/project 768fcebllvm/test/CodeGen/AMDGPU/NextUseAnalysis spill-vreg-many-lanes.mir acyclic-770bb.mir

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+275,101-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/spill-vreg-many-lanes.mir
+144,679-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/acyclic-770bb.mir
+57,682-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/double-nested-loops-complex-cfg.mir
+41,844-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills2.mir
+40,613-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills1.mir
+37,209-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills3.mir
+597,128-01,675 files not shown
+875,369-22,3091,681 files