LLVM/project 3779bcblibcxx/test/libcxx/diagnostics unused_variables.verify.cpp, libcxx/test/selftest/pass.cpp werror.pass.cpp

[libc++] Switch the enable_warnings Lit parameter to enable_werror (#214113)

Our enable_warnings=False parameter in the test suite was basically not
working as intended. Instead of disabling warnings, it would disable all
warning-related flags, including flags that are required for the test
suite to pass (e.g. -Wno-user-defined-literals). As a result, it
couldn't be turned off.

Remove enable_warnings and introduce enable_werror instead. That way, we
can disable -Werror in the test suite but the warnings (and -Wno-foo)
are always used, which is necessary for the test suite to function.

Note that the ability to run the test suite without -Werror is necessary
in order to test against other implementations, including older versions
of libc++ itself.
DeltaFile
+0-23libcxx/test/selftest/sh.cpp/werror.sh.cpp
+0-23libcxx/test/selftest/pass.cpp/werror.pass.cpp
+5-6libcxx/utils/libcxx/test/params.py
+1-0libcxx/test/libcxx/diagnostics/unused_variables.verify.cpp
+6-524 files

LLVM/project aa14e4bllvm/test/Transforms/VectorCombine/X86 binop-of-shuffles.ll

[VectorCombine] binop-of-shuffles.ll - add infinite loop regression test from #211530 (#214702)

Prep work before reapplying #211530 with a fix
DeltaFile
+30-0llvm/test/Transforms/VectorCombine/X86/binop-of-shuffles.ll
+30-01 files

HardenedBSD/ports aeb8b72devel/glib20 pkg-plist, devel/py-logbook distinfo

Merge branch 'freebsd/main' into hardenedbsd/main
DeltaFile
+779-0devel/tuicr/distinfo
+388-0devel/tuicr/Makefile.crates
+27-45sysutils/bottom/distinfo
+33-39devel/py-logbook/distinfo
+45-12devel/glib20/pkg-plist
+47-0security/vuxml/vuln/2026.xml
+1,319-9661 files not shown
+1,610-32067 files

LLVM/project e732ce4clang/lib/ScalableStaticAnalysis/Analyses/UnsafeBufferUsage UnsafeBufferUsageAnalysis.cpp, clang/test/Analysis/Scalable/PointerFlow multi-dim-pointer-flow-constraint.test multi-decl-contributor.cpp

[SSAF] Close unsafe-buffer reachability over override families

An unsafe pointer reaching one override's parameter is equally unsafe in every
sibling and base override of that method, because the call site picks the
target dynamically. Without closing over the families, reachability depended
on which override the extractor happened to see the flow through, so a fix
suggested for the base could be contradicted by a derived override.

Mirroring is level-preserving: families relate slot entities, so a reachable
EPL propagates only to the same pointer level on its family members.

The closure runs after the pointer-flow DFS has converged and does not feed
its own output back in, so a flow edge out of a newly discovered EPL is still
missed. FamilyClosureDoesNotRerunDFS pins that gap.

§4 of rdar://179151603
DeltaFile
+320-7clang/unittests/ScalableStaticAnalysis/WholeProgramAnalysis/UnsafeBufferReachableAnalysisTest.cpp
+92-6clang/lib/ScalableStaticAnalysis/Analyses/UnsafeBufferUsage/UnsafeBufferUsageAnalysis.cpp
+1-1clang/test/Analysis/Scalable/PointerFlow/multi-dim-pointer-flow-constraint.test
+1-1clang/test/Analysis/Scalable/PointerFlow/multi-decl-contributor.cpp
+1-1clang/test/Analysis/Scalable/PointerFlow/lref-to-rref-cast.test
+1-1clang/test/Analysis/Scalable/PointerFlow/external-inline-function-in-multi-tu.test
+416-176 files

LLVM/project 8ad180bclang/include/clang/ScalableStaticAnalysis/Analyses/VirtualMethodFamily VirtualMethodFamily.h, clang/lib/ScalableStaticAnalysis/Analyses CMakeLists.txt

[SSAF] Serialize virtual method summaries and families

Per-TU summaries and whole-program results cross process boundaries, and the
JSON layer refuses to write a summary kind it has no format for. Register both
sides so --ssaf-extract-summaries=VirtualMethod becomes usable and the family
result survives a round trip.

Deserialization tolerates a missing override list, since a root virtual method
legitimately has none.

§3 of rdar://179151603
DeltaFile
+390-0clang/unittests/ScalableStaticAnalysis/Serialization/JSONFormatTest/VirtualMethodFamilyFormatTest.cpp
+192-0clang/lib/ScalableStaticAnalysis/Analyses/VirtualMethodFamily/VirtualMethodFamilyFormat.cpp
+22-0clang/lib/ScalableStaticAnalysis/Analyses/VirtualMethodFamily/VirtualMethodFamilyAnalysis.cpp
+5-0clang/include/clang/ScalableStaticAnalysis/Analyses/VirtualMethodFamily/VirtualMethodFamily.h
+1-0clang/unittests/ScalableStaticAnalysis/CMakeLists.txt
+1-0clang/lib/ScalableStaticAnalysis/Analyses/CMakeLists.txt
+611-01 files not shown
+612-07 files

LLVM/project 35e38fbclang/include/clang/ScalableStaticAnalysis/Analyses/VirtualMethodFamily VirtualMethodFamily.h, clang/include/clang/ScalableStaticAnalysis/Core/Model EntityId.h

[SSAF] Group virtual method slots into override families

A virtual call site can dispatch to any override, so the parameter and return
slots that occupy the same vtable slot across an override chain are
indistinguishable to a caller. Whole-program consumers therefore have to treat
them as one unit or they will reason about a slot that a call never actually
reaches.

Compute those units up front, keyed per slot, so consumers only need a map
lookup rather than their own traversal of the override relation. Overloads
occupy distinct vtable slots and stay in distinct families.

The family representative is the smallest EntityId in the class, which keeps
the result stable across runs.

§2 of rdar://179151603
DeltaFile
+336-0clang/unittests/ScalableStaticAnalysis/Analyses/VirtualMethodFamily/VirtualMethodFamilyAnalysisTest.cpp
+201-0clang/lib/ScalableStaticAnalysis/Analyses/VirtualMethodFamily/VirtualMethodFamilyAnalysis.cpp
+46-0clang/include/clang/ScalableStaticAnalysis/Analyses/VirtualMethodFamily/VirtualMethodFamily.h
+11-0clang/include/clang/ScalableStaticAnalysis/Core/Model/EntityId.h
+1-0clang/unittests/ScalableStaticAnalysis/CMakeLists.txt
+1-0clang/lib/ScalableStaticAnalysis/Analyses/CMakeLists.txt
+596-01 files not shown
+597-07 files

LLVM/project be7988cclang/include/clang/ScalableStaticAnalysis/Analyses/VirtualMethodFamily VirtualMethodFamily.h, clang/lib/ScalableStaticAnalysis/Analyses/VirtualMethodFamily VirtualMethodEntityExtractor.cpp

[SSAF] Extract the virtual method override relation per TU

A virtual call may dispatch to any override of its callee, so a whole-program
analysis cannot reason about a method's parameters and return value in
isolation. It needs to know which method overrides which, and which slots
that relates. Collect this per TU, so a later pass can join the related
slots into families.

JSON serialization lands separately, so the summary is not writable via
--ssaf-extract-summaries yet.

§1 of rdar://179151603
DeltaFile
+228-0clang/unittests/ScalableStaticAnalysis/Analyses/VirtualMethodFamily/VirtualMethodFamilyExtractorTest.cpp
+155-0clang/unittests/ScalableStaticAnalysis/Analyses/VirtualMethodFamily/VirtualMethodFamilyTestSupport.h
+145-0clang/unittests/ScalableStaticAnalysis/ParsedAST.h
+92-0clang/lib/ScalableStaticAnalysis/Analyses/VirtualMethodFamily/VirtualMethodEntityExtractor.cpp
+51-0clang/include/clang/ScalableStaticAnalysis/Analyses/VirtualMethodFamily/VirtualMethodFamily.h
+1-0clang/unittests/ScalableStaticAnalysis/CMakeLists.txt
+672-02 files not shown
+674-08 files

LLVM/project 5e98d1aclang/unittests/ScalableStaticAnalysis/Analyses/VirtualMethodFamily VirtualMethodFamilyExtractorTest.cpp

tmp - Test that three-level chain records only direct override edges

`overridden_methods()` is not transitive. This means that it describes
the directly overridden methods - which is usually a single method
(unless it overrides the same function from multiple parents).

This test case demonstrates that A::f overrides B::f which overrides C::f.
And that it's not that A::f overrides C::f without overriding B::f first.

Assisted-By: claude
DeltaFile
+36-0clang/unittests/ScalableStaticAnalysis/Analyses/VirtualMethodFamily/VirtualMethodFamilyExtractorTest.cpp
+36-01 files

OpenBSD/ports y5JRee8sysutils/salt Makefile.inc, sysutils/salt/3008 Makefile

   add build depends on devel/py-importlib-metadata and devel/py-looseversion
VersionDeltaFile
1.2+3-0sysutils/salt/3008/Makefile
1.2+1-1sysutils/salt/Makefile.inc
+4-12 files

LLVM/project a982c8fmlir/include/mlir/Interfaces CallInterfaces.td, mlir/lib/Dialect/LLVMIR/IR LLVMDialect.cpp

[mlir][Interfaces] `CallOpInterface`: Model forwarded result + improve verification
DeltaFile
+198-0mlir/test/Interfaces/CallInterfaces/verify-call-op-interface.mlir
+97-1mlir/include/mlir/Interfaces/CallInterfaces.td
+60-35mlir/lib/Dialect/LLVMIR/IR/LLVMDialect.cpp
+95-0mlir/test/lib/Dialect/Test/TestOpDefs.cpp
+86-0mlir/lib/Interfaces/CallInterfaces.cpp
+62-0mlir/test/lib/Dialect/Test/TestOps.td
+598-3617 files not shown
+788-11723 files

OpenBSD/ports UFuVVnyx11/mate/caja Makefile, x11/mate/eom Makefile

   sprinkle build dep on x11/mate/common where it is needed
VersionDeltaFile
1.34+2-0x11/mate/eom/Makefile
1.33+1-0x11/mate/marco/Makefile
1.34+1-0x11/mate/caja/Makefile
+4-03 files

OpenBSD/ports hNZWXx8graphics/py-cairo Makefile distinfo

   Update to py3-cairo-1.29.1.
VersionDeltaFile
1.42+2-2graphics/py-cairo/distinfo
1.81+1-1graphics/py-cairo/Makefile
+3-32 files

OPNSense/core 99aa4bfsrc/opnsense/scripts/kea kea_prefix_watcher.py

Services: Kea DHCPv6: improve kea_prefix_watcher.py accuracy via both interface and mac address key(#10685)

Resolve the lease subnet-id to its configured interface and key Hostwatch or
NDP lookups by interface and MAC.

Hostwatch or NDP may report the same MAC on multiple interfaces, for example
on a bridge and its member. Previously the last matching MAC entry could
select the wrong interface and cause route installation to fail.

The link-local address and scope still come from Hostwatch or NDP. Multiple
LLAs for the same interface/MAC remain last-match-wins, as any observed LLA for
an interface/MAC key should be an eligible next hop target.
DeltaFile
+19-8src/opnsense/scripts/kea/kea_prefix_watcher.py
+19-81 files

OpenBSD/ports wdjgGwxsysutils/p5-Sys-Virt Makefile distinfo

   Update to p5-Sys-Virt-12.6.0.
VersionDeltaFile
1.70+2-2sysutils/p5-Sys-Virt/distinfo
1.84+1-1sysutils/p5-Sys-Virt/Makefile
+3-32 files

OpenBSD/ports eij7kRJgraphics/openexr Makefile distinfo

   Security update to OpenEXR-3.4.14.
VersionDeltaFile
1.52+2-2graphics/openexr/distinfo
1.91+1-1graphics/openexr/Makefile
+3-32 files

LLVM/project b2f1380lldb/test/API/python_api/value TestValueAPI.py Makefile, lldb/test/API/python_api/value/change_values TestChangeValueAPI.py main.c

[lldb][Windows] Fix value API tests (#214237)

This removes the XFAILs for the value API tests.

- For `lldb/test/API/python_api/value/TestValueAPI.py`, we need to pass
`/debug:symtab` to the linker to get a symbol table. Symbols are
"hidden" by default. PDB works around this in the publics stream. For
DWARF, we need `/debug:symtab`. An alternative is to use `/debug:dwarf`
which also enables this.
- For
`lldb/test/API/python_api/value/change_values/TestChangeValueAPI.py`
there were two issues. First, the stdout wasn't available when we
stopped at a breakpoint. Adding a `fflush(stdout)` fixes this.
Secondly, the breakpoint was created where the inputs to `printf` were
already evaluated. I added another assignment where we set the
breakpoint.

The added `fflush` might also help with this being flakey on Linux
(#26026).

Closes #25146
DeltaFile
+5-0lldb/test/API/python_api/value/Makefile
+3-0lldb/test/API/python_api/value/change_values/main.c
+0-1lldb/test/API/python_api/value/change_values/TestChangeValueAPI.py
+0-1lldb/test/API/python_api/value/TestValueAPI.py
+8-24 files

LLVM/project 21b86ecllvm/lib/Target/AArch64 AArch64ISelDAGToDAG.cpp, llvm/test/CodeGen/AArch64 neon-shift-left-long.ll

[LLVM][CodeGen][AArch64] Increase opportunities to fold shift-of-extend into sshll/ushll. (#213989)

Add PreprocessISelDAG logic to undo mul-of-shl to shl-of-mul
canonicalisation when either operand is sign/zero extended because the
extension can be folded into the shift.
DeltaFile
+123-0llvm/test/CodeGen/AArch64/neon-shift-left-long.ll
+20-0llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
+143-02 files

FreeNAS/freenas 5c00478src/middlewared/middlewared/common/license_reconcile __init__.py, src/middlewared/middlewared/plugins failover.py

Reconcile license derived config when the license changes

This commit adds changes to converge every subsystem whose configuration is derived from the license once that license changes. `truenas.license.upload` regenerated exactly one etc group and then fired `system.post_license_update` detached. That was survivable while gates asked `is_enterprise`, which expanded to `is_ha_capable OR (licence AND model AND not freenas)` -- on appliance hardware the first limb was already true before any license was installed, so those gates did not change their answer when one arrived and never re-rendering them cost nothing. Now that they are feature key checks they do change their answer, and ten etc groups were left silently stale until something unrelated regenerated them or the box rebooted. The plainest case is sudoers, where sudo command auditing simply did not turn on when an appliance was licensed.

Each affected subsystem now registers a LicenseReconcileDelegate from its own setup, naming the etc groups it owns and what should happen once they have been re-rendered, and a runner walks them on the hook. Doing this per plugin rather than centrally in etc matters because the right action genuinely differs between them: the block target delegates render without touching a live target and skip entirely when their service is stopped, keepalived reloads rather than restarts because its restart advertises priority 0 and forces a MASTER to BACKUP transition, and ctdb keeps the restart it has always had. Registration refuses a duplicate name or a group another delegate already claims, so two plugins cannot quietly both own one.

The upload now blocks on the hook rather than firing it detached, so it returns only once config has converged. The runner declines to do anything at all when the license reads as absent, because an unreachable license daemon is indistinguishable from an unlicensed system and re-rendering ten groups toward unlicensed over a transient socket failure would be far worse than leaving them alone -- one of them deletes its config file outright, and that file decides whether ctdb starts. failover.status is dropped from its cache ahead of the pass since half the groups read it while rendering, and truesearch moves off the blocking path because it waits on a service job.

A guard test maps direct license reads in etc_files and utils back to the group that owns them and fails when no delegate claims it. It can only see direct reads, so it is paired with an inventory carrying a written reason per group for the ones that reach the license indirectly through a ctx method.
DeltaFile
+397-0src/middlewared/middlewared/pytest/unit/plugins/truenas/test_license_reconcile.py
+374-0src/middlewared/middlewared/pytest/unit/plugins/truenas/test_license_reconcile_coverage.py
+149-0src/middlewared/middlewared/plugins/truenas/license_reconcile.py
+94-4src/middlewared/middlewared/plugins/failover.py
+79-0src/middlewared/middlewared/common/license_reconcile/__init__.py
+74-0src/middlewared/middlewared/plugins/iscsi_/iscsi_global.py
+1,167-412 files not shown
+1,464-1018 files

LLVM/project c45e6b9clang/lib/CIR/CodeGen CIRGenCall.cpp, clang/test/CIR/CodeGenCUDA kernel-call.cu uniform-work-group-size.cu

[CIR] Implement "uniform_work_group_size" func attribute.
DeltaFile
+84-0clang/test/CIR/CodeGenCUDA/uniform-work-group-size.cu
+27-0mlir/test/Target/LLVMIR/llvmir.mlir
+8-8clang/test/CIR/CodeGenCUDA/kernel-call.cu
+12-0mlir/test/Target/LLVMIR/Import/instructions.ll
+9-2clang/lib/CIR/CodeGen/CIRGenCall.cpp
+6-0mlir/test/Target/LLVMIR/Import/function-attributes.ll
+146-108 files not shown
+172-1014 files

LLVM/project 1533fd9clang-tools-extra/clang-tidy/readability MakeMemberFunctionConstCheck.cpp RedundantStringInitCheck.cpp, clang-tools-extra/clang-tidy/utils IncludeSorter.cpp ASTUtils.cpp

[clang-tidy][NFC] Apply readability-redundant-nested-if 3/N (#214693)
DeltaFile
+51-56clang-tools-extra/clang-tidy/readability/SimplifyBooleanExprCheck.cpp
+16-21clang-tools-extra/clang-tidy/utils/ExceptionAnalyzer.cpp
+11-11clang-tools-extra/clang-tidy/readability/RedundantStringInitCheck.cpp
+10-11clang-tools-extra/clang-tidy/utils/ASTUtils.cpp
+9-11clang-tools-extra/clang-tidy/utils/IncludeSorter.cpp
+6-7clang-tools-extra/clang-tidy/readability/MakeMemberFunctionConstCheck.cpp
+103-11713 files not shown
+160-18019 files

LLVM/project b23965bclang-tools-extra/clang-tidy/google GlobalNamesInHeadersCheck.cpp, clang-tools-extra/clang-tidy/misc ConstCorrectnessCheck.cpp

[clang-tidy][NFC] Apply readability-redundant-nested-if 2/N (#213959)
DeltaFile
+38-38clang-tools-extra/clang-tidy/modernize/LoopConvertUtils.cpp
+18-17clang-tools-extra/clang-tidy/modernize/LoopConvertCheck.cpp
+13-15clang-tools-extra/clang-tidy/google/GlobalNamesInHeadersCheck.cpp
+11-11clang-tools-extra/clang-tidy/modernize/MakeSmartPtrCheck.cpp
+10-11clang-tools-extra/clang-tidy/misc/ConstCorrectnessCheck.cpp
+9-10clang-tools-extra/clang-tidy/modernize/AvoidCStyleCastCheck.cpp
+99-10214 files not shown
+171-18220 files

LLVM/project 14f8ac9clang-tools-extra/clang-tidy/bugprone SuspiciousMemoryComparisonCheck.cpp SizeofExpressionCheck.cpp

[clang-tidy][NFC] Apply readability-redundant-nested-if 1/N (#213939)
DeltaFile
+27-30clang-tools-extra/clang-tidy/bugprone/NotNullTerminatedResultCheck.cpp
+16-17clang-tools-extra/clang-tidy/bugprone/ArgumentCommentCheck.cpp
+15-16clang-tools-extra/clang-tidy/bugprone/VirtualNearMissCheck.cpp
+10-11clang-tools-extra/clang-tidy/bugprone/EasilySwappableParametersCheck.cpp
+8-9clang-tools-extra/clang-tidy/bugprone/SizeofExpressionCheck.cpp
+7-8clang-tools-extra/clang-tidy/bugprone/SuspiciousMemoryComparisonCheck.cpp
+83-9114 files not shown
+138-15020 files

NetBSD/pkgsrc 9VeFPGndoc CHANGES-2026

   doc: Updated geography/qgis to 3.44.13
VersionDeltaFile
1.5058+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc 8EPq5fwgeography/qgis Makefile distinfo

   geography/qgis: Update to 3.44.13

   Upstream NEWS: micro release
VersionDeltaFile
1.94+4-4geography/qgis/distinfo
1.279+2-3geography/qgis/Makefile
+6-72 files

FreeBSD/ports f6a04b1net/samba422 Makefile distinfo

net/samba422: Update to 4.22.11

Fix several CVE and bugfixes.
Changelog
- https://wiki.samba.org/index.php/Samba_4.22_Features_added/changed

PR:     297274
Reported by:    ml at netfence.it
Approved by:    samba (kiwi)
DeltaFile
+3-3net/samba422/distinfo
+1-2net/samba422/Makefile
+4-52 files

HardenedBSD/ports f6a04b1net/samba422 Makefile distinfo

net/samba422: Update to 4.22.11

Fix several CVE and bugfixes.
Changelog
- https://wiki.samba.org/index.php/Samba_4.22_Features_added/changed

PR:     297274
Reported by:    ml at netfence.it
Approved by:    samba (kiwi)
DeltaFile
+3-3net/samba422/distinfo
+1-2net/samba422/Makefile
+4-52 files

LLVM/project bc495dallvm/lib/CodeGen/SelectionDAG SelectionDAG.cpp, llvm/test/CodeGen/RISCV/rvv partial-reduction-add.ll

[SelectionDAG] Fold constant PARTIAL_REDUCE_SMLA/UMLA/SUMLA nodes (#210351)

This PR implements constant folding for `ISD::PARTIAL_REDUCE_SMLA`,
`ISD::PARTIAL_REDUCE_UMLA`, and `ISD::PARTIAL_REDUCE_SUMLA` when their
operands are constant `BUILD_VECTOR`s. The fold computes the partial
reduction using `APInt` arithmetic and returns a folded `BUILD_VECTOR`.

Input constants are truncated to their logical element width before
being sign- or zero-extended as required by each opcode. Input lane `I`
is accumulated into result lane `I % NumAccElts`, matching
`TargetLowering::expandPartialReduceMLA`. The reduction order is
deliberately unspecified, so this mapping is a valid refinement.

Poison is propagated only to the affected result lanes. Folding is
skipped for undef and opaque constants. Unsupported operand forms return
early because partial-reduce nodes have no scalar form and must not fall
through to generic per-element folding. After type legalization, when
the accumulator element type is not a legal scalar type, the folded
constants are created in the promoted legal type (matching the generic

    [13 lines not shown]
DeltaFile
+120-1llvm/unittests/CodeGen/SelectionDAGNodeConstructionTest.cpp
+82-0llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+73-0llvm/test/CodeGen/RISCV/rvv/partial-reduction-add.ll
+275-13 files

LLVM/project b6746a3clang-tools-extra/docs/clang-tidy/checks/fuchsia virtual-inheritance.md trailing-return.rst

[clang-tidy][docs] Normalize fuchsia check documentation links (#214697)

Use stable fuchsia.dev URLs without `?hl=en` and add the missing
reference on `fuchsia-temporary-objects`.

Fixes #62334
DeltaFile
+1-1clang-tools-extra/docs/clang-tidy/checks/fuchsia/virtual-inheritance.md
+1-1clang-tools-extra/docs/clang-tidy/checks/fuchsia/trailing-return.rst
+1-1clang-tools-extra/docs/clang-tidy/checks/fuchsia/statically-constructed-objects.rst
+1-1clang-tools-extra/docs/clang-tidy/checks/fuchsia/overloaded-operator.md
+1-1clang-tools-extra/docs/clang-tidy/checks/fuchsia/multiple-inheritance.md
+2-0clang-tools-extra/docs/clang-tidy/checks/fuchsia/temporary-objects.rst
+7-52 files not shown
+9-78 files

OPNSense/core a8debefsrc/opnsense/scripts/kea kea_prefix_watcher.py

Improve the syslog warning a bit
DeltaFile
+1-1src/opnsense/scripts/kea/kea_prefix_watcher.py
+1-11 files

OPNSense/core 5fe16adsrc/opnsense/mvc/app/controllers/OPNsense/Interfaces/Api OverviewController.php, src/opnsense/mvc/app/views/OPNsense/Interface overview.volt

Interfaces: Overview: Add separate link types for IPv4 and IPv6 (#10676)
DeltaFile
+6-8src/opnsense/mvc/app/controllers/OPNsense/Interfaces/Api/OverviewController.php
+4-3src/opnsense/mvc/app/views/OPNsense/Interface/overview.volt
+10-112 files