FreeBSD/ports 7d6784bdevel/sem distinfo Makefile

devel/sem: Update to 0.13.0
DeltaFile
+3-3devel/sem/distinfo
+1-1devel/sem/Makefile
+4-42 files

FreeBSD/ports ecaf777textproc/miller distinfo Makefile

textproc/miller: Update to 6.19.0
DeltaFile
+5-5textproc/miller/distinfo
+1-2textproc/miller/Makefile
+6-72 files

LLVM/project 39f5357flang/lib/Semantics resolve-names.cpp, flang/test/Lower/CUDA cuda-gpu-managed.cuf

[flang][cuda] Apply implicit managed attribute to pointer variables under -gpu=mem:managed (#204634)

When -gpu=mem:managed is active with CUDA Fortran enabled, only
allocatable variables were implicitly given the managed CUDA data
attribute. Pointer variables were left without it, causing their
allocations to use host memory instead of cudaMallocManaged.

This patch extends the implicit managed attribute in
FinishSpecificationPart to also cover pointer symbols. A
LanguageFeature::CUDA guard is added so the attribute is only applied
when CUDA Fortran semantics are active. The implicit pinned attribute
(-gpu=mem:pinned) remains allocatable-only.
DeltaFile
+8-6flang/lib/Semantics/resolve-names.cpp
+6-7flang/test/Lower/CUDA/cuda-gpu-managed.cuf
+14-132 files

FreeBSD/src 45a0cb5libexec/rtld-elf rtld.c

rtld: Check for -1 as an-end-of-section marker

rtld calls functions in the .init_array section one at a time, until
it finds a distinguished sentinel value. The C runtime does the same
thing (in crtend.c). However, that checks for the sentinel -1 and not
1. If one is using a linker that unifies .ctors and .init_array, then
rtld will miss the sentinel value. I believe the author of this code
intended to write -1 instead of 1. Indeed, changing the code to also
check for -1 prevents rtld from attempting to call a non-existent
function. The same is true of .dtors and .fini_array.

Signed-off-by:  Daniel Levin <daniellevin2607 at gmail.com>
Reviewed by:    kib
MFC after:      3 days
Pull Request:   https://github.com/freebsd/freebsd-src/pull/2270
DeltaFile
+4-2libexec/rtld-elf/rtld.c
+4-21 files

FreeBSD/ports 461e8c9www/nextcloud-deck distinfo Makefile

www/nextcloud-deck: Update to 1.17.4
DeltaFile
+3-3www/nextcloud-deck/distinfo
+1-1www/nextcloud-deck/Makefile
+4-42 files

LLVM/project 49a0e10llvm/lib/IR Verifier.cpp VerifierAMDGPU.cpp, llvm/test/Verifier callbr-intrinsic.ll

[RFC][NFCI][IR] Extract AMDGPU-specific verification logic into `VerifierAMDGPU.cpp` (#204284)

`Verifier.cpp` is large and already mixes generic IR verification with
target-specific checks. We also have a growing amount of AMDGPU verifier
logic downstream, which would all end up in the same file if we don't
address this, and that is not ideal.

This patch extracts AMDGPU-specific verification logic into a separate
`VerifierAMDGPU.cpp` file, with shared infrastructure
(`VerifierSupport`) moved into `VerifierInternal.h`.

This is purely a code organization change, not a target-dependent IR
verifier. All checks remain compiled and linked into `LLVMCore`
regardless of the target triple. The extracted functions are called
unconditionally at well-defined extension points in `Verifier.cpp`, and
each function internally gates on target-specific conditions (for
example, triple checks or intrinsic IDs) as needed. The file is strictly
limited to AMDGPU-specific IR constructs (amdgcn intrinsics, AMDGPU
module flags, etc.), and does not contain generic IR rules that vary by

    [11 lines not shown]
DeltaFile
+23-530llvm/lib/IR/Verifier.cpp
+406-0llvm/lib/IR/VerifierAMDGPU.cpp
+233-0llvm/lib/IR/VerifierInternal.h
+6-6llvm/test/Verifier/callbr-intrinsic.ll
+1-0llvm/utils/gn/secondary/llvm/lib/IR/BUILD.gn
+1-0llvm/lib/IR/CMakeLists.txt
+670-5366 files

LLVM/project db9f310llvm/lib/Target/SPIRV SPIRVNonSemanticDebugHandler.cpp

[reviews] Simplify repeated pattern.
DeltaFile
+20-16llvm/lib/Target/SPIRV/SPIRVNonSemanticDebugHandler.cpp
+20-161 files

LLVM/project 46995fbmlir/include/mlir/Conversion Passes.td, mlir/include/mlir/Conversion/MathToXeVM MathToXeVM.h

[mlir][Math][XeVM] Add Math to OCL conversion patterns (#198370)

This PR adds conversion patterns to convert supported math ops to SPIR-V
OpenCL builtin calls. These lowerings correspond to `OpExtInst` calls
into the OpenCL SPIR-V extended instruction set via mangled
`__spirv_ocl_` entry points for f32/f64 variants.
DeltaFile
+533-0mlir/test/Conversion/MathToXeVM/math-to-ocl.mlir
+111-19mlir/lib/Conversion/MathToXeVM/MathToXeVM.cpp
+11-7mlir/lib/Conversion/GPUCommon/OpToFuncCallLowering.h
+8-4mlir/include/mlir/Conversion/Passes.td
+8-1mlir/include/mlir/Conversion/MathToXeVM/MathToXeVM.h
+2-0mlir/lib/Conversion/MathToXeVM/CMakeLists.txt
+673-316 files

LLVM/project 8140495llvm/lib/Target/BPF BPFFrameLowering.cpp BPFFrameLowering.h, llvm/test/DebugInfo/BPF dbg-location-fbreg.ll

[BPF] override getFrameIndexReference for frame object offsets (#204722)

### Summary

The BPF backend currently does not override `getFrameIndexReference()`.
Since BPF uses a fixed frame pointer (R10), frame object offsets are
already expressed relative to the frame pointer. The generic
`TargetFrameLowering::getFrameIndexReference()` implementation adjusts
offsets using the stack size, which is not appropriate for BPF.

This PR overrides `getFrameIndexReference()` to return the correct frame
object offsets for the BPF frame model, resulting in accurate debug
locations for stack variables. For example, the stack variable `local`
in the reproducer below previously received:

```
DW_AT_location (DW_OP_fbreg +0)
```


    [67 lines not shown]
DeltaFile
+127-0llvm/test/DebugInfo/BPF/dbg-location-fbreg.ll
+11-0llvm/lib/Target/BPF/BPFFrameLowering.cpp
+3-0llvm/lib/Target/BPF/BPFFrameLowering.h
+141-03 files

FreeNAS/freenas c6f0de6src/middlewared/middlewared/plugins/iscsi_ scst.py iscsi_global.py, src/middlewared/middlewared/plugins/service_/services iscsitarget.py

Supply -preserve_cluster_mode when calling scstadmin
DeltaFile
+1-1src/middlewared/middlewared/plugins/service_/services/iscsitarget.py
+2-0src/middlewared/middlewared/plugins/iscsi_/scst.py
+1-1src/middlewared/middlewared/plugins/iscsi_/iscsi_global.py
+4-23 files

LLVM/project 47af1f9llvm/lib/Target/SPIRV SPIRVNonSemanticDebugHandler.cpp

[reviews] Simplify repeated pattern.
DeltaFile
+19-16llvm/lib/Target/SPIRV/SPIRVNonSemanticDebugHandler.cpp
+19-161 files

Illumos/gate 10a8692usr/src/boot/userboot userboot.h, usr/src/boot/userboot/test test.c

18137 loader: add userboot
Reviewed by: Gordon Ross <gordon.w.ross at gmail.com>
Approved by: Dan McDonald <danmcd at edgecast.io>
DeltaFile
+565-0usr/src/boot/userboot/test/test.c
+320-0usr/src/boot/userboot/userboot/main.c
+271-0usr/src/boot/userboot/userboot/bootinfo32.c
+256-0usr/src/boot/userboot/userboot/bootinfo64.c
+247-0usr/src/boot/userboot/userboot/userboot_disk.c
+235-0usr/src/boot/userboot/userboot.h
+1,894-032 files not shown
+3,789-2038 files

NetBSD/pkgsrc ENdrB8Rdoc CHANGES-2026 TODO

   doc: Updated devel/autoconf to 2.73
VersionDeltaFile
1.3909+2-1doc/CHANGES-2026
1.27452+1-2doc/TODO
+3-32 files

NetBSD/pkgsrc 2VvStYTdevel/autoconf distinfo Makefile, devel/autoconf/patches patch-lib_autoconf_fortran.m4

   autoconf: update to 2.73.

   Add comment to patch based on original commit message
   (from 2014).

   * Noteworthy changes in release 2.73 (2026-03-20) [release]

   ** New features

   *** autoreconf has a new option to exclude certain steps

     autoreconf --exclude <tool>[,<tool>[,…]] tells autoreconf not to
     run any of the listed tools, even if it appears to be necessary.
     This is useful, for example, in situations where autoreconf’s
     heuristics for when to run each tool are incorrect.  (All such
     situations are considered bugs; please report them.)  It may also
     be useful in “bootstrap” scripts that can use autoreconf for most
     of the work but need to take manual control over execution of some
     of the tools.

    [28 lines not shown]
VersionDeltaFile
1.35+5-5devel/autoconf/distinfo
1.105+2-2devel/autoconf/Makefile
1.2+3-1devel/autoconf/patches/patch-lib_autoconf_fortran.m4
1.18+2-1devel/autoconf/PLIST
+12-94 files

LLVM/project 1d8a54fclang/include/clang/CIR LoweringHelpers.h, clang/lib/CIR/Lowering LoweringHelpers.cpp

[CIR] Lower const arrays as a single llvm.mlir.constant (#203590)

When compiling the blender benchmark for SPEC CPU2017, we hit a case
where a very large array (more than 400k elements) is initialized with
constant values. However, because it contains trailing zeros, CIR
generates a constant record initializer (an array of elements, plus a
zero-initialized trailing array). We were lowering this to the LLVM
dialect using a global initializer function with a huge number of calls
to insertelement. The subsequent lowering to LLVM IR constant folded
back to a constant initializer, but it took about 40 minutes to compile.

The recent fix to avoid calling insertelement for the array
initialization didn't fix this case because it handled only arrays, not
records.

This change updates the lowering to the LLVM dialect to lower constant
array attributes to a single llvm.mlir.const value rather than
attempting to build a chain of insertvalue ops whenever possible.
DeltaFile
+63-0clang/lib/CIR/Lowering/LoweringHelpers.cpp
+27-5clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.cpp
+13-0clang/test/CIR/Lowering/const-array-bulk-lowering-fallbacks.cir
+12-0clang/test/CIR/Lowering/const-array-of-pointers.cir
+5-0clang/include/clang/CIR/LoweringHelpers.h
+120-55 files

OPNSense/core 7ccf782src/opnsense/www/js/widgets KeaLeases.js

kea: style sweep on widget
DeltaFile
+176-177src/opnsense/www/js/widgets/KeaLeases.js
+176-1771 files

LLVM/project 2bb8a56bolt/lib/Core BinaryEmitter.cpp, llvm/lib/CodeGen/AsmPrinter AsmPrinter.cpp

[MC] emitCodeAlignment: take MCSubtargetInfo by reference. NFC (#205140)

The fragment member cannot be null, and the sibling streamer hooks
(emitInstruction, initSections, emitPrefAlign) already take it by
reference.
DeltaFile
+5-5llvm/lib/Target/X86/X86MCInstLower.cpp
+5-5bolt/lib/Core/BinaryEmitter.cpp
+4-4llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
+3-3llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
+3-3llvm/lib/MC/MCWinCOFFStreamer.cpp
+2-2llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp
+22-2224 files not shown
+50-5030 files

LLVM/project ef22d07flang/lib/Semantics check-omp-structure.cpp

[flang][OpenMP] Use early exit to unindent some code, NFC (#205150)
DeltaFile
+47-45flang/lib/Semantics/check-omp-structure.cpp
+47-451 files

LLVM/project cb82430llvm/test/CodeGen/SPIRV/debug-info debug-function-declaration-namespace-scope.ll debug-function-declaration-absolute-path.ll

[reviews] Add tests for untested cases.
DeltaFile
+44-0llvm/test/CodeGen/SPIRV/debug-info/debug-function-declaration-namespace-scope.ll
+41-0llvm/test/CodeGen/SPIRV/debug-info/debug-function-declaration-absolute-path.ll
+85-02 files

LLVM/project 93b1f81libcxx/include/__random lognormal_distribution.h binomial_distribution.h, libcxx/test/libcxx/numerics/rand nodiscard.verify.cpp

[libc++][random] Applied `[[nodiscard]]` to `<random>` (#204970)

Towards: #172124

-
https://libcxx.llvm.org/CodingGuidelines.html#apply-nodiscard-where-relevant
- https://wg21.link/rand

Co-authored-by: Hristo Hristov <zingam at outlook.com>
DeltaFile
+607-0libcxx/test/libcxx/numerics/rand/nodiscard.verify.cpp
+9-9libcxx/include/__random/lognormal_distribution.h
+9-9libcxx/include/__random/binomial_distribution.h
+9-9libcxx/include/__random/cauchy_distribution.h
+9-9libcxx/include/__random/negative_binomial_distribution.h
+9-9libcxx/include/__random/weibull_distribution.h
+652-4544 files not shown
+847-24050 files

NetBSD/pkgsrc DT311rjdoc CHANGES-2026

   Update transmission{,-common,-qt,-gtk} to 4.1.2
VersionDeltaFile
1.3908+5-1doc/CHANGES-2026
+5-11 files

NetBSD/pkgsrc dqTzxzunet/transmission PLIST distinfo, net/transmission-common PLIST

   Update transmission{,-common,-qt,-gtk} to 4.1.2

   For a full list of changes, see news/news-4.1.*.md in the distfile; some
   major feature changes/bugfixes:
       Improved uTP download performance.
       Added support for IPv6 and dual-stack UDP trackers.
       Support trackers that only support the old BEP-7 with &ipv4= and &ipv6=.
       New JSON-RPC 2.0-compliant RPC API.
       Added optional sequential downloading.
       Fixed 4.0.6 bug where Transmission might spam HTTP tracker announces.
       General performance improvements.
VersionDeltaFile
1.4+4-71net/transmission-gtk/PLIST
1.11+10-1net/transmission/PLIST
1.4+8-2net/transmission-qt/PLIST
1.29+4-6net/transmission/distinfo
1.3+5-3net/transmission-common/PLIST
1.23+2-2net/transmission/Makefile.common
+33-856 files not shown
+40-9612 files

LLVM/project 582a202llvm/lib/Target/RISCV RISCVQCRelaxMarking.cpp RISCVInstrPredicates.td, llvm/test/CodeGen/RISCV qc-access-marking.ll

[RISCV] Add a Pass for adding %qc.access specifiers (#201938)

Qualcomm's ABI has Access Relocation Markers, which are used to enable
more linker relaxations. This change implements a pass which will
annotate loads and stores (accesses) which are the single user of a
`qc.e.li`-materialized address with these markers so they can be relaxed
in the linker.

This is a follow-up to #188671.
DeltaFile
+637-0llvm/test/CodeGen/RISCV/qc-access-marking.ll
+220-0llvm/lib/Target/RISCV/RISCVQCRelaxMarking.cpp
+25-0llvm/lib/Target/RISCV/RISCVInstrPredicates.td
+6-0llvm/lib/Target/RISCV/RISCVTargetMachine.cpp
+3-1llvm/lib/Target/RISCV/RISCVInstrInfo.cpp
+3-0llvm/lib/Target/RISCV/RISCV.h
+894-14 files not shown
+901-210 files

OPNSense/plugins 02e84fbdns/bind/src/opnsense/mvc/app/models/OPNsense/Bind Record.xml

dns/bind: add SVCB record type to BIND record model (#5508)

Adds SVCB to the Record model OptionValues so RFC 9460/9461 SVCB records
(e.g. _dns DDR records for encrypted-DNS discovery) can be created via the
plugin GUI/API. BIND 9.18+ supports SVCB natively; the plugin validation
rejected the type before it reached named. One-line change, complements the
HTTPS record type (#5425).
DeltaFile
+1-0dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/Record.xml
+1-01 files

OPNSense/plugins 470f68adns/bind/src/opnsense/mvc/app/models/OPNsense/Bind Record.xml

dns/bind: add HTTPS record type to BIND record model (#5425)
DeltaFile
+1-0dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/Record.xml
+1-01 files

LLVM/project dbb907dflang/lib/Semantics check-omp-structure.cpp

[flang][OpenMP] Use early exit to unindent some code, NFC
DeltaFile
+47-45flang/lib/Semantics/check-omp-structure.cpp
+47-451 files

LLVM/project 1f20833llvm/lib/Analysis ConstantFolding.cpp ValueTracking.cpp, llvm/test/Transforms/InstSimplify/ConstProp active-lane-mask.ll

[ValueTracking] Mark frexp, ALM propagates poison (#205139)
DeltaFile
+1-3llvm/test/Transforms/InstSimplify/ConstProp/active-lane-mask.ll
+0-3llvm/lib/Analysis/ConstantFolding.cpp
+2-0llvm/lib/Analysis/ValueTracking.cpp
+3-63 files

OpenBSD/ports XAK0cOhfonts/freefont-ttf Makefile, fonts/freefont-ttf/pkg PLIST

   Move freefont-ttf to the font module.
VersionDeltaFile
1.8+9-10fonts/freefont-ttf/Makefile
1.4+4-0fonts/freefont-ttf/pkg/PLIST
+13-102 files

LLVM/project 86f2e71clang/include/clang/Basic DiagnosticSemaKinds.td, clang/lib/Sema SemaChecking.cpp

[Clang][Sema] Add -Wstringop-overread warning for source buffer overreads (#183004)

This PR adds a new `-Wstringop-overread` warning that diagnoses calls to
memory functions where the specified size exceeds the size of the source
buffer, increasing parity with GCC's `-Wstringop-overread`.

The warning is emitted when the read size is a compile-time constant
that is greater than the size of the source buffer (when known
statically).

This check applies to the following functions:
- `memcpy`, `memmove`, `mempcpy` (and `__builtin_` / `__builtin___*_chk`
variants)
- `memchr`
- `memcmp`, `bcmp`

Some of the existing code for `-Wfortify-source` was refactored into a
helper class to make its lambdas accessible to other functions.


    [6 lines not shown]
DeltaFile
+163-82clang/lib/Sema/SemaChecking.cpp
+175-0clang/test/Sema/warn-stringop-overread.c
+10-10clang/test/AST/ByteCode/builtin-functions.cpp
+5-3clang/test/Sema/warn-fortify-source.c
+4-0clang/test/Analysis/bstring.c
+4-0clang/include/clang/Basic/DiagnosticSemaKinds.td
+361-956 files not shown
+370-9912 files

OpenBSD/ports BTM9iaUfonts/freefarsi-ttf Makefile

   Move freefarsi-ttf to the font module. Update license marker.
VersionDeltaFile
1.10+9-9fonts/freefarsi-ttf/Makefile
+9-91 files