NetBSD/src mbZA0ijexternal/gpl3/gcc/dist/gcc/config/vax vax.md

   gcc/vax: adjust the constraints on the output operands of the
   '*extzv_aligned' instruction patterns, removing the 'earlyclobber'
   modifier, to be consistent with the constraints on the output operands
   of the related 'extv_aligned' instruction patterns.
VersionDeltaFile
1.27+2-2external/gpl3/gcc/dist/gcc/config/vax/vax.md
+2-21 files

LLVM/project 86a6fa2flang/lib/Optimizer/OpenMP FunctionFiltering.cpp, mlir/lib/Dialect/OpenMP/IR OpenMPDialect.cpp

Reject target map iterators without captures

Reject target map iterators until the follow-up capture-binding
representation is added since currently map_iterated on omp.target
only represents the dynamic map list and does not consider the
target-region arguments required by IsolatedFromAbove.
DeltaFile
+0-23mlir/test/Dialect/OpenMP/ops.mlir
+0-19mlir/test/Target/LLVMIR/openmp-todo.mlir
+5-5mlir/test/Dialect/OpenMP/invalid.mlir
+5-0mlir/lib/Dialect/OpenMP/IR/OpenMPDialect.cpp
+0-1flang/lib/Optimizer/OpenMP/FunctionFiltering.cpp
+10-485 files

LLVM/project 0b47918mlir/lib/Dialect/OpenMP/IR OpenMPDialect.cpp

Remove unrelated empty line
DeltaFile
+0-1mlir/lib/Dialect/OpenMP/IR/OpenMPDialect.cpp
+0-11 files

LLVM/project 6ada2e3mlir/include/mlir/Dialect/OpenMP OpenMPOps.td, mlir/lib/Dialect/OpenMP/IR OpenMPDialect.cpp

Require explicit yield in iterator op

Remove the implicit terminator trait from omp.iterator so iterator
modifiers must explicitly yield the value used to form the iterated list.

Add and update verfier and test accordingly.
DeltaFile
+15-0mlir/test/Dialect/OpenMP/ops.mlir
+5-8mlir/lib/Dialect/OpenMP/IR/OpenMPDialect.cpp
+9-0mlir/test/Dialect/OpenMP/invalid.mlir
+1-3mlir/include/mlir/Dialect/OpenMP/OpenMPOps.td
+30-114 files

LLVM/project 935b6bemlir/include/mlir/Dialect/OpenMP OpenMPOps.td, mlir/lib/Dialect/OpenMP/IR OpenMPDialect.cpp

Simplify map iterator clause assembly

- Split MLIR map syntax into separate map_entries(...) and map_iterated(...),
  removing the custom MapEntryList parser/printer.
- Moved omp.target map_iterated out of TargetOpRegion
  - it now prints before the target region instead of as map_iterated_entries(...) after the region.
- Renamed LLVMIR TODO helper to clause-style checkMap.
- Added DeclareMapperInfoOp builder from DeclareMapperInfoOperands
  and updated Flang call sites so they do not need to spell out newly
  added operands..
DeltaFile
+9-85mlir/lib/Dialect/OpenMP/IR/OpenMPDialect.cpp
+14-14mlir/test/Dialect/OpenMP/ops.mlir
+12-12mlir/test/Dialect/OpenMP/invalid.mlir
+7-7mlir/test/Target/LLVMIR/openmp-todo.mlir
+6-8mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.cpp
+6-3mlir/include/mlir/Dialect/OpenMP/OpenMPOps.td
+54-1293 files not shown
+60-1379 files

LLVM/project 096bae0mlir/lib/Dialect/OpenMP/IR OpenMPDialect.cpp, mlir/lib/Target/LLVMIR/Dialect/OpenMP OpenMPToLLVMIRTranslation.cpp

Add verifier check for iterated map info and tests for declare mapper
DeltaFile
+92-75mlir/lib/Dialect/OpenMP/IR/OpenMPDialect.cpp
+112-4mlir/test/Dialect/OpenMP/invalid.mlir
+24-0mlir/test/Target/LLVMIR/openmp-todo.mlir
+18-0mlir/test/Dialect/OpenMP/ops.mlir
+6-0mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.cpp
+252-795 files

LLVM/project a15409ellvm/utils/gn README.rst

