LLVM/project 9239024lldb/include/lldb/Host SafeMachO.h

[lldb] Attempt to unbreak building lldb with the 27 SDK (#223090)

See this report:
https://github.com/llvm/llvm-project/pull/222721#issuecomment-5636252813
DeltaFile
+1-0lldb/include/lldb/Host/SafeMachO.h
+1-01 files

LLVM/project 329f454llvm/lib/CodeGen SafeStack.cpp, llvm/test/Transforms/SafeStack/X86 pointer-address-domtree.ll

[CodeGen][SafeStack] Successful InlineFunction should force a recalculation of potentially stale DominatorTree (#222820)

In commit 51a25846c198, Safe Stack began preserving the `DominatorTree`
by the end of the pass' run. Updates to the `DominatorTree` were then
made lazily via inclusion of `DomTreeUpdater` and its use with
`SplitBlockAndInsertIfThen`. Preservation was maintained when updated to
the new pass manager in 3bd517205799. However, there was an overlooked
case where the `DominatorTree` would remain stale by the end of the Safe
Stack pass if the actions under `TryInlinePointerAddress` completed
successfully and modified the caller's CFG.

The conditions for a stale `DominatorTree` to exist are roughly:
1. Safe Stack obtains the Unsafe Stack pointer location as a `CallInst`
(i.e. one way is `-safestack-use-pointer-address`)
2. `__safestack_pointer_address` is defined and inlined successfully.
3. The inlining changes the CFG such that a recalculated `DominatorTree`
would differ.
4. `DominatorTree` remains unchanged since it is preserved and currently
not recalculated.

    [53 lines not shown]
DeltaFile
+33-0llvm/test/Transforms/SafeStack/X86/pointer-address-domtree.ll
+5-1llvm/lib/CodeGen/SafeStack.cpp
+38-12 files

LLVM/project d9be270mlir/cmake/modules AddMLIR.cmake, mlir/docs CMakeInfrastructure.md

[MLIR][CMake] Add HEADER_LIBS and document CMake infrastructure

Add HEADER_LIBS as a flat list of literal library targets for generated headers
included without a link relationship. Resolve aliases and forward references,
accept imported libraries as already generated, follow nested HEADER_LIBS and
link interfaces, and reject missing, executable, utility, or generator-
expression entries with configure-time diagnostics. Represent header-only
edges in the common internal INTERFACE graph, including cyclic relationships.

Record links added by mlir_target_link_libraries for the same deferred ordering.
Add explicit, commented HEADER_LIBS edges for every audited header-only include
that is not covered by mlir-generic-headers, and keep this facility a rare
layering escape hatch.

Document dialects, interfaces, passes, PDLL, generated documentation, library
visibility, C API aggregation, tools, exports, standalone consumers, and the
generated-file model. Add a CMake fixture covering cycles, aliases, conditions,
LINK_ONLY, imported and ignored items, post-hoc links, and invalid providers.
Build each consumer independently from a clean state to verify transitive

    [5 lines not shown]
DeltaFile
+343-0mlir/docs/CMakeInfrastructure.md
+192-0mlir/test/CMake/header-dependencies.test
+110-1mlir/cmake/modules/AddMLIR.cmake
+10-1mlir/lib/Rewrite/CMakeLists.txt
+8-0mlir/lib/Dialect/LLVMIR/CMakeLists.txt
+7-0mlir/test/CMake/lit.local.cfg
+670-210 files not shown
+704-716 files

LLVM/project 3ca8be3mlir/cmake/modules AddMLIR.cmake, mlir/docs ReleaseNotes.md

[MLIR][CMake] Remove aggregate generated-header ordering

Remove the broad mlir-headers prerequisites now that direct links and
HEADER_LIBS relationships provide generated-header ordering.

Keep own generators and intentional source-generation dependencies explicit.
Document migration options for downstream projects that relied on aggregate
ordering.

Assisted-by: Codex
Assisted-by: Claude Code
Co-Authored-By: Claude Fable 5.1 <noreply at anthropic.com>
DeltaFile
+0-32mlir/lib/CAPI/Dialect/CMakeLists.txt
+11-0mlir/docs/ReleaseNotes.md
+0-9mlir/lib/Dialect/OpenACC/Utils/CMakeLists.txt
+4-4mlir/cmake/modules/AddMLIR.cmake
+0-6mlir/lib/Conversion/ArithAndMathToAPFloat/CMakeLists.txt
+0-6mlir/lib/CMakeLists.txt
+15-57122 files not shown
+16-380128 files

LLVM/project aecddabllvm/cmake/modules LLVM-Build.cmake TableGen.cmake, llvm/test lit.site.cfg.py.in

[CMake] Propagate generated-header prerequisites through link dependencies

The goal is to simplify and make more robust the handling of generated-header
(TableGen) dependencies. Today these dependencies are managed manually, which
is fragile: missing edges often surface only in parallel builds, and sometimes
in incremental builds.

Record each llvm_add_library DEPENDS list independently from the cumulative
LLVM_COMMON_DEPENDS value, and mark public TableGen targets as generated-header
prerequisites. A deferred traversal follows every direct non-INTERFACE link and
transitive link interface, resolves aliases, and conservatively extracts target
candidates from generator expressions.

Represent generated-header prerequisites with internal INTERFACE libraries.
Let CMake propagate their utility dependencies through the header graph, and
reuse each provider's interface to handle cycles without computing closures.
Disabled generator-expression arms may generate extra headers, but cannot
introduce a provider library or object cycle.


    [10 lines not shown]
DeltaFile
+161-41llvm/cmake/modules/AddLLVM.cmake
+131-0llvm/test/CMake/generated-header-dependencies.test
+6-0llvm/cmake/modules/TableGen.cmake
+3-0llvm/cmake/modules/LLVM-Build.cmake
+2-0llvm/test/lit.site.cfg.py.in
+2-0llvm/test/CMake/lit.local.cfg
+305-416 files

LLVM/project d3950bfmlir/lib/Dialect/Linalg/TransformOps LinalgTransformOps.cpp, mlir/lib/Dialect/Linalg/Transforms Vectorization.cpp Loops.cpp

[MLIR] Fix -Wunused-template (#221480)

This warning was enabled by default for clang 23 (although reverted in
23.1.1). Given someone might enable it in the future and the cleanup
seemed nice, we should just do it.

This was done primarily by removing static from templates in headers and
then deleting any unused templates in translation units.
DeltaFile
+0-26mlir/lib/Dialect/Linalg/TransformOps/LinalgTransformOps.cpp
+0-22mlir/lib/Dialect/SCF/IR/SCF.cpp
+0-18mlir/lib/Dialect/Linalg/Transforms/Loops.cpp
+0-16mlir/lib/Dialect/Linalg/Transforms/Vectorization.cpp
+0-15mlir/lib/Tools/mlir-pdll-lsp-server/Protocol.cpp
+0-15mlir/lib/Dialect/OpenACC/IR/OpenACC.cpp
+0-11215 files not shown
+6-21921 files

LLVM/project f562ceemlir/cmake/modules AddMLIR.cmake, mlir/docs ReleaseNotes.md

[MLIR][CMake] Remove aggregate generated-header ordering

Remove the broad mlir-headers prerequisites now that direct links and
HEADER_LIBS relationships provide generated-header ordering.

Keep own generators and intentional source-generation dependencies explicit.
Document migration options for downstream projects that relied on aggregate
ordering.

Assisted-by: Codex
Assisted-by: Claude Code
Co-Authored-By: Claude Fable 5.1 <noreply at anthropic.com>
DeltaFile
+0-32mlir/lib/CAPI/Dialect/CMakeLists.txt
+11-0mlir/docs/ReleaseNotes.md
+0-9mlir/lib/Dialect/OpenACC/Utils/CMakeLists.txt
+4-4mlir/cmake/modules/AddMLIR.cmake
+0-6mlir/lib/Conversion/ArithAndMathToAPFloat/CMakeLists.txt
+0-6mlir/lib/CMakeLists.txt
+15-57122 files not shown
+16-380128 files

LLVM/project db2b258llvm/cmake/modules TableGen.cmake AddLLVM.cmake, llvm/test lit.site.cfg.py.in

[CMake] Propagate generated-header prerequisites through link dependencies

The goal is to simplify and make more robust the handling of generated-header
(TableGen) dependencies. Today these dependencies are managed manually, which
is fragile: missing edges often surface only in parallel builds, and sometimes
in incremental builds.

Record each llvm_add_library DEPENDS list independently from the cumulative
LLVM_COMMON_DEPENDS value, and mark public TableGen targets as generated-header
prerequisites. A deferred traversal follows every direct non-INTERFACE link and
transitive link interface, resolves aliases, and conservatively extracts target
candidates from generator expressions.

Represent generated-header prerequisites with internal INTERFACE libraries.
Let CMake propagate their utility dependencies through the header graph, and
reuse each provider's interface to handle cycles without computing closures.
Disabled generator-expression arms may generate extra headers, but cannot
introduce a provider library or object cycle.


    [10 lines not shown]
DeltaFile
+158-15llvm/cmake/modules/AddLLVM.cmake
+95-0llvm/test/CMake/generated-header-dependencies.test
+6-0llvm/cmake/modules/TableGen.cmake
+2-0llvm/test/lit.site.cfg.py.in
+2-0llvm/test/CMake/lit.local.cfg
+263-155 files

LLVM/project 7c2715dmlir/cmake/modules AddMLIR.cmake, mlir/docs CMakeInfrastructure.md

[MLIR][CMake] Add HEADER_LIBS and document CMake infrastructure

Add HEADER_LIBS as a flat list of literal library targets for generated headers
included without a link relationship. Resolve aliases and forward references,
accept imported libraries as already generated, follow nested HEADER_LIBS and
link interfaces, and reject missing, executable, utility, or generator-
expression entries with configure-time diagnostics. Represent header-only
edges in the common internal INTERFACE graph, including cyclic relationships.

Record links added by mlir_target_link_libraries for the same deferred ordering.
Add explicit, commented HEADER_LIBS edges for every audited header-only include
that is not covered by mlir-generic-headers, and keep this facility a rare
layering escape hatch.

Document dialects, interfaces, passes, PDLL, generated documentation, library
visibility, C API aggregation, tools, exports, standalone consumers, and the
generated-file model. Add a CMake fixture covering cycles, aliases, conditions,
LINK_ONLY, imported and ignored items, post-hoc links, and invalid providers.
Build each consumer independently from a clean state to verify transitive

    [5 lines not shown]
DeltaFile
+343-0mlir/docs/CMakeInfrastructure.md
+192-0mlir/test/CMake/header-dependencies.test
+110-1mlir/cmake/modules/AddMLIR.cmake
+10-1mlir/lib/Rewrite/CMakeLists.txt
+8-0mlir/lib/Dialect/LLVMIR/CMakeLists.txt
+7-0mlir/test/CMake/lit.local.cfg
+670-210 files not shown
+704-716 files

LLVM/project 575a20allvm/lib/Target/AArch64 AArch64ConditionalCompares.cpp, llvm/test/CodeGen/AArch64 cmpbr-ccmp.ll cmpbr-ccmp.mir

[AArch64] Form CCMP for CBB and CBH

AArch64ConditionalCompares forms CMP/CCMP chains to transform patterns
such as

                 Head                        Head
                 / |                         CmpBB
                /  |                         / |
               |  CmpBB        =>           /  |
               |  / |                    Tail  |
               | /  |                      |   |
              Tail  |                      |   |
                |   |                      |   |
               ... ...                    ... ...

where Head is terminated by a conditional branch and CmpBB contains
a cmp + conditional branch.

We usually try to split any fused conditional branches to be able to

    [8 lines not shown]
DeltaFile
+406-0llvm/test/CodeGen/AArch64/cmpbr-ccmp.mir
+232-0llvm/test/CodeGen/AArch64/cmpbr-ccmp.ll
+41-2llvm/lib/Target/AArch64/AArch64ConditionalCompares.cpp
+679-23 files

LLVM/project 4d10444mlir/lib/Dialect/OpenACC/Transforms ACCImplicitData.cpp, mlir/test/Dialect/OpenACC acc-implicit-data.mlir

[mlir][OpenACC] Restrict implicit data to compute constructs (#222759)

acc.kernel_environment contains host-side preparation around an outlined
compute region; it is not itself an OpenACC compute construct. Treating
all of its live-ins as implicit device mappings can map
compiler-generated host operations and assign them kernels-style copy
semantics.

Limit ACCImplicitData to parallel, kernels, and serial. In particular,
do not process kernel_environment or the lowered compute_region form.

Assisted-by: Cursor
DeltaFile
+25-0mlir/test/Dialect/OpenACC/acc-implicit-data.mlir
+7-16mlir/lib/Dialect/OpenACC/Transforms/ACCImplicitData.cpp
+32-162 files

LLVM/project a8e989fflang/test/Transforms/OpenACC acc-recipe-materialization-reduction.fir acc-recipe-materialization-parallel.fir, mlir/lib/Dialect/OpenACC/Transforms ACCRecipeMaterialization.cpp

[mlir][OpenACC] Preserve reduction mappings during materialization. (#222189)

Create or reuse structured reduction mappings before compute-construct
reduction recipes are consumed. Materialize initialization and
combination against the mapped value while leaving nested loop
reductions unchanged.

Assisted-by: Cursor
DeltaFile
+85-4mlir/lib/Dialect/OpenACC/Transforms/ACCRecipeMaterialization.cpp
+74-10mlir/test/Dialect/OpenACC/acc-recipe-materialization-reduction.mlir
+8-5mlir/test/Dialect/OpenACC/acc-recipe-materialization-parallel.mlir
+8-5flang/test/Transforms/OpenACC/acc-recipe-materialization-reduction.fir
+8-5flang/test/Transforms/OpenACC/acc-recipe-materialization-parallel.fir
+183-295 files

LLVM/project 80bc026flang/include/flang/Optimizer/OpenACC Passes.td, flang/lib/Optimizer/OpenACC/Transforms ACCRecipeBufferization.cpp

[flang][OpenACC] Allocate bufferized recipe descriptors in device memory (#223028)

ACCRecipeBufferization places the descriptor of a bufferized recipe
clause next to the variable it holds. When the clause sits inside a
compute construct and the variable is already produced by a data entry
operation, that memory is host memory no data clause maps, so device
code reading the descriptor through it gets a host address.

Place the descriptor in the construct region in that case. The region is
device memory and needs no data clause of its own, and the mapped
variable is a legal live-in since a data entry operation produces it.
The region entry block is used rather than the clause operation so that
a clause on a nested loop does not allocate on every iteration.

Assisted-by: Cursor
DeltaFile
+327-0flang/test/Fir/OpenACC/recipe-bufferization.mlir
+37-1flang/lib/Optimizer/OpenACC/Transforms/ACCRecipeBufferization.cpp
+6-2flang/include/flang/Optimizer/OpenACC/Passes.td
+370-33 files

LLVM/project 641dc58orc-rt/include/orc-rt-c/support RTTI.h, orc-rt/include/orc-rt/support Error.h RTTI.h

[orc-rt] Refactor RTTI for cross-library support, add C API (#222946)

Identify types by name rather than by the address of a per-type ID
object, so that a type's identity survives crossing a library boundary:
an object may be constructed by one library and have its type queried by
another, each with its own copy of orc-rt, where per-type addresses
would not agree. Participating classes now declare an RTTIName, which
must be unique across the process.

RTTIRoot records which library produced each value, so same-library
queries still resolve by pointer comparison, and only cross-library ones
fall back to strcmp.

Adds orc-rt-c/support/RTTI.h to expose this to C.
ORC_RT_RTTI_PARTICIPANT and ORC_RT_C_RTTI_IMPL declare and define a
per-type cast entry point, reached via ORC_RT_DYNCAST, alongside
orc_rt_RTTIRoot_getTypeName for logging. This replaces the
orc_rt_Error_TypeId API (orc_rt_Error_getTypeId,
orc_rt_StringError_getTypeId), which exposed ID addresses and so could

    [5 lines not shown]
DeltaFile
+111-28orc-rt/include/orc-rt/support/RTTI.h
+50-50orc-rt/test/unit/support/ErrorCAPITest.cpp
+96-0orc-rt/test/unit/support/RTTICrossDylibTest.cpp
+56-0orc-rt/include/orc-rt-c/support/RTTI.h
+42-0orc-rt/test/unit/Inputs/RTTICrossDylibTestError.h
+27-14orc-rt/include/orc-rt/support/Error.h
+382-9212 files not shown
+506-12918 files

LLVM/project 5f09d40mlir/lib/Dialect/PDLInterp/IR PDLInterp.cpp

[mlir][PDLInterp] Stop using Operation::getAttrs (NFC) (#223088)

Print the discardable dictionary after the inherent fields handled by
the custom assembly format.

This is part of a general migration to use the "new" properties-based
APIs and stop mixing discardable/inherent attributes, see #155475

Assisted-by: Codex
DeltaFile
+1-1mlir/lib/Dialect/PDLInterp/IR/PDLInterp.cpp
+1-11 files

LLVM/project 0cc524fflang/lib/Lower OpenACC.cpp, flang/test/Lower module-parameter-linkonce-odr.f90

[flang][OpenACC] Do not emit declare ctor/dtor for module PARAMETER variables (#222993)

A module PARAMETER in !$acc declare is already emitted as an initialized
device global. A host ctor/dtor would still register that same symbol
with the runtime. Skip the registration pair and keep acc.declare so the
constant is
still emitted as an initialized global in the GPU module.
DeltaFile
+14-0flang/test/Lower/OpenACC/acc-declare-globals.f90
+5-0flang/lib/Lower/OpenACC.cpp
+3-0flang/test/Lower/module-parameter-linkonce-odr.f90
+22-03 files

LLVM/project 4cec7e6mlir/lib/Dialect/SMT/IR SMTOps.cpp

[mlir][SMT] Stop using Operation::getAttrs (NFC) (#223086)

Print only discardable attributes after inherent fields are handled by
the custom operation printers.

This is part of a general migration to use the "new" properties-based
APIs and stop mixing discardable/inherent attributes, see #155475

Assisted-by: Codex
DeltaFile
+7-4mlir/lib/Dialect/SMT/IR/SMTOps.cpp
+7-41 files

LLVM/project f04bee1clang/include/clang/AST DeclCXX.h, clang/lib/AST DeclTemplate.cpp Decl.cpp

[Clang] Prototype explicit ASTContext threading through hot queries

Pass the owning AST context through selected declaration, constructor,
override, inheritance, template lookup, and CodeGen query chains.
Retain fallback APIs for callers without an available context, and reuse
the context locally within addedMember without adding AST storage.

This is an experimental alternative to the inline ASTContext lookup
change, based on its relationship-cache parent. Some overloads duplicate
implementation bodies and need consolidation before a production proposal.

Five paired runs on each MLIR source file reduced retired instructions by
1.59% on RegisterAllDialects.cpp and 0.86% on NVVMDialect.cpp. Median wall
time improved by 0.88% and 0.45%, respectively. This recovers about 72% and
58% of the inline variant instruction reduction, not its full performance.

Validation: Clang and AllClangUnitTests rebuilt; 46 focused unit tests and
3,076 Sema regression tests passed. Representative objects match the parent
and inline variants after removing only the compiler identification section.

    [2 lines not shown]
DeltaFile
+87-24clang/lib/AST/DeclCXX.cpp
+55-46clang/lib/Sema/SemaDeclCXX.cpp
+54-6clang/lib/AST/Decl.cpp
+56-3clang/include/clang/AST/DeclCXX.h
+25-24clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
+24-19clang/lib/AST/DeclTemplate.cpp
+301-12211 files not shown
+404-16817 files

LLVM/project 40c7dd2flang/lib/Lower PFTBuilder.cpp, flang/test/Lower trailing-cycle.f90

[flang] Delete a trailing CYCLE that is the last statement of its DO

A CycleStmt at the end of the body of its own DoConstruct is a no-op:
branching to the EndDoStmt and falling through to it are the same thing.
Branch analysis nonetheless marks the DoConstruct unstructured, which
costs the structured form of the loop and the induction variable
semantics that later passes rely on.

Delete such a CycleStmt in the PFT. The statement
must be unlabeled, so that it is not itself a branch target, and it must
name either no construct or this one.
DeltaFile
+152-0flang/test/Lower/trailing-cycle.f90
+67-0flang/lib/Lower/PFTBuilder.cpp
+40-0flang/test/Lower/OpenMP/trailing-cycle.f90
+259-03 files

LLVM/project c7a7f83mlir/lib/Dialect/Utils StructuredOpsUtils.cpp

[mlir] Stop using Operation::getAttrs in dialect utilities (NFC) (#223081)

Copy operation properties and discardable attributes separately.

This is part of a general migration to use the "new" properties-based
APIs and stop mixing discardable/inherent attributes, see #155475

Assisted-by: Codex
DeltaFile
+5-3mlir/lib/Dialect/Utils/StructuredOpsUtils.cpp
+5-31 files

LLVM/project bb14dc9mlir/examples/toy/Ch2/mlir Dialect.cpp, mlir/examples/toy/Ch3/mlir Dialect.cpp

[mlir][Toy] Stop using Operation::getAttrs (NFC) (#223082)

Print only discardable attributes in Toy custom operation printers.

This is part of a general migration to use the "new" properties-based
APIs and stop mixing discardable/inherent attributes, see #155475

Assisted-by: Codex
DeltaFile
+2-2mlir/examples/toy/Ch7/mlir/Dialect.cpp
+2-2mlir/examples/toy/Ch6/mlir/Dialect.cpp
+2-2mlir/examples/toy/Ch5/mlir/Dialect.cpp
+2-2mlir/examples/toy/Ch4/mlir/Dialect.cpp
+2-2mlir/examples/toy/Ch3/mlir/Dialect.cpp
+2-2mlir/examples/toy/Ch2/mlir/Dialect.cpp
+12-126 files

LLVM/project f795e95mlir/lib/Dialect/Shape/IR Shape.cpp

[mlir][Shape] Stop using Operation::getAttrs in printers (NFC) (#223083)

Print only discardable attributes after inherent fields are handled by
the custom assembly formats.

This is part of a general migration to use the "new" properties-based
APIs and stop mixing discardable/inherent attributes, see #155475

Assisted-by: Codex
DeltaFile
+3-3mlir/lib/Dialect/Shape/IR/Shape.cpp
+3-31 files

LLVM/project b587412flang/lib/Optimizer/Transforms LoopInvariantCodeMotion.cpp, flang/test/Transforms licm.fir

[flang] Do not hoist fir.field_index out of loops (#222891)

Lowering a consumer of a !fir.field value inspects its defining
operation: for a record whose layout is known at compile time the field
becomes an LLVM GEP struct index, which must be a constant, and
otherwise the `field` attribute is read off the defining op. A field
value therefore may not be a block argument.

LICM broke that. fir.field_index is Pure and takes no operands, so it is
trivially loop-invariant and was hoisted out of the loop. Lowering emits
one inside each arm of a construct -- for example the CASEs of a SELECT
CASE that each pass a different component of the same derived type as an
actual argument -- so hoisting them left those arms as
otherwise-identical blocks differing only in that operand. Block merging
then merged them and threaded the field through a new block argument,
and codegen aborted with "must be a constant".

Leave producers of a !fir.field where they are. The arms then differ by
an operation rather than by an operand, so they are no longer merge

    [6 lines not shown]
DeltaFile
+15-0flang/lib/Optimizer/Transforms/LoopInvariantCodeMotion.cpp
+10-2flang/test/Transforms/licm.fir
+25-22 files

LLVM/project 04a0461mlir/lib/Target/Cpp TranslateToCpp.cpp

[mlir][Cpp] Stop using Operation::getAttrs (NFC) (#223080)

Only discardable attributes on multi-result func.return operations are
C++ tuple arguments; the operation has no inherent attributes relevant
to the translation.

This is part of a general migration to use the "new" properties-based
APIs and stop mixing discardable/inherent attributes, see #155475

Assisted-by: Codex
DeltaFile
+3-2mlir/lib/Target/Cpp/TranslateToCpp.cpp
+3-21 files

LLVM/project 409c924llvm/lib/Target/AArch64 AArch64ConditionalCompares.cpp, llvm/test/CodeGen/AArch64 cmpbr-ccmp.ll cmpbr-ccmp.mir

[AArch64] Form CCMP for CBB and CBH

AArch64ConditionalCompares forms CMP/CCMP chains to transform patterns
such as

                 Head                        Head
                 / |                         CmpBB
                /  |                         / |
               |  CmpBB        =>           /  |
               |  / |                    Tail  |
               | /  |                      |   |
              Tail  |                      |   |
                |   |                      |   |
               ... ...                    ... ...

where Head is terminated by a conditional branch and CmpBB contains
a cmp + conditional branch.

We usually try to split any fused conditional branches to be able to

    [8 lines not shown]
DeltaFile
+406-0llvm/test/CodeGen/AArch64/cmpbr-ccmp.mir
+232-0llvm/test/CodeGen/AArch64/cmpbr-ccmp.ll
+40-2llvm/lib/Target/AArch64/AArch64ConditionalCompares.cpp
+678-23 files

LLVM/project f61a993flang/lib/Lower Allocatable.cpp, flang/test/Lower/CUDA cuda-gpu-managed-components.cuf

[flang][cuda] Back ALLOCATABLE components with managed memory under -gpu=mem:managed

Under -gpu=mem:managed, select the managed allocator index at the ALLOCATE site for ALLOCATABLE/POINTER components, reusing the branch #210149 added for -gpu=unified; the existing kDefaultAllocator test filters out the already-attributed entities.
DeltaFile
+122-0flang/test/Lower/CUDA/cuda-gpu-managed-components.cuf
+17-9flang/lib/Lower/Allocatable.cpp
+139-92 files

LLVM/project 44d1d02utils/bazel/llvm-project-overlay/libc/startup/linux BUILD.bazel, utils/bazel/llvm-project-overlay/libc/startup/linux/x86_64 BUILD.bazel

Add standard libc package features to libc subpackages (#223079)
DeltaFile
+8-1utils/bazel/llvm-project-overlay/libc/utils/MPFRWrapper/BUILD.bazel
+8-1utils/bazel/llvm-project-overlay/libc/utils/MPCWrapper/BUILD.bazel
+8-1utils/bazel/llvm-project-overlay/libc/test/BUILD.bazel
+5-0utils/bazel/llvm-project-overlay/libc/startup/linux/x86_64/BUILD.bazel
+5-0utils/bazel/llvm-project-overlay/libc/startup/linux/BUILD.bazel
+34-35 files

LLVM/project 242ccbfbolt/lib/Core BinaryFunction.cpp, llvm/include/llvm/Support GenericLoopInfoImpl.h

[BOLT] Fix -Wunused-template (#222439)

This was enabled by default in LLVM 23.1.0. It was disabled in LLVM
23.1.1, but it makes sense to fix the outstanding issues given they are
real.
DeltaFile
+0-4bolt/lib/Core/BinaryFunction.cpp
+2-2llvm/include/llvm/Support/GenericLoopInfoImpl.h
+2-62 files

LLVM/project a98e61cllvm/lib/Frontend/OpenMP OMPDescriptors.inc, llvm/test/Analysis/CostModel/X86 shuffle-extract_subvector.ll

Merge branch 'main' into users/mamini/clang-speed-declcontext-relationship-cache
DeltaFile
+2,066-2,066llvm/test/Analysis/CostModel/X86/shuffle-extract_subvector.ll
+840-839llvm/lib/Frontend/OpenMP/OMPDescriptors.inc
+1,173-489llvm/test/CodeGen/AArch64/sve-bf16-combines.ll
+121-1,318llvm/test/Transforms/Attributor/nofpclass.ll
+0-1,202llvm/test/CodeGen/RISCV/condops.ll
+1,156-0llvm/test/Transforms/Attributor/nofpclass-fadd-fsub.ll
+5,356-5,914847 files not shown
+36,563-20,508853 files

LLVM/project f36dedbllvm/lib/Frontend/OpenMP OMPDescriptors.inc, llvm/test/Analysis/CostModel/X86 shuffle-extract_subvector.ll

Merge branch 'main' into users/mamini/clang-speed-sema-no-work
DeltaFile
+2,066-2,066llvm/test/Analysis/CostModel/X86/shuffle-extract_subvector.ll
+840-839llvm/lib/Frontend/OpenMP/OMPDescriptors.inc
+1,173-489llvm/test/CodeGen/AArch64/sve-bf16-combines.ll
+121-1,318llvm/test/Transforms/Attributor/nofpclass.ll
+0-1,202llvm/test/CodeGen/RISCV/condops.ll
+1,156-0llvm/test/Transforms/Attributor/nofpclass-fadd-fsub.ll
+5,356-5,914847 files not shown
+36,563-20,508853 files