LLVM/project 0000e52llvm/utils/gn/secondary/clang/include/clang/Basic BUILD.gn, llvm/utils/gn/secondary/clang/lib/Basic BUILD.gn

[gn] port 731bcb5a1c774 (tblgen aarch64 builtins)
DeltaFile
+4-0llvm/utils/gn/secondary/clang/include/clang/Basic/BUILD.gn
+1-0llvm/utils/gn/secondary/clang/lib/Basic/BUILD.gn
+5-02 files

FreeBSD/ports 0739235dns/bind-tools pkg-plist-devel, dns/bind9-devel pkg-plist distinfo

dns/bind9-devel: update to 9.21.20

Changes:        https://downloads.isc.org/isc/bind9/9.21.20/doc/arm/html/notes.html#notes-for-bind-9-21-20
Security:       CVE-2026-1519, CVE-2026-3104, CVE-2026-3119, CVE-2026-3591
DeltaFile
+13-13dns/bind9-devel/files/extrapatch-bind-min-override-ttl
+5-5dns/bind-tools/pkg-plist-devel
+5-5dns/bind9-devel/pkg-plist
+3-3dns/bind9-devel/distinfo
+1-1dns/bind9-devel/Makefile
+27-275 files

LLVM/project 6420dd8llvm/test/Transforms/LoopVectorize/AArch64 binop-costs.ll

[LV] Add missing REQUIRES: asserts to new test from #188126.

Test checks debug output, and requires asserts.
DeltaFile
+2-0llvm/test/Transforms/LoopVectorize/AArch64/binop-costs.ll
+2-01 files

FreeBSD/ports 0739234dns/bind-tools pkg-plist, dns/bind920 pkg-plist distinfo

dns/bind920: update to 9.20.21

Changes:        https://downloads.isc.org/isc/bind9/9.20.21/doc/arm/html/notes.html#notes-for-bind-9-20-21
Security:       CVE-2026-1519, CVE-2026-3104, CVE-2026-3119, CVE-2026-3591
DeltaFile
+8-8dns/bind920/files/extrapatch-bind-min-override-ttl
+5-5dns/bind920/pkg-plist
+5-5dns/bind-tools/pkg-plist
+3-3dns/bind920/distinfo
+1-1dns/bind920/Makefile
+22-225 files

FreeBSD/ports 0739233dns/bind918 pkg-plist distinfo, dns/bind918/files extrapatch-bind-min-override-ttl

dns/bind918: update to 9.18.47

Changes:        https://downloads.isc.org/isc/bind9/9.18.47/doc/arm/html/notes.html#notes-for-bind-9-18-47
Security:       CVE-2026-1519
DeltaFile
+7-7dns/bind918/pkg-plist
+7-7dns/bind918/files/extrapatch-bind-min-override-ttl
+3-3dns/bind918/distinfo
+1-1dns/bind918/Makefile
+18-184 files

LLVM/project 9c3105bclang/docs ReleaseNotes.rst, clang/include/clang/Basic DiagnosticSemaKinds.td