gn build: Remove a step from the README.

No longer necessary after https://gn-review.googlesource.com/c/gn/+/18500

Reviewers: 

Pull Request: https://github.com/llvm/llvm-project/pull/197854
DeltaFile
+0-2llvm/utils/gn/README.rst
+0-21 files

LLVM/project e2bdf2cflang/lib/Optimizer/OpenMP LowerWorkdistribute.cpp, mlir/lib/Dialect/OpenMP/IR OpenMPDialect.cpp

[mlir][OpenMP] Add iterator support to motion clauses

Extend omp.target_data, omp.target_enter_data, omp.target_exit_data,
and omp.target_update to support `!omp.iterated<Ty>`.

This is part of feature work for #188061

Assisted with copilot
DeltaFile
+128-21mlir/lib/Dialect/OpenMP/IR/OpenMPDialect.cpp
+100-1mlir/test/Dialect/OpenMP/ops.mlir
+83-0mlir/test/Target/LLVMIR/openmp-todo.mlir
+38-4mlir/test/Dialect/OpenMP/invalid.mlir
+19-18flang/lib/Optimizer/OpenMP/LowerWorkdistribute.cpp
+14-3mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.cpp
+382-475 files not shown
+403-6111 files

LLVM/project 88eb98ellvm/utils/gn README.rst

