LLVM/project a3af640flang/include/flang/Evaluate tools.h, flang/lib/Evaluate tools.cpp

[flang][cuda] Avoid false positive on multi device symbol with components (#192177)

Semantic was wrongly flagging derived-type components as two device
resident object. Update how we collect symbols and count the number of
device resident object.
DeltaFile
+34-0flang/lib/Evaluate/tools.cpp
+26-0flang/test/Lower/CUDA/cuda-data-transfer.cuf
+11-0flang/include/flang/Evaluate/tools.h
+2-1flang/lib/Semantics/check-cuda.cpp
+73-14 files

LLVM/project f834a48clang/lib/CIR/CodeGen CIRGenCall.cpp, clang/test/CIR/CodeGen trivial-abi.cpp

[CIR][ABI] Handle callee-destructed params for trivial_abi (#191257)

Replace errorNYI for isParamDestroyedInCallee with working
implementation: create aggregate temp, mark externally destructed,
emit expr.  Unblocks [[trivial_abi]] types on Itanium ABI.

Adds trivial-abi.cpp test covering 17 cases from
CodeGenCXX/trivial_abi.cpp with CIR/LLVM/OGCG checks.

Made with [Cursor](https://cursor.com)
DeltaFile
+316-0clang/test/CIR/CodeGen/trivial-abi.cpp
+20-5clang/lib/CIR/CodeGen/CIRGenCall.cpp
+336-52 files

LLVM/project 0a4d3b3clang/test/CIR/CodeGen attr-noundef.cpp, clang/test/CIR/CodeGenCXX uncopyable-args.cpp x86_64-arguments.cpp

[CIR][ABI][NFC] Add x86_64 ABI parity tests (#191259)

Add three test files for CIR ABI parity on x86_64, all with
CIR/LLVM/OGCG checks:

- uncopyable-args.cpp — 24 functions covering non-copyable and
  move-only types (trivial, default-ctor, move-ctor, etc.)
- x86_64-arguments.cpp — 26 functions covering C++ struct passing,
  inheritance, member pointers, empty bases, packed structs
- attr-noundef.cpp — 26 functions covering noundef placement on
  structs, unions, vectors, member pointers, _BitInt

Made with [Cursor](https://cursor.com)
DeltaFile
+464-0clang/test/CIR/CodeGenCXX/uncopyable-args.cpp
+252-0clang/test/CIR/CodeGenCXX/x86_64-arguments.cpp
+235-0clang/test/CIR/CodeGen/attr-noundef.cpp
+951-03 files

LLVM/project b2af653clang/include/clang/CIR MissingFeatures.h, clang/lib/CIR/CodeGen CIRGenStmt.cpp CIRGenClass.cpp

[CIR][NFC] Convert MissingFeatures::requiresCleanups to errorNYI (#192350)

This change adds errorNYI calls in two places that we previously had
requiresCleanups() missing features markers, adds a more specific
missing feature marker for loops, removes one requiresCleanups() where
the handling was already implemented, and deletes a bunch of missing
feature markers there were never used.
DeltaFile
+4-4clang/lib/CIR/CodeGen/CIRGenStmt.cpp
+4-3clang/lib/CIR/CodeGen/CIRGenClass.cpp
+1-6clang/include/clang/CIR/MissingFeatures.h
+0-2clang/lib/CIR/CodeGen/CIRGenExprAggregate.cpp
+9-154 files

LLVM/project 5b979f5bolt/lib/Passes Instrumentation.cpp

[BOLT][Passes] use ADT containers for instrumentation spanning tree. (#192289)

Swap `std::unordered_map<…, std::set<…>>` for
`DenseMap<…, SmallVector<…>>` in `Instrumentation::instrumentFunction`
and switch read paths from `STOutSet[&BB]` to `find()`. This removes
per-set heap allocations, stops inserting empty buckets on every probe,
and replaces linear `is_contained()` scans over a red-black tree with
linear scans over inline `SmallVector` storage (most basic blocks have
at most a couple of spanning-tree out-edges). NFC.
DeltaFile
+12-7bolt/lib/Passes/Instrumentation.cpp
+12-71 files

LLVM/project eab567allvm/lib/Target/AMDGPU SIInstructions.td, llvm/test/CodeGen/AMDGPU sub.v2i16.ll add.v2i16.ll

[AMDGPU] Add true16 patterns for build_vector (vgpr, 0) (#192147)

It is shorter than VOP3 `and` instruction and in some cases
can save a second move.
DeltaFile
+8-10llvm/test/CodeGen/AMDGPU/sub.v2i16.ll
+8-10llvm/test/CodeGen/AMDGPU/add.v2i16.ll
+7-5llvm/test/CodeGen/AMDGPU/fcanonicalize.f16.ll
+4-8llvm/test/CodeGen/AMDGPU/flat-saddr-load.ll
+10-0llvm/lib/Target/AMDGPU/SIInstructions.td
+2-8llvm/test/CodeGen/AMDGPU/divergence-driven-buildvector.ll
+39-414 files not shown
+48-5010 files

LLVM/project d430d89clang/lib/CIR/Dialect/Transforms LoweringPrepare.cpp, clang/test/CIR/CodeGenCUDA device-stub.cu

[CIR][CUDA] Do Runtime Kernel Registration (#188926)

Related:
https://github.com/issues/assigned?issue=llvm%7Cllvm-project%7C179278,
https://github.com/llvm/llvm-project/issues/175871

More registration shenanigans -> Generates `__cuda_register_globals`
that associates the fatbin with kernels that contain `__global__`
qualifiers with the runtime.

Generated equivalent runtime code:

``` C
  // Called once per kernel to register it with the CUDA runtime.
  void __cuda_register_globals(void **fatbinHandle) {
      __cudaRegisterFunction(
          fatbinHandle,
          (const char *)&_Z25__device_stub__kernelfunciii, // host-side stub ptr
          (char *)__cuda_kernelname_str,                   // device-side mangled name

    [13 lines not shown]
DeltaFile
+119-2clang/lib/CIR/Dialect/Transforms/LoweringPrepare.cpp
+28-2clang/test/CIR/CodeGenCUDA/device-stub.cu
+147-42 files

LLVM/project 5dc1fd4clang/lib/CIR/CodeGen CIRGenCall.cpp, clang/test/CIR/CodeGen amdgpu-call-addrspace-cast.cpp

[CIR] Add address space casts for pointer arguments when creating a call (#192303)

This patch checks if the expected type for an argument is the same as
the actual type. If types are pointers but with different address spaces
then add an address space cast to make the pointer types match.

Assised-by: Cursor / Claude Opus 4.6
DeltaFile
+47-0clang/test/CIR/CodeGen/amdgpu-call-addrspace-cast.cpp
+12-0clang/lib/CIR/CodeGen/CIRGenCall.cpp
+59-02 files

LLVM/project bbc6a54mlir/include/mlir/Dialect/XeGPU/IR XeGPUOps.td, mlir/lib/Dialect/XeGPU/IR XeGPUOps.cpp

[MLIR][XeGPU] Remove create tdesc & update offset op from xegpu dialect (#182804)

This PR removes create_tdesc and update_offset ops from the XeGPU
dialect, as scatter load/store/prefetch now accept memref+offsets
directly.
DeltaFile
+132-300mlir/test/Dialect/XeGPU/invalid.mlir
+1-287mlir/test/Dialect/XeGPU/ops.mlir
+14-219mlir/include/mlir/Dialect/XeGPU/IR/XeGPUOps.td
+1-202mlir/test/Dialect/XeGPU/xegpu-unroll-patterns.mlir
+0-168mlir/lib/Dialect/XeGPU/IR/XeGPUOps.cpp
+1-150mlir/test/Dialect/XeGPU/xegpu-blocking.mlir
+149-1,32612 files not shown
+187-1,75818 files

LLVM/project 41d96d5bolt/lib/Rewrite RewriteInstance.cpp

[BOLT] Add guardrails around reading malformed input
DeltaFile
+27-8bolt/lib/Rewrite/RewriteInstance.cpp
+27-81 files

LLVM/project 925e2c6clang/tools/libclang CMakeLists.txt

[Clang][CMake] Fix libclang.dylib not relinking when libclang.map changes (#189698)
DeltaFile
+4-0clang/tools/libclang/CMakeLists.txt
+4-01 files

LLVM/project d1e1d54llvm/lib/Target/AMDGPU AMDGPURegBankLegalizeRules.cpp, llvm/test/CodeGen/AMDGPU llvm.amdgcn.exp2.ll

[AMDGPU]: Add regbank legalize rules for amdgcn exp2 intrinsics (#191953)
DeltaFile
+155-0llvm/test/CodeGen/AMDGPU/llvm.amdgcn.exp2.ll
+120-1llvm/test/CodeGen/AMDGPU/GlobalISel/regbankselect-fexp2.mir
+8-0llvm/lib/Target/AMDGPU/AMDGPURegBankLegalizeRules.cpp
+283-13 files

LLVM/project 151d536llvm/lib/Transforms/Vectorize VPlanTransforms.cpp

[VPlan] Remove VPConstantInt restriction for epilogue fold (NFC) (#192345)

The restriction is not needed currently. Removing it generalizes the
pattern in preparation of future changes.
DeltaFile
+1-1llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+1-11 files

LLVM/project 76d7fddclang/test/CIR/CodeGen cleanup-conditional.cpp cleanup-conditional-eh.cpp

[CIR] Simplify expr with cleanup scopes (#192344)

This change simplifies the level of scopes we build around aggregate
expressions with cleanups and return values involving expressions with
cleanups. This removes unnecessary scopes and lexical scopes that were
created around the expressions and brings the code back into alignment
with the corresponding classic codegen implementation of these handlers.
DeltaFile
+80-93clang/test/CIR/CodeGen/cleanup-conditional.cpp
+78-86clang/test/CIR/CodeGen/cleanup-conditional-eh.cpp
+62-72clang/test/CIR/CodeGen/dtors.cpp
+57-64clang/test/CIR/CodeGen/new-delete-deactivation.cpp
+37-47clang/test/CIR/CodeGen/lambda-dtor-field.cpp
+33-39clang/test/CIR/CodeGen/initializer-list-two-pointers.cpp
+347-40111 files not shown
+478-61017 files

LLVM/project c060489llvm/test/CodeGen/AArch64 ragreedy-csr.ll, llvm/test/CodeGen/PowerPC ctrloops-pseudo.ll

rebase

Created using spr 1.3.7
DeltaFile
+111-116llvm/test/CodeGen/AArch64/ragreedy-csr.ll
+88-54llvm/test/Transforms/LoopStrengthReduce/X86/normalization-during-scev-expansion.ll
+34-37llvm/test/CodeGen/X86/lsr-addrecloops.ll
+34-22llvm/test/Transforms/LoopStrengthReduce/X86/postinc-iv-used-by-urem-and-udiv.ll
+22-31llvm/test/CodeGen/PowerPC/ctrloops-pseudo.ll
+49-0llvm/test/Transforms/LoopStrengthReduce/X86/lcssa-preservation-regression.ll
+338-26050 files not shown
+570-49156 files

LLVM/project 1e2192allvm/test/CodeGen/AArch64 ragreedy-csr.ll, llvm/test/CodeGen/PowerPC ctrloops-pseudo.ll

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+111-116llvm/test/CodeGen/AArch64/ragreedy-csr.ll
+88-54llvm/test/Transforms/LoopStrengthReduce/X86/normalization-during-scev-expansion.ll
+34-37llvm/test/CodeGen/X86/lsr-addrecloops.ll
+34-22llvm/test/Transforms/LoopStrengthReduce/X86/postinc-iv-used-by-urem-and-udiv.ll
+22-31llvm/test/CodeGen/PowerPC/ctrloops-pseudo.ll
+49-0llvm/test/Transforms/LoopStrengthReduce/X86/lcssa-preservation-regression.ll
+338-26050 files not shown
+570-49156 files

LLVM/project d30b6f1llvm/test/CodeGen/AMDGPU maximumnum.bf16.ll minimumnum.bf16.ll, llvm/test/CodeGen/AMDGPU/GlobalISel insertelement.ll

rebase

Created using spr 1.3.7
DeltaFile
+4,582-5,914llvm/test/CodeGen/RISCV/rvv/vfma-vp.ll
+6,877-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-sve-instructions.s
+3,326-2,794llvm/test/CodeGen/AMDGPU/maximumnum.bf16.ll
+3,326-2,794llvm/test/CodeGen/AMDGPU/minimumnum.bf16.ll
+5,336-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-writeback.s
+2,843-799llvm/test/CodeGen/AMDGPU/GlobalISel/insertelement.ll
+26,290-12,3011,912 files not shown
+181,788-66,5161,918 files

LLVM/project 46de054llvm/test/CodeGen/AMDGPU maximumnum.bf16.ll minimumnum.bf16.ll, llvm/test/CodeGen/AMDGPU/GlobalISel insertelement.ll

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+4,582-5,914llvm/test/CodeGen/RISCV/rvv/vfma-vp.ll
+6,877-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-sve-instructions.s
+3,326-2,794llvm/test/CodeGen/AMDGPU/maximumnum.bf16.ll
+3,326-2,794llvm/test/CodeGen/AMDGPU/minimumnum.bf16.ll
+5,336-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-writeback.s
+2,843-799llvm/test/CodeGen/AMDGPU/GlobalISel/insertelement.ll
+26,290-12,3011,907 files not shown
+181,648-66,3761,913 files

LLVM/project e1c1adaclang/test/CodeGen/RISCV/rvv-intrinsics-autogenerated/zvzip/policy/non-overloaded vpairo.c vpaire.c, clang/test/CodeGen/RISCV/rvv-intrinsics-autogenerated/zvzip/policy/overloaded vpairo.c

Merge branch 'users/ziqingluo/PR-172429193-2-split-4' into users/ziqingluo/PR-172429193-3

 Conflicts:
        clang/include/clang/ScalableStaticAnalysisFramework/Analyses/EntityPointerLevel/EntityPointerLevel.h
        clang/include/clang/ScalableStaticAnalysisFramework/SSAFBuiltinForceLinker.h
        clang/lib/ScalableStaticAnalysisFramework/Analyses/UnsafeBufferUsage/UnsafeBufferUsageExtractor.cpp
DeltaFile
+6,877-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-sve-instructions.s
+5,336-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-writeback.s
+3,167-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-neon-instructions.s
+2,723-0clang/test/CodeGen/RISCV/rvv-intrinsics-autogenerated/zvzip/policy/overloaded/vpairo.c
+2,723-0clang/test/CodeGen/RISCV/rvv-intrinsics-autogenerated/zvzip/policy/non-overloaded/vpairo.c
+2,723-0clang/test/CodeGen/RISCV/rvv-intrinsics-autogenerated/zvzip/policy/non-overloaded/vpaire.c
+23,549-0681 files not shown
+87,717-9,864687 files

LLVM/project 7bb5287llvm/test/CodeGen/AMDGPU minimumnum.bf16.ll maximumnum.bf16.ll, llvm/test/CodeGen/AMDGPU/GlobalISel insertelement.ll

rebase

Created using spr 1.3.7
DeltaFile
+4,582-5,914llvm/test/CodeGen/RISCV/rvv/vfma-vp.ll
+6,877-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-sve-instructions.s
+3,326-2,794llvm/test/CodeGen/AMDGPU/minimumnum.bf16.ll
+3,326-2,794llvm/test/CodeGen/AMDGPU/maximumnum.bf16.ll
+5,336-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-writeback.s
+2,843-799llvm/test/CodeGen/AMDGPU/GlobalISel/insertelement.ll
+26,290-12,3011,937 files not shown
+181,759-66,5661,943 files

LLVM/project 7a9558dllvm/test/CodeGen/AMDGPU minimumnum.bf16.ll maximumnum.bf16.ll, llvm/test/CodeGen/AMDGPU/GlobalISel insertelement.ll

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+4,582-5,914llvm/test/CodeGen/RISCV/rvv/vfma-vp.ll
+6,877-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-sve-instructions.s
+3,326-2,794llvm/test/CodeGen/AMDGPU/minimumnum.bf16.ll
+3,326-2,794llvm/test/CodeGen/AMDGPU/maximumnum.bf16.ll
+5,336-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-writeback.s
+2,843-799llvm/test/CodeGen/AMDGPU/GlobalISel/insertelement.ll
+26,290-12,3011,937 files not shown
+181,759-66,5661,943 files

LLVM/project 353a4e3llvm/test/CodeGen/AMDGPU minimumnum.bf16.ll maximumnum.bf16.ll, llvm/test/CodeGen/AMDGPU/GlobalISel insertelement.ll

rebase

Created using spr 1.3.7
DeltaFile
+4,582-5,914llvm/test/CodeGen/RISCV/rvv/vfma-vp.ll
+6,877-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-sve-instructions.s
+3,326-2,794llvm/test/CodeGen/AMDGPU/minimumnum.bf16.ll
+3,326-2,794llvm/test/CodeGen/AMDGPU/maximumnum.bf16.ll
+5,336-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-writeback.s
+2,843-799llvm/test/CodeGen/AMDGPU/GlobalISel/insertelement.ll
+26,290-12,3011,893 files not shown
+181,521-66,2151,899 files

LLVM/project ea663afllvm/test/CodeGen/AMDGPU minimumnum.bf16.ll maximumnum.bf16.ll, llvm/test/CodeGen/AMDGPU/GlobalISel insertelement.ll

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+4,582-5,914llvm/test/CodeGen/RISCV/rvv/vfma-vp.ll
+6,877-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-sve-instructions.s
+3,326-2,794llvm/test/CodeGen/AMDGPU/minimumnum.bf16.ll
+3,326-2,794llvm/test/CodeGen/AMDGPU/maximumnum.bf16.ll
+5,336-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-writeback.s
+2,843-799llvm/test/CodeGen/AMDGPU/GlobalISel/insertelement.ll
+26,290-12,3011,893 files not shown
+181,521-66,2151,899 files

LLVM/project a45b6b0llvm/test/CodeGen/AMDGPU maximumnum.bf16.ll minimumnum.bf16.ll, llvm/test/CodeGen/AMDGPU/GlobalISel insertelement.ll

rebase

Created using spr 1.3.7
DeltaFile
+4,582-5,914llvm/test/CodeGen/RISCV/rvv/vfma-vp.ll
+6,877-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-sve-instructions.s
+3,326-2,794llvm/test/CodeGen/AMDGPU/maximumnum.bf16.ll
+3,326-2,794llvm/test/CodeGen/AMDGPU/minimumnum.bf16.ll
+5,336-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-writeback.s
+2,843-799llvm/test/CodeGen/AMDGPU/GlobalISel/insertelement.ll
+26,290-12,3011,896 files not shown
+181,885-66,3201,902 files

LLVM/project 77a2da1llvm/test/CodeGen/AMDGPU minimumnum.bf16.ll maximumnum.bf16.ll, llvm/test/CodeGen/AMDGPU/GlobalISel insertelement.ll

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+4,582-5,914llvm/test/CodeGen/RISCV/rvv/vfma-vp.ll
+6,877-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-sve-instructions.s
+3,326-2,794llvm/test/CodeGen/AMDGPU/minimumnum.bf16.ll
+3,326-2,794llvm/test/CodeGen/AMDGPU/maximumnum.bf16.ll
+5,336-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-writeback.s
+2,843-799llvm/test/CodeGen/AMDGPU/GlobalISel/insertelement.ll
+26,290-12,3011,896 files not shown
+181,885-66,3201,902 files

LLVM/project a218593llvm/test/CodeGen/AMDGPU maximumnum.bf16.ll minimumnum.bf16.ll, llvm/test/CodeGen/AMDGPU/GlobalISel insertelement.ll

rebase

Created using spr 1.3.7
DeltaFile
+4,582-5,914llvm/test/CodeGen/RISCV/rvv/vfma-vp.ll
+6,877-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-sve-instructions.s
+3,326-2,794llvm/test/CodeGen/AMDGPU/maximumnum.bf16.ll
+3,326-2,794llvm/test/CodeGen/AMDGPU/minimumnum.bf16.ll
+5,336-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-writeback.s
+2,843-799llvm/test/CodeGen/AMDGPU/GlobalISel/insertelement.ll
+26,290-12,3011,894 files not shown
+181,522-66,2791,900 files

LLVM/project 8863fd3llvm/test/CodeGen/AMDGPU minimumnum.bf16.ll maximumnum.bf16.ll, llvm/test/CodeGen/AMDGPU/GlobalISel insertelement.ll

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+4,582-5,914llvm/test/CodeGen/RISCV/rvv/vfma-vp.ll
+6,877-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-sve-instructions.s
+3,326-2,794llvm/test/CodeGen/AMDGPU/minimumnum.bf16.ll
+3,326-2,794llvm/test/CodeGen/AMDGPU/maximumnum.bf16.ll
+5,336-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-writeback.s
+2,843-799llvm/test/CodeGen/AMDGPU/GlobalISel/insertelement.ll
+26,290-12,3011,894 files not shown
+181,522-66,2791,900 files

LLVM/project 6643213mlir/lib/Dialect/SPIRV/IR SPIRVOps.cpp, mlir/test/Dialect/SPIRV/IR structure-ops.mlir

[mlir][SPIR-V] Reject initializer on Import-linkage GlobalVariable (#192302)

Per the SPIR-V spec, a module-scope OpVariable with Import linkage must
not have an initializer
DeltaFile
+13-0mlir/test/Dialect/SPIRV/IR/structure-ops.mlir
+11-0mlir/lib/Dialect/SPIRV/IR/SPIRVOps.cpp
+24-02 files

LLVM/project e7ef07bclang/test/CodeGen/RISCV/rvv-intrinsics-autogenerated/zvzip/policy/non-overloaded vpaire.c vpairo.c, clang/test/CodeGen/RISCV/rvv-intrinsics-autogenerated/zvzip/policy/overloaded vpaire.c

Merge branch 'users/ziqingluo/PR-172429193-2-split-3' into users/ziqingluo/PR-172429193-2-split-4

 Conflicts:
        clang/lib/ScalableStaticAnalysisFramework/Analyses/UnsafeBufferUsage/UnsafeBufferUsageExtractor.cpp
DeltaFile
+6,877-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-sve-instructions.s
+5,336-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-writeback.s
+3,167-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-neon-instructions.s
+2,723-0clang/test/CodeGen/RISCV/rvv-intrinsics-autogenerated/zvzip/policy/overloaded/vpaire.c
+2,723-0clang/test/CodeGen/RISCV/rvv-intrinsics-autogenerated/zvzip/policy/non-overloaded/vpaire.c
+2,723-0clang/test/CodeGen/RISCV/rvv-intrinsics-autogenerated/zvzip/policy/non-overloaded/vpairo.c
+23,549-0681 files not shown
+87,725-9,867687 files

LLVM/project 47f1c1aclang/include/clang/ScalableStaticAnalysisFramework/Analyses/EntityPointerLevel EntityPointerLevel.h, clang/lib/ScalableStaticAnalysisFramework/Analyses SSAFAnalysesCommon.cpp SSAFAnalysesCommon.h

clean up
DeltaFile
+3-6clang/lib/ScalableStaticAnalysisFramework/Analyses/UnsafeBufferUsage/UnsafeBufferUsageExtractor.cpp
+2-2clang/lib/ScalableStaticAnalysisFramework/Analyses/SSAFAnalysesCommon.cpp
+1-1clang/lib/ScalableStaticAnalysisFramework/Analyses/SSAFAnalysesCommon.h
+1-1clang/include/clang/ScalableStaticAnalysisFramework/Analyses/EntityPointerLevel/EntityPointerLevel.h
+7-104 files