FreeBSD/ports 0ee513csysutils/mdfried distinfo Makefile

sysutils/mdfried: Update to 0.19.0

Reported by:    Benjamin Grosse <notifications at github.com>
DeltaFile
+3-3sysutils/mdfried/distinfo
+1-1sysutils/mdfried/Makefile
+4-42 files

LLVM/project 93c349bllvm/lib/CodeGen/SelectionDAG SelectionDAG.cpp, llvm/test/CodeGen/RISCV known-fpclass.ll

[DAG] computeKnownFPClass - Add handling for AssertNoFPClass (#190185)

Resolves #189478

Adds code to handle AssertNoFPClass in computeKnownFPClass and adds IR
test coverage for RISC-V.
DeltaFile
+72-0llvm/test/CodeGen/RISCV/known-fpclass.ll
+8-0llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+80-02 files

LLVM/project 87dda6aclang/docs ReleaseNotes.rst, clang/lib/Sema SemaTemplateInstantiateDecl.cpp

[Clang] Do not create a NoSFINAETrap for variable specialization. (#191000)

There is no thing in the standard that says this should happen outside
of the immediate context.

Fixes #54439
DeltaFile
+26-0clang/test/SemaCXX/cxx1y-variable-templates_top_level.cpp
+0-1clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
+1-0clang/docs/ReleaseNotes.rst
+27-13 files

LLVM/project ebc5607llvm/docs AMDGPUUsage.rst, llvm/lib/Target/AMDGPU SIMemoryLegalizer.cpp AMDGPULowerIntrinsics.cpp

[AMDGPU] Use wavefront scope for single-wave workgroup synchronization (#187673)

Workgroup-scoped fences and non-relaxed workgroup atomics were
previously legalized with synchronization strong enough for multi-wave
workgroups.
When the kernel's maximum flat work-group size does not exceed the
wavefront size, the workgroup contains only a single wavefront, so
workgroup-scoped synchronization is equivalent to wavefront scope and
the stronger legalization is unnecessary.
SIMemoryLegalizer now demotes workgroup scope to wavefront scope
in this case for workgroup-scoped fences and for non-relaxed atomic
load, store, atomicrmw, and cmpxchg operations.
This allows subsequent legalization to operate at wavefront scope.
The decision is based on AMDGPUSubtarget::isSingleWavefrontWorkgroup.

---------

Co-authored-by: Barbara Mitic <Barbara.Mitic at amd.com>
DeltaFile
+2,759-0llvm/test/CodeGen/AMDGPU/memory-legalizer-single-wave-workgroup-memops.ll
+176-496llvm/test/CodeGen/AMDGPU/global-saddr-atomics.ll
+80-104llvm/test/CodeGen/AMDGPU/flat-saddr-atomics.ll
+28-7llvm/lib/Target/AMDGPU/SIMemoryLegalizer.cpp
+12-0llvm/docs/AMDGPUUsage.rst
+2-4llvm/lib/Target/AMDGPU/AMDGPULowerIntrinsics.cpp
+3,057-6112 files not shown
+3,065-6118 files

FreeBSD/ports 79be224Mk/Uses vala.mk, lang/vala distinfo

lang/vala: update to 0.56.19

PR:             294205
DeltaFile
+3-3lang/vala/distinfo
+1-1Mk/Uses/vala.mk
+4-42 files

FreeNAS/freenas 05fd596tests/api2 test_300_nfs.py test_200_ftp.py

rm bulk tests
DeltaFile
+0-2,090tests/api2/test_300_nfs.py
+0-1,411tests/api2/test_200_ftp.py
+0-701tests/api2/test_011_user.py
+0-565tests/api2/test_audit_websocket.py
+0-495tests/api2/test_440_snmp.py
+0-488tests/api2/test_420_smb.py
+0-5,750252 files not shown
+0-30,956258 files

FreeBSD/ports 7347c88sysutils/rustic distinfo Makefile.crates

sysutils/rustic: Update to 0.11.2

ChangeLog:      https://github.com/rustic-rs/rustic/releases/tag/v0.11.2
Reported by:    "github-actions[bot]" <notifications at github.com>
DeltaFile
+221-291sysutils/rustic/distinfo
+109-144sysutils/rustic/Makefile.crates
+2-2sysutils/rustic/Makefile
+332-4373 files

LLVM/project 9cf8152llvm/include/llvm/Transforms/Vectorize SLPVectorizer.h, llvm/lib/Transforms/Vectorize SLPVectorizer.cpp

Revert "[SLP][AMDGPU] Vectorize operands of non-trivially-vectorizable intrinsic calls" (#191153)

Reverts llvm/llvm-project#189784
DeltaFile
+169-133llvm/test/Transforms/SLPVectorizer/AMDGPU/notriviallyvectorizableintrinsicoperands.ll
+6-137llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
+4-3llvm/test/Transforms/SLPVectorizer/RISCV/revec.ll
+0-5llvm/include/llvm/Transforms/Vectorize/SLPVectorizer.h
+179-2784 files

FreeBSD/src c1c97f1stand/i386/gptzfsboot zfsboot.c

gptzfsboot: boot prompt should emit new line on input

In case the user did input, we should put newline
on screen to avoid possible error messages to get
mixed with user input.
DeltaFile
+4-2stand/i386/gptzfsboot/zfsboot.c
+4-21 files

LLVM/project 629bd87llvm/lib/Frontend/OpenMP OMPIRBuilder.cpp, llvm/unittests/Frontend OpenMPIRBuilderTest.cpp

[OMPIRBuilder] Move debug records to correct blocks. (#157125)

Consider the following small OpenMP target region:

```
!$omp target map(tofrom: x)
  x = x + 1
!$omp end target

```
Currently, when compiled with `flang`, it will generate an outlined
function like below (with irrelevant bits removed).

```
void @__omp_offloading_10303_14e8afc__QQmain_l13(ptr %0, ptr %1) { entry:
  %2 = alloca ptr, align 8, addrspace(5)
  %3 = addrspacecast ptr addrspace(5) %2 to ptr
...
  br i1 %exec_user_code, label %user_code.entry, label %worker.exit

    [36 lines not shown]
DeltaFile
+151-0llvm/unittests/Frontend/OpenMPIRBuilderTest.cpp
+47-0mlir/test/Target/LLVMIR/omptarget-debug-record-pos.mlir
+28-1llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
+5-5mlir/test/Target/LLVMIR/omptarget-debug-var-1.mlir
+231-64 files

FreeBSD/ports 27f5eadx11/swayimg Makefile distinfo

x11/swayimg: update to 5.2

Changes:        https://github.com/artemsen/swayimg/releases/tag/v5.0
Changes:        https://github.com/artemsen/swayimg/releases/tag/v5.1
Changes:        https://github.com/artemsen/swayimg/releases/tag/v5.2
Reported by:    GitHub (watch releases)
DeltaFile
+16-17x11/swayimg/Makefile
+3-3x11/swayimg/distinfo
+19-202 files

LLVM/project 8506466clang/lib/StaticAnalyzer/Checkers CStringChecker.cpp, clang/test/Analysis bstring.c bstring.cpp

[analyzer] Fix crash in CStringChecker on zero-size element types (#191061)

Move the null check of Offset before its dereference in checkInit. When
the element type has zero size (e.g., an empty struct in C), the
division returns an empty optional, which was dereferenced
unconditionally.

Fixes #190457
DeltaFile
+14-0clang/test/Analysis/bstring.c
+9-0clang/test/Analysis/bstring.cpp
+3-3clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp
+26-33 files

OpenBSD/ports kQVemTGmultimedia/aom distinfo Makefile

   multimedia/aom: update to 3.13.3, from brad (MAINTAINER)

   see https://aomedia.googlesource.com/aom/+log/v3.13.2..v3.13.3
   in the end doesnt fix my build issue with firefox, but i've found
   another workaround...
VersionDeltaFile
1.28+2-2multimedia/aom/distinfo
1.34+1-1multimedia/aom/Makefile
+3-32 files

FreeNAS/freenas b2ecd6btests/api2 test_300_nfs.py test_200_ftp.py

rm bulk tests
DeltaFile
+0-2,090tests/api2/test_300_nfs.py
+0-1,411tests/api2/test_200_ftp.py
+0-701tests/api2/test_011_user.py
+0-565tests/api2/test_audit_websocket.py
+0-495tests/api2/test_440_snmp.py
+0-488tests/api2/test_420_smb.py
+0-5,750257 files not shown
+0-31,385263 files

LLVM/project b78da18clang/test/Analysis/Scalable extraction-works-alongside-compilation.cpp

[clang][ssaf][test] Fix the extraction-works-alongside-compilation.cpp test (#191162)

I forgot that we need this `REQUIRES: asserts` for the test.

Fixes build bots not setting `LLVM_ENABLE_ASSERTIONS=ON`.
For example:
https://lab.llvm.org/buildbot/#/builders/11/builds/37623

This fixes up #191058
DeltaFile
+1-0clang/test/Analysis/Scalable/extraction-works-alongside-compilation.cpp
+1-01 files

LLVM/project 9456cedllvm/lib/Transforms/Vectorize VPlanTransforms.cpp

[LV] NFCI: Create VPExpressions in transformToPartialReductions.

With this change, all logic to generate partial reductions and
recognising them as VPExpressions is contained in
`transformToPartialReductions`, without the need for a second
transform pass.
The PR intends to be a non-functional change.
DeltaFile
+57-18llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+57-181 files

FreeNAS/freenas 0282f29src/middlewared/middlewared/plugins service.py, src/middlewared/middlewared/plugins/service_/services base.py base_interface.py

fix systemd service failure log tests
DeltaFile
+10-7src/middlewared/middlewared/plugins/service_/services/base.py
+10-0src/middlewared/middlewared/plugins/service_/services/base_interface.py
+4-4src/middlewared/middlewared/plugins/service.py
+24-113 files

LLVM/project 18d5b9ellvm/lib/Transforms/Vectorize VPlanTransforms.cpp

[LV] Simplify costing partial reduction chain links (NFCI) (#190980)

Previously, `getPartialReductionLinkCost()` needed to figure out what
case `matchExtendedReductionOperand()` matched to compute a cost. This
made adding new cases to `matchExtendedReductionOperand()` more complex
and added some redundancy.

This patch updates `ExtendedReductionOperand` so that it contains all
the information needed to compute the cost ready to pass to
`getPartialReductionCost()`. This means matching new operand forms only
needs to be done in `matchExtendedReductionOperand()`.

This is split off from #188043 (this change simplifies matching absolute
difference operands).
DeltaFile
+60-67llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+60-671 files

LLVM/project 3529ce0mlir/include/mlir/Dialect/Vector/Utils VectorUtils.h, mlir/lib/Dialect/Linalg/Transforms Vectorization.cpp

[mlir][Vector] Make createWriteOrMaskedWrite utility (#190967)

Analog to https://github.com/llvm/llvm-project/pull/89119, make
`createWriteOrMaskedWrite` a vector utility, exposing it for re-use by
downstream users.

This PR is mostly just moving code and updating documentation but also
addresses a `TODO` for `isMaskTriviallyFoldable` to use that utility in
`createReadOrMaskedRead` as well.

No new tests were added, because the functionality is covered by existing tests.

---------

Signed-off-by: Lukas Sommer <lukas.sommer at amd.com>
DeltaFile
+7-211mlir/lib/Dialect/Linalg/Transforms/Vectorization.cpp
+194-9mlir/lib/Dialect/Vector/Utils/VectorUtils.cpp
+13-0mlir/include/mlir/Dialect/Vector/Utils/VectorUtils.h
+214-2203 files

LLVM/project 01c5908llvm/lib/Transforms/Vectorize LoopVectorize.cpp VPlanUnroll.cpp, llvm/test/Transforms/LoopVectorize epilog-vectorization-reductions.ll

[VPlan] Handle AnyOf Or reduction via ComputeReductionResult. (#191049)

Instead of having ComputeAnyOfResult handle the Or reduction of unrolled
parts inline, route it through ComputeReductionResult with
RecurKind::Or. ComputeAnyOfResult now takes a pre-reduced scalar and
only performs the freeze + select.

This is a preparatory step towards removing ComputeAnyOfResult entirely
in https://github.com/llvm/llvm-project/pull/190039.

PR: https://github.com/llvm/llvm-project/pull/191049
DeltaFile
+23-10llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+7-3llvm/lib/Transforms/Vectorize/VPlanUnroll.cpp
+1-8llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
+5-1llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+2-2llvm/test/Transforms/LoopVectorize/epilog-vectorization-reductions.ll
+38-245 files

LLVM/project e765ea9mlir/include/mlir/Dialect/LLVMIR LLVMAttrDefs.td, mlir/lib/CAPI/Dialect LLVM.cpp

[mlir][debug] Make DICompileUnitAttr recursive. (#190808)

This PR add `DIRecursiveTypeAttrInterface` to `DICompileUnitAttr`. It
should fix the circular dependency problem we have since
`importedEntities` field was added.
DeltaFile
+27-9mlir/include/mlir/Dialect/LLVMIR/LLVMAttrDefs.td
+35-0mlir/lib/Target/LLVMIR/DebugTranslation.cpp
+32-0mlir/test/Target/LLVMIR/llvmir-debug.mlir
+30-1mlir/test/Target/LLVMIR/Import/debug-info.ll
+22-0mlir/lib/Dialect/LLVMIR/IR/LLVMAttrs.cpp
+12-6mlir/lib/CAPI/Dialect/LLVM.cpp
+158-168 files not shown
+189-3114 files

LLVM/project c73872aclang/docs InternalsManual.rst ReleaseNotes.rst, clang/include/clang/Sema Sema.h

[Clang] Improve concept performance 1/N (#188421)

The concept parameter mapping patch significantly impacted performance
in scenarios where concepts are heavily used, even with
atomic-expression-level caching.

After normalization, we often end up with large atomic expressions
containing numerous duplicate and complex template parameter mappings.
Previously, we were substituting and checking these repeatedly, which
was highly inefficient.

We now cache these substitution results within TemplateInstantiator.
This saves us a lot of duplicate semantic checking and provides us some
performance improvement, as in these regression cases:

usb_ids_gen.cpp:
clang-21: 1.41s
clang-22: 3.90s
This patch: 2.45s

    [12 lines not shown]
DeltaFile
+37-4clang/lib/Sema/SemaTemplateInstantiate.cpp
+12-0clang/lib/Sema/SemaConcept.cpp
+7-0clang/include/clang/Sema/Sema.h
+2-1clang/docs/InternalsManual.rst
+1-0clang/docs/ReleaseNotes.rst
+59-55 files

LLVM/project cc419f1clang/test/CodeGen 2004-02-13-Memset.c

[clang][test] Modernize 2004-02-13-Memset.c to use FileCheck (#191092)

Replace `grep | count` verification with `FileCheck` and update `CHECK`
directives with current codegen output.
DeltaFile
+3-3clang/test/CodeGen/2004-02-13-Memset.c
+3-31 files

LLVM/project ba91dd1llvm/test/Transforms/LoopVectorize intrinsic.ll lifetime.ll, llvm/test/Transforms/LoopVectorize/AArch64 veclib-intrinsic-calls.ll

[LV][NFC] Remove unneeded LLVM intrinsic declarations (#190993)

We no longer need to declare LLVM intrinsics in .ll files as the
intrinsics are populated automatically in the module. Remove the
declarations from tests to reduce test noise and size.

This came from a suggestion on PR #190786.
DeltaFile
+0-67llvm/test/Transforms/LoopVectorize/intrinsic.ll
+0-64llvm/test/Transforms/LoopVectorize/AArch64/veclib-intrinsic-calls.ll
+0-34llvm/test/Transforms/LoopVectorize/X86/amdlibm-calls.ll
+8-10llvm/test/Transforms/LoopVectorize/lifetime.ll
+0-16llvm/test/Transforms/LoopVectorize/X86/svml-calls.ll
+0-16llvm/test/Transforms/LoopVectorize/PowerPC/massv-calls.ll
+8-207104 files not shown
+15-439110 files

OpenBSD/ports 2Hwes4Qnet/radcli Makefile distinfo, net/radcli/patches patch-lib_util_h

   update to radcli-1.5.0
VersionDeltaFile
1.20+2-2net/radcli/Makefile
1.12+2-2net/radcli/distinfo
1.6+1-1net/radcli/patches/patch-lib_util_h
+5-53 files

LLVM/project 9f47bcdllvm/lib/CodeGen/SelectionDAG LegalizeVectorTypes.cpp LegalizeTypes.h, llvm/test/CodeGen/AArch64 vselect-widen-mask-tree.ll arm64-zip.ll

Revert "[SelectionDAG] Recurse through mask expression trees in WidenVSELECTMask (#188085)" (#191151)

This reverts commit 815edc3ff646392bfee2b381d37dd35e4b04f9c5.
DeltaFile
+0-203llvm/test/CodeGen/AArch64/vselect-widen-mask-tree.ll
+51-130llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
+34-31llvm/test/CodeGen/X86/bitcast-int-to-vector-bool-sext.ll
+18-9llvm/test/CodeGen/AArch64/arm64-zip.ll
+0-14llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h
+103-3875 files

FreeBSD/ports b313943security/wolfssl Makefile, security/wolfssl/files patch-configure.ac patch-cmake_config.in

security/wolfssl: Fix 32-bit builds.

Add upstream patch for the fix, until changes are merged and
a new release is made.

PR:             294287
Reported by:    Robert Clausecker <fuz at FreeBSD.org>
Reviewed by:    Robert Clausecker <fuz at FreeBSD.org>
Tested by:      Robert Clausecker <fuz at FreeBSD.org>

(cherry picked from commit 8318a3cd1c5262d51c70240d97798cce3c1a3bd6)
DeltaFile
+16-0security/wolfssl/files/patch-configure.ac
+15-0security/wolfssl/files/patch-cmake_config.in
+15-0security/wolfssl/files/patch-cmake_options.h.in
+2-1security/wolfssl/Makefile
+48-14 files

LLVM/project 222a643clang/lib/ScalableStaticAnalysisFramework/Frontend TUSummaryExtractorFrontendAction.cpp, clang/test/Analysis/Scalable extraction-works-alongside-compilation.cpp

[clang][ssaf] Preserve AST after codegen for SSAF extractors (#191058)

This is a use-after-free.
Codegen would drop the AST before starting the optimizations on the LLVM
IR level. This means that the ASTConsumers of the SSAF extractors only
had dangling TU Decls etc.

For now, let's override this option to force-keep the AST alive. Note
that PluginActions already did the same if their consumers were added
after the main frontend-action.
See:

https://github.com/llvm/llvm-project/blob/69e0367e8221b8002b5d438fb70ff3daf36257fc/clang/lib/Frontend/FrontendAction.cpp#L470
```c++
CI.getCodeGenOpts().ClearASTBeforeBackend = false;
```

Long term, we could think about the stability implications of running
the extractors before codegen to be able to drop the AST, thus save

    [13 lines not shown]
DeltaFile
+16-0clang/test/Analysis/Scalable/extraction-works-alongside-compilation.cpp
+1-0clang/lib/ScalableStaticAnalysisFramework/Frontend/TUSummaryExtractorFrontendAction.cpp
+17-02 files

OpenBSD/ports oROkYJXeditors/vim-classic Makefile distinfo, editors/vim-classic/patches patch-src_configure_ac

   update vim-classic to newer git commit
VersionDeltaFile
1.10+2-2editors/vim-classic/Makefile
1.5+2-2editors/vim-classic/distinfo
1.4+1-1editors/vim-classic/patches/patch-src_configure_ac
1.4+1-0editors/vim-classic/pkg/PLIST
+6-54 files

FreeBSD/ports bf8e91asecurity/vuxml/vuln 2026.xml

security/vuxml: Add Mozilla vulnerabilities

 * CVE-2026-5732:       NVD assessment not yet provided
 * CVE-2026-5733:       NVD assessment not yet provided
 * CVE-2026-5734:       Base Score:  9.8 CRITICAL
                        Vector:  CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
 * CVE-2026-5734:       Base Score:  9.8 CRITICAL
                        Vector:  CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
DeltaFile
+150-0security/vuxml/vuln/2026.xml
+150-01 files