gn build: Remove a step from the README. (#197842)

No longer necessary after
https://gn-review.googlesource.com/c/gn/+/18500
DeltaFile
+0-2llvm/utils/gn/README.rst
+0-21 files

LLVM/project 39e42e8flang/lib/Lower/OpenMP Utils.cpp ClauseProcessor.cpp, flang/lib/Optimizer/OpenMP MapInfoFinalization.cpp

[Flang][OpenMP] Support iterator modifiers in map and motion clauses

Support iterated array elements and array sections in map and motion clauses for
target data, target enter data, target exit data, and target update constructs.

Preserve mapper resolution for iterated entries, including explicit mappers,
user-defined default mappers, declare mapper entries, and implicit default
mappers.

This PR stacked on top of #197047 and #197752.

This patch is part of the feature work for #188061.

Assisted with copilot.
DeltaFile
+507-0flang/test/Lower/OpenMP/motion-iterator.f90
+175-0flang/lib/Lower/OpenMP/Utils.cpp
+95-12flang/lib/Lower/OpenMP/ClauseProcessor.cpp
+25-0flang/test/Lower/OpenMP/declare-mapper-iterator.f90
+15-0flang/lib/Optimizer/OpenMP/MapInfoFinalization.cpp
+13-0flang/lib/Lower/OpenMP/Utils.h
+830-123 files not shown
+830-399 files

LLVM/project 3d7c5e0libclc CMakeLists.txt, libclc/cmake/modules AddLibclc.cmake

[libclc] Move sources collection into libclc_add_builtin_library, merge opencl library creation into libclc_add_library (#197654)

Merging opencl library creation into libclc_add_library undos part of
change in 14bf8e7.
This simplifies creating different libraries by invoking
libclc_add_library multiple times, without the need of splitting
intermediate library creation and its finalization.

add_subdirectory(clc) and add_subdirectory(opencl) only updates sources
list of existing library target, so it is safe to move inside
libclc_add_builtin_library.
DeltaFile
+38-19libclc/cmake/modules/AddLibclc.cmake
+8-13libclc/CMakeLists.txt
+46-322 files

FreeBSD/ports 937e699net/gnome-connections pkg-plist distinfo

net/gnome-connections: update to 50.0 and unbreak

Update gnome-connections to release 50.0 and remove BROKEN=

  50.0 - 13 Mar, 2026
  ====================
  Changes since 50.rc
    - Added/Updated translations:
       - Danish

  50.rc - 02 Mar, 2026
  ====================
  Changes since 50.beta
    - Update gtk-frdp
       - Grab keyboard for FrdpDisplay
       - Pass Win keys only when keyboard is grabbed
       - Fix crash when copying clipboard data
       - Fix flags for CB_FORMAT_LIST message
    - Added/Updated translations:

    [131 lines not shown]
DeltaFile
+20-1net/gnome-connections/pkg-plist
+3-3net/gnome-connections/distinfo
+1-5net/gnome-connections/Makefile
+24-93 files

LLVM/project 7d70022clang/lib/CodeGen CGExprAgg.cpp CGExprCXX.cpp, clang/test/CodeGen ubsan-aggregate-null-align.c

[UBSan] add pointer/array access checks for aggregate assignment/initialization operands (#190739)

This PR adds UbSan `null`, `alignment`, and `array-bounds` checks for
aggregate copy operations.

When copying scalar types, clang emits `null`/`alignment` checks via
`EmitCheckedLValue`. However, aggregate copies used `EmitLValue`,
skipping these checks entirely.

Code changes:
- `CGExprAgg.cpp`: `EmitCheckedLValue` in `EmitAggLoadOfLValue` (RHS
check)
- `CGExprAgg.cpp`: `EmitCheckedLValue` in `VisitBinAssign` (LHS check)
- `CGClass.cpp`: `EmitCheckedLValue` for trivial copy/move constructor
arg
- `CGExprCXX.cpp`: `EmitCheckedLValue` for trivial `operator=` RHS

Test updates:
- `ubsan-aggregate-null-align.c`:

    [11 lines not shown]
DeltaFile
+129-195clang/test/CodeGen/ubsan-aggregate-null-align.c
+4-3clang/test/CodeGenCXX/ubsan-new-checks.cpp
+2-2clang/lib/CodeGen/CGExprAgg.cpp
+1-1clang/lib/CodeGen/CGExprCXX.cpp
+1-1clang/lib/CodeGen/CGClass.cpp
+137-2025 files

OpenBSD/src CWghTJulib/libc/time localtime.c

   Insist on opening only regular files. (On OpenBSD, the directory
   case is handled by the kernel, but I want to stop other weird stuff)
   ok millert, dgl
VersionDeltaFile
1.78+13-3lib/libc/time/localtime.c
+13-31 files

OpenBSD/ports Lf2ihwLnet/miniflux distinfo modules.inc

   Update to miniflux-2.2.19

   From Igor Zornik (maintainer)
VersionDeltaFile
1.28+50-42net/miniflux/distinfo
1.26+14-11net/miniflux/modules.inc
1.32+1-1net/miniflux/Makefile
+65-543 files

LLVM/project 5c86d85llvm/lib/Target/AMDGPU SIInstructions.td AMDGPUInstructions.td, llvm/test/CodeGen/AMDGPU andorn2.ll

[AMDGPU] Add v2i32 V_BFI combines for andn2 and orn2 (#196325)

Add vector v2i32 pattern matches that lower to two lane wise V_BFI_B32
operations.

TODO: Support v2i16, v4i16 pattern.
DeltaFile
+921-0llvm/test/CodeGen/AMDGPU/andorn2.ll
+53-48llvm/lib/Target/AMDGPU/SIInstructions.td
+2-1llvm/lib/Target/AMDGPU/AMDGPUInstructions.td
+976-493 files

LLVM/project b1c020blldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime AppleObjCRuntime.cpp

[lldb] Stop looking for libarclite symbol (#197848)

libarclite is a helper library used for Automatic Reference Counting
(ARC) support on older operating systems. It hasn't been necessary since
Mac OS X Mountain Lion, released in 2012.
DeltaFile
+4-14lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp
+4-141 files

LLVM/project b571b4dlldb/include/lldb/Symbol UnwindTable.h

[lldb] Fix data race in UnwindTable::Initialize (#197816)

UnwindTable::Initialize uses double-checked locking (DCL) against
m_scanned_all_unwind_sources, but the flag was a plain bool. The
fast-path read outside the mutex is unsynchronized with the write inside
the mutex, so concurrent first-time callers can observe partially
initialized state.

Make m_scanned_all_unwind_sources std::atomic<bool>. The default memory
ordering (seq_cst) is sufficient for the DCL pattern used here.

Found by ThreadSanitizer as part of #197792.
DeltaFile
+5-5lldb/include/lldb/Symbol/UnwindTable.h
+5-51 files

FreeBSD/ports 51bf5dcgraphics/mesa-devel Makefile, graphics/mesa-devel/files patch-libdrm-2.4.131

graphics/mesa-devel: unbreak on AMD GPUs after 6e724a055fd5

Revert one more upstream change to work around the old libdrm.
https://gitlab.freedesktop.org/mesa/mesa/-/work_items/15477

PR:     295291
DeltaFile
+12-0graphics/mesa-devel/files/patch-libdrm-2.4.131
+1-0graphics/mesa-devel/Makefile
+13-02 files

FreeBSD/src b999544sys/amd64/linux linux_vdso_gtod.c, sys/amd64/linux32 linux32_vdso_gtod.c

linux: Fix some problems with header pollution

- Avoid including sys/proc.h in linux_vdso_gtod.c.  It's not needed, but
  the implicit inclusion of sys/param.h via sys/ucred.h->bsm/audit.h was
  bringing in some required definitions.
- Include a couple of required headers: sys/time.h (for struct bintime),
  and limits.h (for INT_MAX).
- Move some helpers from linux.h, which depend on sys/param.h for NODEV,
  to the one CU where they're actually used.

No functional change intended.

Reviewed by:    imp, kib, emaste
MFC after:      2 weeks
Differential Revision:  https://reviews.freebsd.org/D56982
DeltaFile
+0-50sys/compat/linux/linux.h
+46-0sys/compat/linux/linux_stats.c
+3-1sys/i386/linux/linux_vdso_gtod.c
+3-1sys/arm64/linux/linux_vdso_gtod.c
+3-1sys/amd64/linux32/linux32_vdso_gtod.c
+3-1sys/amd64/linux/linux_vdso_gtod.c
+58-546 files

OpenBSD/src ufFxq3slib/libc/sys open.2, sys/kern kern_pledge.c vfs_lookup.c

   Make __pledge_open(2) of /etc/localtime and /usr/share/zoneinfo much
   more strict.  If /etc/localtime is a symbolic link, allow one translation
   which must land cleanly in /usr/share/zoneinfo (.. is checked for) otherwise
   error with EACCES.  In /usr/share/zoneinfo, do not allow symbolic links and
   error with ELOOP.
   Alfredo Ortega observed the non-strict handling, but agrees no specific
   exploitability exists.  Changing this took almost a month with many
   discarded prototypes.
   ok beck dgl
VersionDeltaFile
1.358+25-18sys/kern/kern_pledge.c
1.60+25-4lib/libc/sys/open.2
1.92+19-1sys/kern/vfs_lookup.c
1.52+4-1sys/sys/namei.h
+73-244 files

LLVM/project 7e667c3lldb/include/lldb/Target StackFrameList.h, lldb/source/Target StackFrameList.cpp

[lldb] Use llvm::sys::RWMutex instead of std::shared_mutex (NFC) (#197847)

On Darwin, pthread_rwlock is faster than std::shared_mutex, which is why
the implementation of llvm::sys::RWMutex used that on our platform.
Everywhere else, it uses std::shared_mutex under the hood.

Also see #70151

rdar://177113951
DeltaFile
+11-11lldb/source/Target/StackFrameList.cpp
+4-5lldb/include/lldb/Target/StackFrameList.h
+15-162 files

LLVM/project 81e41bdllvm/lib/MC DXContainerInfo.cpp, utils/bazel/llvm-project-overlay/llvm BUILD.bazel

[Bazel] Port ca6e386cbf5b3e75a2a62e6c4d29b24109727a52 (#197841)

obj2yaml now depends on MC (although probably not for much), and remove
an unnecessary header creating a layering violation.
DeltaFile
+1-0utils/bazel/llvm-project-overlay/llvm/BUILD.bazel
+0-1llvm/lib/MC/DXContainerInfo.cpp
+1-12 files

OpenBSD/ports g7cWEhxgames/nudoku Makefile

   Fails to build on sparc64 with "initializer element is not constant"

   Move to ports-gcc on base-gcc arches to fix build on sparc64
VersionDeltaFile
1.13+4-0games/nudoku/Makefile
+4-01 files

OpenBSD/ports i6iC3pQdevel/highway Makefile

   Fails with error "Missing case for HWY_ARCH_*"

   Mark BROKEN-sparc64
VersionDeltaFile
1.7+2-0devel/highway/Makefile
+2-01 files

LLVM/project 42b563bflang/lib/Optimizer/OpenMP MapInfoFinalization.cpp, flang/test/Integration/OpenMP map-types-and-sizes.f90

[Flang][OpenMP][Offload] Modify MapInfoFinalization to handle attach mapping and 6.1's ref_* and attach map keywords (#177715)

This PR is one of four required to implement the attach mapping
semantics in Flang, alongside the ref_ptr/ref_ptee/ref_ptr_ptee map
modifiers and the attach(always/never/auto) modifiers.

This PR is the MapInfoFinalization changes required to support these
features, it mainly deals with applying the correct attach map type and
manipulating the descriptor types maps for base address and descriptor
so that when we specify ref_ptr/ref_ptee we emit one of the two maps and
when we emit ref_ptr_ptee we emit our usual default maps. In all cases
we add the "glue" of an new attach map except in cases where a user has
provided attach never. In cases where we are provided an always, we
apply the always map type to our attach maps.

It's important to note the runtime has a toggle for the auto map
behavior, which will flip the attach behavior to the newer semantics or
the older semantics for backwards compatibility (outside the purview of
this PR but good to mention).
DeltaFile
+715-332flang/lib/Optimizer/OpenMP/MapInfoFinalization.cpp
+388-284mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.cpp
+273-0mlir/test/Target/LLVMIR/omptarget-host-ref-semantics.mlir
+101-165flang/test/Integration/OpenMP/map-types-and-sizes.f90
+107-0flang/test/Lower/OpenMP/attach-and-ref-modifier.f90
+30-61mlir/test/Target/LLVMIR/omptarget-record-type-with-ptr-member-host.mlir
+1,614-84264 files not shown
+2,300-1,21470 files

LLVM/project 21e436fclang/lib/Analysis/LifetimeSafety LifetimeAnnotations.cpp, clang/test/Sema warn-lifetime-safety-lifetimebound.cpp

[LifetimeSafety] Recognize declarations nested under std namespace (#197604)

Previously `isInStlNamespace()` only checked the immediate declaration
context. This missed declarations nested below `std` through records or
intermediate namespaces, such as `std::basic_string_view` constructors.

This commit fixes the problem by walking the `DeclContext` chain in
`isInStlNamespace`.

Closes #197454
DeltaFile
+12-11clang/lib/Analysis/LifetimeSafety/LifetimeAnnotations.cpp
+4-0clang/test/Sema/warn-lifetime-safety-lifetimebound.cpp
+3-0clang/test/Sema/Inputs/lifetime-analysis.h
+19-113 files

FreeBSD/src 73ec43arelease/tools ec2-small.conf basic-cloudinit.conf

Cloud releases: More firstboot_pkg_upgrade

Update a couple more cloudware images which I forgot about earlier.

Approved by:    re (cperciva)
Reviewed by:    ziaee
Fixes: 464a351267dc ("Cloud releases: Switch to firstboot_pkg_upgrade")
Differential Revision:  https://reviews.freebsd.org/D57006

(cherry picked from commit 4080419d9a2d88d44d20baaf3ea01934561819c1)
(cherry picked from commit 1ae97c95d025277fb542936b0a2686180dd4a7b7)
DeltaFile
+6-3release/tools/ec2-small.conf
+4-3release/tools/basic-cloudinit.conf
+10-62 files

FreeBSD/src 10c4498release/tools ec2-base.conf azure.conf

Cloud releases: Switch to firstboot_pkg_upgrade

Cloud images are deployed with base system packages. Introduce a
firstboot package auto updater to patch the base system on first boot.

Approved by:    re (cperciva)
MFC after:              1 hour
MFC to:                 stable/15
Reviewed by:            cperciva
Sponsored by:           Google Cloud
Differential Revision:  https://reviews.freebsd.org/D56890

(cherry picked from commit 464a351267dc0d1843b919dd72ad1c70c24815ce)
(cherry picked from commit 0bb2b2a45f3c0c147d7c55e010be45e55af8df87)
DeltaFile
+6-3release/tools/ec2-base.conf
+3-2release/tools/azure.conf
+3-2release/tools/gce.conf
+12-73 files

OpenBSD/ports jnWnq4qdevel/ruby-prof distinfo Makefile, devel/ruby-prof/pkg PLIST

   Update to ruby-prof 2.0.4
VersionDeltaFile
1.9+39-4devel/ruby-prof/pkg/PLIST
1.8+2-2devel/ruby-prof/distinfo
1.22+1-1devel/ruby-prof/Makefile
+42-73 files