LLVM/project ce2a591mlir/lib/Dialect/GPU/IR GPUDialect.cpp, mlir/test/Dialect/GPU invalid.mlir

[mlir][gpu] Enforce async keyword when parsing gpu.launch with results (#176570)

The `gpu.launch` parser attempts to add a null `asyncTokenType` to the
results list if a result is requested but the `async` keyword is
missing, leading to an assertion failure.

Explicitly verify that `asyncTokenType` is valid when
`parser.getNumResults() > 0`. Emit a diagnostic error if the `async`
keyword is missing instead of crashing.

Add a regression test to `mlir/test/Dialect/GPU/invalid.mlir`.

Fix: https://github.com/llvm/llvm-project/issues/176530
DeltaFile
+11-0mlir/test/Dialect/GPU/invalid.mlir
+6-1mlir/lib/Dialect/GPU/IR/GPUDialect.cpp
+17-12 files

LLVM/project e786740llvm/lib/Target/AMDGPU GCNSchedStrategy.cpp GCNSchedStrategy.h, llvm/test/CodeGen/AMDGPU machine-scheduler-sink-trivial-remats-debug.mir

Set rematerialized MIs' reg operands to sentinel reg

Also removes a bunch of const specified on class members that prevents
std::sort from compiling on some configs.
DeltaFile
+20-8llvm/lib/Target/AMDGPU/GCNSchedStrategy.cpp
+6-4llvm/lib/Target/AMDGPU/GCNSchedStrategy.h
+2-2llvm/test/CodeGen/AMDGPU/machine-scheduler-sink-trivial-remats-debug.mir
+28-143 files

LLVM/project 7ea1fa5llvm/lib/Transforms/Vectorize LoopVectorize.cpp, llvm/test/Transforms/LoopVectorize find-last.ll

[LV] Skip FindLast reductions in collectInLoopReductions.

FindLast in-loop reductions are not supported, similarly to FindLastIV
reductions. Skip them in collectInLoopReductions, to avoid a crash for
loops with FindLast reductions and in-loop reductions preferred.
DeltaFile
+2-1llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+1-0llvm/test/Transforms/LoopVectorize/find-last.ll
+3-12 files

LLVM/project 7b2ea93clang-tools-extra/clang-doc JSONGenerator.cpp MDMustacheGenerator.cpp, clang-tools-extra/clang-doc/assets/md namespace-template.mustache class-template.mustache

fix test, formatting, and license header
DeltaFile
+132-0clang-tools-extra/test/clang-doc/basic-project.mustache.test
+116-5clang-tools-extra/test/clang-doc/namespace.cpp
+102-18clang-tools-extra/clang-doc/JSONGenerator.cpp
+115-0clang-tools-extra/clang-doc/MDMustacheGenerator.cpp
+63-0clang-tools-extra/clang-doc/assets/md/namespace-template.mustache
+62-0clang-tools-extra/clang-doc/assets/md/class-template.mustache
+590-2322 files not shown
+846-7128 files

LLVM/project 8735e0clibc/config/linux app.h, libc/src/__support/threads fork_callbacks.cpp

[libc] Remove superfluous explicitly defaulted constructors (#177471)

Any user-defined constructor, even an `= default` one, is
incompatible with aggregate initialization in C++20.

The default constructor does not need to be declared at all in
these cases.  It's implicit.
DeltaFile
+0-2libc/config/linux/app.h
+0-1libc/src/__support/threads/fork_callbacks.cpp
+0-32 files

LLVM/project 10d6e4ellvm/lib/Transforms/Instrumentation MemProfUse.cpp

[StaticDataLayout] Temporarily undo diagnostic warning when the data access profile payload is not available (#177412)

Added a FIXME to add it back later after figuring out how to make it a
non-error like the PGO profile mismatch one.
DeltaFile
+2-5llvm/lib/Transforms/Instrumentation/MemProfUse.cpp
+2-51 files

FreeNAS/freenas 8d4662fsrc/middlewared/middlewared/api/base model.py, src/middlewared/middlewared/api/base/handler accept.py dump_params.py

Rollback `defer_build=True`
DeltaFile
+1-23src/middlewared/middlewared/api/base/model.py
+1-4src/middlewared/middlewared/api/base/handler/accept.py
+0-4src/middlewared/middlewared/utils/pydantic_.py
+0-2src/middlewared/middlewared/api/base/server/legacy_api_method.py
+0-2src/middlewared/middlewared/api/base/handler/dump_params.py
+0-2src/middlewared/middlewared/api/base/handler/result.py
+2-376 files

FreeNAS/freenas 4880323src/middlewared/middlewared/utils debug.py

Address review
DeltaFile
+10-10src/middlewared/middlewared/utils/debug.py
+10-101 files

LLVM/project b1e7ee1llvm/lib/Transforms/InstCombine InstCombineSelect.cpp, llvm/test/Transforms/InstCombine nanless-canonicalize-combine.ll

Partially handle as independent folds
DeltaFile
+49-11llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp
+21-32llvm/test/Transforms/InstCombine/nanless-canonicalize-combine.ll
+70-432 files

LLVM/project cb75f93llvm/lib/Transforms/InstCombine InstCombineSelect.cpp, llvm/test/Transforms/InstCombine nanless-canonicalize-combine.ll

InstCombine: Fold out nanless canonicalize pattern

Pattern match a wrapper around llvm.canonicalize which
weakens the semantics to not require quieting signaling
nans. Depending on the denormal mode and FP type, we can
either drop the pattern entirely or reduce it only to
a canonicalize call. I'm inventing this pattern to deal
with LLVM's lax canonicalization model in math library
code.

The math library code currently has explicit checks for
the denormal mode, and conditionally canonicalizes the
result if there is flushing. Semantically, this could be
directly replaced with a simple call to llvm.canonicalize,
but doing so would incur an additional cost when using
standard IEEE behavior. If we do not care about quieting
a signaling nan, this should be a no-op unless the denormal
mode may flush. This will allow replacement of the
conditional code with a zero cost abstraction utility

    [17 lines not shown]
DeltaFile
+20-81llvm/test/Transforms/InstCombine/nanless-canonicalize-combine.ll
+65-0llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp
+85-812 files

LLVM/project f793b21llvm/test/Transforms/InstCombine nanless-canonicalize-combine.ll

InstCombine: Add baseline test for nanless canonicalize combine
DeltaFile
+832-0llvm/test/Transforms/InstCombine/nanless-canonicalize-combine.ll
+832-01 files

LLVM/project 9269f84clang Maintainers.rst

[clang] Add myself as an additional offloading driver maintainer (#177392)

I've worked in the offloading driver a decent amount both directly here
and in Intel's downstream forks and I feel I have the judgement to
consider the needs of the project overall as well as the bandwidth to
properly carry out the role.

Signed-off-by: Nick Sarnie <nick.sarnie at intel.com>
DeltaFile
+3-0clang/Maintainers.rst
+3-01 files

LLVM/project c38bffcllvm/lib/Target/AMDGPU AMDGPUSubtarget.h GCNSubtarget.h

[NFCI][AMDGPU] Refine `AMDGPUSubtarget.h`

This PR is to move code around to pave the path for using `GET_SUBTARGETINFO_MACRO` in `GCNSubtarget.h`.
DeltaFile
+60-88llvm/lib/Target/AMDGPU/AMDGPUSubtarget.h
+14-1llvm/lib/Target/AMDGPU/GCNSubtarget.h
+74-892 files

LLVM/project 1286de4llvm/lib/Transforms/Scalar LoopFuse.cpp, llvm/test/Transforms/LoopFusion pr165087.ll sunk-phi-nodes.ll

[LoopFusion] Optimize away Phi nodes that are sunk from the 2nd loop preheader (#176503)

Fixed issue #165087.

When we sink phis from the 2nd loop preheader to the exit block, we 
optimize it a bit further, i.e., propagate the uses of each phi node with 
its incoming value and optimize away the phis. Deleted `fixPHINodes()`
too because the phis are already optimized away and there is no point 
processing `fixPHINodes()`.
DeltaFile
+47-0llvm/test/Transforms/LoopFusion/pr165087.ll
+12-26llvm/lib/Transforms/Scalar/LoopFuse.cpp
+1-2llvm/test/Transforms/LoopFusion/sunk-phi-nodes.ll
+0-1llvm/test/Transforms/LoopFusion/lcssa.ll
+60-294 files

LLVM/project 3d3dd55flang-rt/include/flang-rt/runtime type-info.h, flang-rt/lib/runtime type-info.cpp derived.cpp

[flang][cuda] Add support for derived-type component with managed/unified attributes (#177409)

Derived-type components that have the `ALLOCATABLE` or `POINTER`
attribute as well as the CUDA `MANAGED` or `UNIFIED` attribute need to
have a specific allocator index set in the descriptor so the allocation
is done correctly. Without this, the allocation is done in host memory
and will trigger illegal read or write if the component is used on the
device. The correct allocator index was set some time ago for the
`DEVICE` attribute but the `MANAGED` and `UNIFIED` attribute need the
same mechanism.

Since the `Component::Genre` has quite some room I opted to add specific
genre for allocatable and pointer with both managed or unified
attribute.
@klausler Let me know if you would prefer another solution. I was
thinking about a separate field but I wanted to avoid wasting some
bytes.
DeltaFile
+33-3flang/test/Lower/CUDA/cuda-allocatable-device.cuf
+13-15flang-rt/lib/runtime/type-info.cpp
+15-12flang/lib/Semantics/runtime-type-info.cpp
+5-12flang-rt/lib/runtime/derived.cpp
+7-7flang/test/Semantics/typeinfo01.f90
+11-3flang-rt/include/flang-rt/runtime/type-info.h
+84-525 files not shown
+97-6411 files

FreeBSD/ports 50e6daegraphics/darktable Makefile

graphics/darktable: Add `llvm:build` after `compiler:*` in USES=

The move of `USES+=compiler:*` later in the file to be able to check
`${ARCH}` apparently triggered the following warning:

    make: .../Mk/Uses/compiler.mk:86: warning: Command "/usr/local/llvm19/bin/clang --version" exited with status 127
    make: .../Mk/Uses/compiler.mk:134: warning: Command "/usr/local/llvm19/bin/clang++ -### /dev/null 2>&1" exited with status 127

It looks like the order of `compiler:*` and `llvm:*` is important.
Moving the addition of `llvm:compiler` after `compiler:*` was added
conditionally fixes that warning.

PR:             292128
Reported by:    Trond Endrestøl <Trond.Endrestol at ximalas.info>
Tested by:      Trond Endrestøl <Trond.Endrestol at ximalas.info>,
                Herbert J. Skuhra <herbert at gojira.at>
DeltaFile
+10-2graphics/darktable/Makefile
+10-21 files

NetBSD/pkgsrc-wip 7d14790go126 PLIST distinfo

go126: update to 1.26rc2.

This release includes 6 security fixes following the security policy:

- archive/zip: denial of service when parsing arbitrary ZIP archives

  archive/zip used a super-linear file name indexing algorithm that is invoked
  the first time a file in an archive is opened. This can lead to a denial of
  service when consuming a maliciously constructed ZIP archive.

  Thanks to Thanks to Jakub Ciolek for reporting this issue.

  This is CVE-2025-61728 and Go issue https://go.dev/issue/77102.

- net/http: memory exhaustion in Request.ParseForm

  When parsing a URL-encoded form net/http may allocate an unexpected amount of
  memory when provided a large number of key-value pairs. This can result in a
  denial of service due to memory exhaustion.

    [91 lines not shown]
DeltaFile
+18-10go126/PLIST
+3-3go126/distinfo
+1-1go126/Makefile
+22-143 files

FreeNAS/freenas cd43922src/middlewared/middlewared/utils pwenc.py

Type-safe utils.pwenc
DeltaFile
+24-18src/middlewared/middlewared/utils/pwenc.py
+24-181 files

LLVM/project 5f6258bclang-tools-extra Maintainers.rst

Move Piotr Zegar to the inactive maintainers list (#176967)

While reaching out to folks for a maintainers list refresh, Piotr asked
to step down due to other commitments. Thank you for all your help!
DeltaFile
+1-3clang-tools-extra/Maintainers.rst
+1-31 files

NetBSD/pkgsrc 4SCX6kidoc CHANGES-2026

   Updated devel/talloc, databases/tdb
VersionDeltaFile
1.568+3-1doc/CHANGES-2026
+3-11 files

NetBSD/pkgsrc WxwA0eadatabases/tdb distinfo Makefile

   tdb: updated to 1.4.15

   1.4.15
   Unknown changes
VersionDeltaFile
1.38+4-4databases/tdb/distinfo
1.60+2-2databases/tdb/Makefile
+6-62 files

NetBSD/pkgsrc O3YVQ5Kdevel/talloc distinfo Makefile, devel/talloc/patches patch-third__party_waf_waflib_Tools_python.py

   talloc: updated to 2.4.4

   2.4.4
   Unknown changes
VersionDeltaFile
1.1+15-0devel/talloc/patches/patch-third__party_waf_waflib_Tools_python.py
1.39+5-4devel/talloc/distinfo
1.52+2-2devel/talloc/Makefile
+22-63 files

FreeNAS/freenas 2b72e74src/middlewared/middlewared/api/base model.py, src/middlewared/middlewared/utils pwenc.py

Type-safe utils.pwenc
DeltaFile
+24-18src/middlewared/middlewared/utils/pwenc.py
+1-1src/middlewared/middlewared/api/base/model.py
+25-192 files

LLVM/project 3c40eadllvm/lib/Target/AMDGPU SIISelLowering.cpp

AMDGPU: Avoid introducing illegal fminnum_ieee/fmaxnum_ieee (#177418)

Avoid introducing fminnum_ieee/fmaxnum_ieee on f16 if f16
is not legal. This avoids regressing minimum/maximum cases
in a future commit.
DeltaFile
+3-2llvm/lib/Target/AMDGPU/SIISelLowering.cpp
+3-21 files

NetBSD/src wca8LBMdoc CHANGES-9.5

   Ticket #1996
VersionDeltaFile
1.1.2.92+60-1doc/CHANGES-9.5
+60-11 files

NetBSD/src Ybdz7SLdoc CHANGES-10.2

   Tickets #1219 - #1224
VersionDeltaFile
1.1.2.85+85-1doc/CHANGES-10.2
+85-11 files

LLVM/project 0b8239dbolt/docs BinaryAnalysis.md

Fix wording in the description of auth oracles
DeltaFile
+12-5bolt/docs/BinaryAnalysis.md
+12-51 files

LLVM/project 15cd9f7llvm/lib/CodeGen/SelectionDAG TargetLowering.cpp

[DAG] expandIntMINMAX - use getOppositeSignednessMinMaxOpcode helper to flip min/max signedness. NFC. (#177450)

DeltaFile
+1-17llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
+1-171 files

NetBSD/src 5M5VVIvusr.sbin/makefs cd9660.c

   Pull up following revision(s) (requested by nia in ticket #1224):

        usr.sbin/makefs/cd9660.c: revision 1.61

   makefs: cd9660: Honour the -m option to set the maximum disc size.

   PR port-i386/59889 i386 cd-rom iso for -current is overflowing 700MB limit
VersionDeltaFile
1.58.2.1+5-2usr.sbin/makefs/cd9660.c
+5-21 files

NetBSD/src MHIHcBgdoc CHANGES-11.0

   Tickets #146 - #161
VersionDeltaFile
1.1.2.68+122-1doc/CHANGES-11.0
+122-11 files