[Clang] [Sema] Improve handling of multidimensional subscript operator for builtin types (#187828)

This patch improves the diagnostic we issue when a multidimensional
subscript operator is applied to a builtin type. Additionally, this also
updates several code paths that were asserting that a subscript operator
always has 1 argument to handle multiple arguments properly.

Fixes #187800.
DeltaFile
+64-0clang/test/SemaCXX/cxx23-builtin-subscript.cpp
+22-5clang/lib/Sema/SemaExpr.cpp
+4-0clang/include/clang/Basic/DiagnosticSemaKinds.td
+2-2clang/test/OpenMP/target_update_messages.cpp
+1-1clang/test/SemaCXX/cxx2b-overloaded-operator.cpp
+1-0clang/docs/ReleaseNotes.rst
+94-86 files

FreeNAS/freenas ba16b8fsrc/middlewared/middlewared/plugins/failover_ event.py

NAS-140406 / 27.0.0-BETA.1 / Ensure remote disk.retaste during vrrp_master is quick (#18550)

(cherry picked from commit 488e8dac7ee841a7d5eeb043e2b8b344d13eab55)
DeltaFile
+9-3src/middlewared/middlewared/plugins/failover_/event.py
+9-31 files

LLVM/project 7398eb0mlir/lib/Dialect/Linalg/IR LinalgOps.cpp, mlir/test/Dialect/Linalg canonicalize.mlir

[mlir][linalg] Fix UBSan division-by-zero in PackOp folding (#186271)

When tensor-cast folding propagates a zero constant into a dynamic tile
size, `FoldTensorCastPackOp` would proceed to fold the pack into an
`expand_shape` using that zero tile — causing undefined behaviour
(integer
division/modulo by zero, caught by UBSan as SIGFPE).

1. Guard `FoldTensorCastPackOp`: bail out early if any of the resolved
   tile sizes is zero, preventing the invalid fold entirely.

2. Restrict the `hasZeros` check in `commonVerifierPackAndUnPackOp` to
only inspect `Attribute` operands (statically-known zeros), not dynamic
`Value` operands. The verifier can only meaningfully reject zero tiles
   that are statically visible; dynamic zeros are an inherently runtime
   condition.

3. Add `assert(*constantTile \!= 0)` guards in `requirePaddingValue` and
   `requirePaddingValueStrict` to document and enforce the precondition

    [9 lines not shown]
DeltaFile
+49-30mlir/test/Dialect/Linalg/canonicalize.mlir
+11-4mlir/lib/Dialect/Linalg/IR/LinalgOps.cpp
+60-342 files

LLVM/project 731bcb5clang/include/clang/Basic BuiltinsAArch64.td BuiltinsAArch64.def, clang/lib/Basic/Targets AArch64.cpp

AArch64 Tablegen Update (#179692)

- Use updated `.td` file instead of the `.def` file for the AArch64
builtin functions.
- The change has been tested via `clang-check` and `check-clang` which
returns no error nor warnings
- The translation is mostly done using the translation script -
https://github.com/moodytongytong/random-python-script

Signed-off-by: moodytongytong

---------

Co-authored-by: Lang Hames <lhames at gmail.com>
Co-authored-by: Jackson Stogel <jtstogel at gmail.com>
Co-authored-by: Pranav Kant <prka at google.com>
DeltaFile
+410-0clang/include/clang/Basic/BuiltinsAArch64.td
+0-329clang/include/clang/Basic/BuiltinsAArch64.def
+23-16clang/lib/Basic/Targets/AArch64.cpp
+37-0clang/include/clang/Basic/BuiltinsAArch64Base.td
+8-8clang/include/clang/Basic/BuiltinsARM.def
+3-3clang/include/clang/Basic/TargetBuiltins.h
+481-3564 files not shown
+490-35810 files

FreeNAS/freenas 2e978bdsrc/middlewared/middlewared/plugins/failover_ event.py

Ensure remote disk.retaste during vrrp_master is quick

(cherry picked from commit cfb552a7a07365721ceb672d638ed8723e42b8ee)
DeltaFile
+9-3src/middlewared/middlewared/plugins/failover_/event.py
+9-31 files

FreeNAS/freenas 8177b10

Empty commit to create PR on github.

You should reset it
DeltaFile
+0-00 files

FreeNAS/freenas 488e8dasrc/middlewared/middlewared/plugins/failover_ event.py

NAS-140406 / 27.0.0-BETA.1 / Ensure remote disk.retaste during vrrp_master is quick (#18550)
DeltaFile
+9-3src/middlewared/middlewared/plugins/failover_/event.py
+9-31 files

LLVM/project 3e01145clang/docs ReleaseNotes.rst, clang/include/clang/Basic DiagnosticGroups.td DiagnosticSemaKinds.td

[clang] Add -Wunused-but-set-global (#188291)

Commit fd11cf430e5a extended `-Wunused-but-set-variable` to static
globals. To make it easier for downstream projects to integrate this new
functionality, this commit introduces `-Wunused-but-set-global` so it
can be easily disabled as projects investigate and fix new findings.
DeltaFile
+7-2clang/lib/Sema/SemaDecl.cpp
+4-4clang/test/C/C2y/n3622.c
+4-1clang/docs/ReleaseNotes.rst
+3-1clang/include/clang/Basic/DiagnosticGroups.td
+3-0clang/include/clang/Basic/DiagnosticSemaKinds.td
+1-1clang/lib/Sema/Sema.cpp
+22-93 files not shown
+27-99 files

LLVM/project 499afa6flang/lib/Semantics openmp-utils.cpp check-omp-loop.cpp, flang/test/Parser/OpenMP interchange-fail.f90 tile-fail.f90

[flang][OpenMP] Check if loop nest/sequence is well-formed (#188025)

Check if the code associated with a nest or sequence construct is well
formed. Emit diagnostic messages if not.

Make a clearer separation for checks of loop-nest-associated and loop-
sequence-associated constructs.

Unify structure of some of the more common messages.

Issue: https://github.com/llvm/llvm-project/issues/185287
DeltaFile
+115-47flang/lib/Semantics/openmp-utils.cpp
+55-74flang/lib/Semantics/check-omp-loop.cpp
+0-31flang/test/Parser/OpenMP/interchange-fail.f90
+0-31flang/test/Parser/OpenMP/tile-fail.f90
+18-0flang/test/Semantics/OpenMP/interchange-fail.f90
+18-0flang/test/Semantics/OpenMP/tile-fail.f90
+206-18317 files not shown
+270-23623 files

FreeNAS/freenas 28099afsrc/middlewared/middlewared/api/v26_0_0 truenas.py, src/middlewared/middlewared/api/v27_0_0 truenas.py

add truenas.license API
DeltaFile
+68-0src/middlewared/middlewared/plugins/truenas/license_utils.py
+35-0src/middlewared/middlewared/plugins/truenas/license.py
+23-2src/middlewared/middlewared/api/v26_0_0/truenas.py
+23-2src/middlewared/middlewared/api/v27_0_0/truenas.py
+5-0src/middlewared/middlewared/plugins/system/product.py
+1-0src/middlewared/middlewared/plugins/failover.py
+155-46 files

LLVM/project ab17b54llvm/lib/Target/LoongArch LoongArchISelLowering.cpp, llvm/lib/Target/RISCV RISCVISelLowering.cpp

[LoongArch][RISCV] Fix incorrect indexing of incoming byval arguments in tail call eligibility check (#188006)

The loop that validates byval arguments in
`isEligibleForTailCallOptimization()` incorrectly used the loop index
`i` when accessing `getIncomingByValArgs()`, even though `j` is the
index tracking the number of encountered byval arguments.

This mismatch could lead to out-of-bounds access or incorrect type
comparisons when non-byval arguments are interleaved with byval
arguments, causing the tail call eligibility check to fail or behave
incorrectly.

Fix this by using `j` consistently as the index into the incoming byval
argument list and only incrementing it after the bounds check.

This issue affects both LoongArch and RISCV backends, which share the
same logic pattern.

Fixes #187832
DeltaFile
+48-0llvm/test/CodeGen/LoongArch/issue187832.ll
+48-0llvm/test/CodeGen/RISCV/pr187832.ll
+4-3llvm/lib/Target/LoongArch/LoongArchISelLowering.cpp
+3-2llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+103-54 files

LLVM/project 3488960llvm/lib/Transforms/Vectorize SLPVectorizer.cpp, llvm/test/Transforms/SLPVectorizer/RISCV complex-loads.ll

[SLP]Mark candidate instruction as reduced value, if it is the operand of another reduced value

If the next candidate is the operand of one of the reduced value
candidates, such instructions also should be marked as a reduced value,
not a reduction operation, even if all other requirements are met.
This will allow to reduce the compile time.

Reviewers: hiraditya, RKSimon

Pull Request: https://github.com/llvm/llvm-project/pull/188103
DeltaFile
+81-150llvm/test/Transforms/SLPVectorizer/RISCV/complex-loads.ll
+6-1llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
+87-1512 files

LLVM/project 3e72f02openmp/device/src Kernel.cpp

[Offload][OpenMP][libdevice] Make check to enter state machine architecture dependent (#188144)

The genericStateMachine call uses synchronize::thread wich is expected
to be implemented using a workgroup level barrier.
Currently as in some other architectures where if threads in the same
warp as the main thread reach the barrier may cause a race condition
there's a condition that makes some threads not enter the state machine.
But in Intel GPUs all threads must reach the barrier for it to be
completed, otherwise the threads in the state machine never make
progress.

This PR moves the condition into an architecture-dependent config so it
can work correctly for both kinds of hardware.
DeltaFile
+29-15openmp/device/src/Kernel.cpp
+29-151 files

LLVM/project 46cc035flang-rt CMakeLists.txt

Explicitly warn about disabled tests
DeltaFile
+8-4flang-rt/CMakeLists.txt
+8-41 files

LLVM/project f871503llvm/lib/Transforms/Vectorize SLPVectorizer.cpp, llvm/test/Transforms/SLPVectorizer/RISCV shuffled-gather-casted.ll

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+25-14llvm/test/Transforms/SLPVectorizer/RISCV/shuffled-gather-casted.ll
+13-6llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
+38-202 files

FreeBSD/ports 6d4d0dcscience/fastcap Makefile pkg-plist

science/fastcap: update 2.0wr-011109 -> 2.0wr-010524

Changelog: https://people.freebsd.org/~rodrigo/fastcap-2.0wr-010524.changelog.txt

Major changes:
    * Fixed an old fastcap bug that could seg. fault
    * Rewrote the Makefile/config system to match FastHenry

Port changes:
    * move to gmake and GCC for the build, instead of trying to patch for llvm
DeltaFile
+17-23science/fastcap/Makefile
+26-3science/fastcap/pkg-plist
+3-2science/fastcap/distinfo
+46-283 files

LLVM/project 80dc5aaflang/lib/Lower/OpenMP ClauseProcessor.cpp, flang/test/Lower/OpenMP declare-simd.f90 linear_modifier.f90

[flang][mlir][OpenMP] Add linear modifier (val, ref, uval) (#187142)

Add support for OpenMP linear modifiers `val`, `ref`, and `uval` as
defined in OpenMP 5.2 (5.4.6).
DeltaFile
+107-23mlir/lib/Dialect/OpenMP/IR/OpenMPDialect.cpp
+82-0mlir/test/Dialect/OpenMP/ops.mlir
+75-0mlir/test/Dialect/OpenMP/invalid.mlir
+55-8flang/lib/Lower/OpenMP/ClauseProcessor.cpp
+55-2flang/test/Lower/OpenMP/declare-simd.f90
+54-0flang/test/Lower/OpenMP/linear_modifier.f90
+428-338 files not shown
+521-6614 files

LLVM/project 33da12amlir/lib/Dialect/OpenACC/Transforms ACCIfClauseLowering.cpp, mlir/test/Dialect/OpenACC acc-if-clause-lowering.mlir

[acc] Lower acc if with multi-block host fallback via scf.execute_region (#188350)

handle multi-block host fallback regions by wrapping them in
scf.execute_region, instead of rejecting with `not yet implemented:
region with multiple blocks`.
DeltaFile
+22-15mlir/lib/Dialect/OpenACC/Transforms/ACCIfClauseLowering.cpp
+36-0mlir/test/Dialect/OpenACC/acc-if-clause-lowering.mlir
+58-152 files

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

InstCombine: Fold out nanless canonicalize pattern (#172998)

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

    [16 lines not shown]
DeltaFile
+41-121llvm/test/Transforms/InstCombine/nanless-canonicalize-combine.ll
+99-0llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp
+140-1212 files

LLVM/project 51c3f97lld/ELF/Arch Hexagon.cpp, lld/test/ELF hexagon-undefined-weak.s

[lld][Hexagon] Test undefined weak branches (#186613)

Undefined weak branches do not needsThunk().

Add a test case to cover undef weak.
DeltaFile
+28-0lld/test/ELF/hexagon-undefined-weak.s
+4-1lld/ELF/Arch/Hexagon.cpp
+32-12 files

FreeBSD/ports 1fa06f6net-mgmt/py-pypowerwall pkg-plist distinfo

net-mgmt/py-pypowerwall: Update to 0.14.10
DeltaFile
+43-36net-mgmt/py-pypowerwall/pkg-plist
+3-3net-mgmt/py-pypowerwall/distinfo
+2-2net-mgmt/py-pypowerwall/Makefile
+48-413 files

FreeBSD/ports 225f4camisc/claude-code pkg-plist distinfo, misc/claude-code/files package-lock.json

misc/claude-code: update 2.1.62 → 2.1.81
DeltaFile
+12-8misc/claude-code/pkg-plist
+4-4misc/claude-code/files/package-lock.json
+3-3misc/claude-code/distinfo
+1-1misc/claude-code/Makefile
+20-164 files

FreeBSD/ports f6cca41multimedia/ossia-score Makefile

multimedia/ossia-score: Broken on FreeBSD 13
DeltaFile
+1-0multimedia/ossia-score/Makefile
+1-01 files

LLVM/project 1dc5b0cllvm/include/llvm/Analysis AliasAnalysis.h, llvm/lib/Analysis BasicAliasAnalysis.cpp

[DSE] Use CycleInfo instead of LoopInfo (#188253)

DSE needs to reason about cycles in order to correctly handle
loop-carried dependencies. It currently does this by using LoopInfo and
performing a separate check for irreducible control flow.

Instead, we can use CycleInfo, which is like LoopInfo but also handles
irreducible cycles.

This requires computing CycleInfo (which, unlike LoopInfo won't be
reused by surrouding passes), but ends up being neutral in terms of
compile-time overall.
DeltaFile
+17-27llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
+8-4llvm/lib/Analysis/BasicAliasAnalysis.cpp
+5-2llvm/include/llvm/Analysis/AliasAnalysis.h
+1-0llvm/test/Other/new-pm-thinlto-postlink-samplepgo-defaults.ll
+1-0llvm/test/Other/new-pm-thinlto-prelink-defaults.ll
+1-0llvm/test/Other/new-pm-thinlto-prelink-samplepgo-defaults.ll
+33-335 files not shown
+38-3311 files

LLVM/project 08c94c0lldb/source/Plugins/ObjectContainer/BSD-Archive ObjectContainerBSDArchive.cpp, lldb/source/Plugins/ObjectFile/COFF ObjectFileCOFF.cpp

[lldb] Clear up GetModuleSpecifications return value confusion (#188276)

Some plugins were returning the number of specifications they have
added, while others were returning the total final number. Particularly
devious plugins (Minidump) were clearing the specification list
altogether. This resulted in nondeterministic failures (depending on
plugin ininitialization order) in TestSBModule.

This PR defines the problem away by having each plugin only return the
specifications it is responsible for. If the caller wants to merge them,
it is free to do so. This *might* be slighly less efficient, but this is
hardly hot code.

I'm not touching the ObjectFile::GetModuleSpecifications function (the
caller of all these functions) as the PR is big enough, although the
same approach might be warranted there as well.

Fixes https://github.com/llvm/llvm-project/issues/178625.
DeltaFile
+13-12lldb/source/Plugins/ObjectFile/COFF/ObjectFileCOFF.cpp
+12-7lldb/source/Symbol/ObjectFile.cpp
+8-9lldb/source/Plugins/ObjectContainer/BSD-Archive/ObjectContainerBSDArchive.cpp
+8-7lldb/source/Plugins/ObjectFile/JSON/ObjectFileJSON.cpp
+7-8lldb/source/Plugins/ObjectFile/wasm/ObjectFileWasm.cpp
+7-7lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp
+55-5026 files not shown
+182-19232 files