LLVM/project 825b3c7compiler-rt/lib/asan asan_allocator.h asan_mapping.h

[ASan] Improve qemu-alpha shadow mapping (#201861)

With a 1T fixed shadow offset the usable app memory is split between
LowMem (0-1T) and HighMem (1.5T-4T). This works on real Alpha hardware
where all addresses stay within TASK_SIZE (4T). However, under
qemu-alpha user mode mmap(NULL) returns addresses from the host x86-64
address space (~127T), outside both regions, causing AddrIsInMem() CHECK
failures in PoisonShadow.

Switch to a fixed shadow offset of 0x70000000000 (7 TiB). TASK_SIZE is
well below the shadow offset so HighMem is empty: kHighMemBeg =
MEM_TO_SHADOW(kHighMemEnd) + 1 > kHighMemEnd. All app memory fits in
LowMem [0, 7T), a simpler layout with no HighMem split. On qemu-alpha,
-R 0x80000000000 constrains guest mappings to [0, 8T), keeping them
within LowMem.
DeltaFile
+3-2compiler-rt/lib/asan/asan_allocator.h
+1-1compiler-rt/lib/asan/asan_mapping.h
+4-32 files

NetBSD/pkgsrc OpVA6erdoc CHANGES-2026

   Updated net/helm, databases/hiredis
VersionDeltaFile
1.3565+3-1doc/CHANGES-2026
+3-11 files

NetBSD/pkgsrc 2ekd33zdatabases/hiredis distinfo Makefile

   hiredis: updated to 1.4.0

   1.4.0

   Improvements

   Increase required cmake version to 3.15 @memark
   Use ffc (pure-C99) as the RESP3 double parser instead of strtod @fcostaoliveira
   FetchContent should not include cpack @koenvandesande
   Add C++ compatibility to sds.h @JonasKruckenberg
   Apply FD_CLOEXEC on sockets @lennyly

   Bug Fixes

   fix: add NULL check for c->funcs in redisReconnect @ghost
   Fix buffer overflow in tests.
VersionDeltaFile
1.18+4-4databases/hiredis/distinfo
1.14+2-2databases/hiredis/Makefile
+6-62 files

FreeBSD/ports 11ccb12sysutils/py-overlord distinfo Makefile

sysutils/py-overlord: Update to 0.25.0

ChangeLog: https://github.com/DtxdF/overlord/releases/tag/v0.25.0

MFH:            2026Q2
(cherry picked from commit 79f5d32d7277c80e7f376bc3097d185a5aa0cf60)
DeltaFile
+3-3sysutils/py-overlord/distinfo
+1-1sysutils/py-overlord/Makefile
+4-42 files

FreeBSD/ports 79f5d32sysutils/py-overlord distinfo Makefile

sysutils/py-overlord: Update to 0.25.0

ChangeLog: https://github.com/DtxdF/overlord/releases/tag/v0.25.0

MFH:            2026Q2
DeltaFile
+3-3sysutils/py-overlord/distinfo
+1-1sysutils/py-overlord/Makefile
+4-42 files

NetBSD/pkgsrc CoNH2Einet/helm distinfo go-modules.mk

   helm: updated to 4.2.0

   4.2.0

   Switch to goreleaser for release builds
   Kubernetes client libraries to v1.36
   Add mustToToml template function
   deprecate unused --hide-notes and --render-subchart-notes flags
   --dry-run=server now respects generateName:
VersionDeltaFile
1.3+646-790net/helm/distinfo
1.3+214-262net/helm/go-modules.mk
1.14+8-18net/helm/Makefile
+868-1,0703 files

LLVM/project 5f5642dclang/lib/CIR/CodeGen CIRGenModule.cpp CIRGenModule.h, clang/test/CIR/CodeGenOpenCL kernel-arg-info.cl kernel-arg-info-single-as.cl

[CIR][OpenCL] Attach kernel argument metadata to CIR functions

Emit the CIR OpenCL kernel argument metadata attribute for kernel functions. Preserve CIR language address-space kinds until lowering and include argument names only when `-cl-kernel-arg-info` is enabled.
DeltaFile
+152-0clang/test/CIR/CodeGenOpenCL/kernel-arg-info.cl
+83-0clang/lib/CIR/CodeGen/CIRGenModule.cpp
+19-0clang/test/CIR/CodeGenOpenCL/kernel-arg-info-single-as.cl
+12-0clang/test/CIR/CodeGenOpenCL/kernel-arg-metadata.cl
+4-0clang/lib/CIR/CodeGen/CIRGenModule.h
+3-0clang/lib/CIR/CodeGen/CIRGenFunction.cpp
+273-06 files

LLVM/project 3e4bf54clang/include/clang/CIR/Dialect/IR CIRAttrConstraints.td CIROpenCLAttrs.td, clang/lib/CIR/Dialect/IR CIROpenCLAttrs.cpp

fix: constrain CIR OpenCL metadata arrays in TableGen
DeltaFile
+25-6clang/include/clang/CIR/Dialect/IR/CIRAttrConstraints.td
+0-23clang/lib/CIR/Dialect/IR/CIROpenCLAttrs.cpp
+6-6clang/include/clang/CIR/Dialect/IR/CIROpenCLAttrs.td
+6-6clang/test/CIR/IR/invalid-opencl-kernel-arg-metadata.cir
+6-2clang/include/clang/CIR/Dialect/IR/CIRAttrs.td
+43-435 files

LLVM/project 6cfd155clang/include/clang/CIR/Dialect/IR CIREnumAttr.td, clang/lib/CIR/Dialect/IR CIROpenCLAttrs.cpp CIRTypes.cpp

fix: Use CIR_LangAddressSpace instead of a raw integer
DeltaFile
+7-29clang/test/CIR/IR/invalid-opencl-kernel-arg-metadata.cir
+4-12clang/lib/CIR/Dialect/IR/CIROpenCLAttrs.cpp
+4-4clang/test/CIR/IR/opencl-kernel-arg-metadata.cir
+3-1clang/include/clang/CIR/Dialect/IR/CIREnumAttr.td
+2-0clang/lib/CIR/Dialect/Transforms/TargetLowering/Targets/AMDGPU.cpp
+2-0clang/lib/CIR/Dialect/IR/CIRTypes.cpp
+22-462 files not shown
+25-468 files

LLVM/project cadc32fclang/test/CIR/IR opencl-kernel-arg-metadata.cir

fix: Add zero-argument kernel arg metadata test
DeltaFile
+12-0clang/test/CIR/IR/opencl-kernel-arg-metadata.cir
+12-01 files

LLVM/project 1ac5d63clang/include/clang/CIR/Dialect/IR CIROpenCLAttrs.td CIRAttrs.td, clang/lib/CIR/Dialect/IR CIROpenCLAttrs.cpp

[CIR][OpenCL] Add kernel argument metadata attribute

Add a CIR attribute that carries OpenCL kernel argument metadata in source argument order. Verify that each metadata field has the expected element type and that all present arrays describe the same number of arguments.
DeltaFile
+78-0clang/test/CIR/IR/invalid-opencl-kernel-arg-metadata.cir
+60-0clang/lib/CIR/Dialect/IR/CIROpenCLAttrs.cpp
+46-0clang/include/clang/CIR/Dialect/IR/CIROpenCLAttrs.td
+27-0clang/test/CIR/IR/opencl-kernel-arg-metadata.cir
+1-0clang/include/clang/CIR/Dialect/IR/CIRAttrs.td
+1-0clang/include/clang/CIR/Dialect/IR/CIRDialect.td
+213-01 files not shown
+214-07 files

LLVM/project 23b5ed0clang/test/CIR/IR invalid-addrspace.cir

fix: Update CIR invalid address space diagnostic
DeltaFile
+1-1clang/test/CIR/IR/invalid-addrspace.cir
+1-11 files

LLVM/project 06fa129clang/lib/CIR/Dialect/IR CIROpenCLAttrs.cpp, clang/test/CIR/IR invalid-opencl-kernel-arg-metadata.cir

fix: Verify kernel arg addr_space values
DeltaFile
+23-1clang/test/CIR/IR/invalid-opencl-kernel-arg-metadata.cir
+14-5clang/lib/CIR/Dialect/IR/CIROpenCLAttrs.cpp
+37-62 files

OpenBSD/ports vHCvfcox11/kde-plasma/plasma-activities-stats Makefile

   Fix build dependency

   x11/qt6/qtdeclarative not qt5
VersionDeltaFile
1.3+1-1x11/kde-plasma/plasma-activities-stats/Makefile
+1-11 files

OpenBSD/ports PdDl2Btmultimedia/synfig/patches patch-src_synfig_rendering_software_function_array_h

   Missing cvs remove
VersionDeltaFile
1.2+0-0multimedia/synfig/patches/patch-src_synfig_rendering_software_function_array_h
+0-01 files

OpenBSD/ports nzAdupXmultimedia/synfig Makefile distinfo, multimedia/synfigstudio Makefile distinfo

   Update synfigstudio and friends to 1.5.5
VersionDeltaFile
1.45+16-18multimedia/synfigstudio/Makefile
1.50+12-13multimedia/synfig/Makefile
1.1+14-0multimedia/synfigstudio/patches/patch-src_gui_docks_dockbook_cpp
1.12+8-0multimedia/synfigstudio/pkg/PLIST
1.6+2-2multimedia/synfig/distinfo
1.6+2-2multimedia/synfigstudio/distinfo
+54-353 files not shown
+60-399 files

OpenBSD/ports yeBYvMSmultimedia/mlt7 Makefile, multimedia/mlt7/patches patch-src_modules_openfx_factory_c patch-src_melt_io_c

   Update mlt to 7.38.0
VersionDeltaFile
1.1+46-0multimedia/mlt7/patches/patch-src_modules_openfx_factory_c
1.8+4-19multimedia/mlt7/pkg/PLIST-gpl2
1.14+13-2multimedia/mlt7/pkg/PLIST-main
1.24+2-11multimedia/mlt7/Makefile
1.1+11-0multimedia/mlt7/patches/patch-src_melt_io_c
1.9+2-2multimedia/mlt7/patches/patch-src_framework_mlt_property_c
+78-341 files not shown
+80-367 files

OpenBSD/ports gvlcsWSmultimedia/shotcut distinfo Makefile, multimedia/shotcut/patches patch-src_CMakeLists_txt

   Update shotcut to 26.4.30

   OK Josh Grosse (maintainer), thfr@
VersionDeltaFile
1.20+2-2multimedia/shotcut/distinfo
1.27+2-1multimedia/shotcut/Makefile
1.19+3-0multimedia/shotcut/pkg/PLIST
1.10+1-1multimedia/shotcut/patches/patch-src_CMakeLists_txt
+8-44 files

NetBSD/pkgsrc GBo3t8pdoc CHANGES-2026

   Updated sysutils/py-sh, audio/py-soundfile
VersionDeltaFile
1.3564+3-1doc/CHANGES-2026
+3-11 files

NetBSD/pkgsrc Nb6wexkaudio/py-soundfile distinfo Makefile

   py-soundfile: updated to 0.14.0

   0.14.0

   Added type annotations
   Added Licensing note to wheel
   Fixed race condition when opening files concurrently
   Fixed regressions in test suite
   Removed support for Python <= 3.9
   Added ARM64 support for Windows
VersionDeltaFile
1.7+4-4audio/py-soundfile/distinfo
1.17+3-3audio/py-soundfile/Makefile
+7-72 files

NetBSD/pkgsrc Yp1xADVsysutils/py-sh distinfo Makefile

   py-sh: updated to 2.2.4

   2.2.4
   - Bugfix regression where correct `gid` was not set on the launched process
VersionDeltaFile
1.16+4-4sysutils/py-sh/distinfo
1.19+2-2sysutils/py-sh/Makefile
+6-62 files

NetBSD/pkgsrc K8m0h3Udoc CHANGES-2026

   doc: Updated www/php-contao-manager to 1.10.14
VersionDeltaFile
1.3563+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc ABFxLyjwww/php-contao-manager distinfo Makefile

   www/php-contao-manager: update to 1.10.14

   1.10.14 (2026-05-14)

   * Updated dependencies to fix a security issue in Composer
   * Add a white border to the 2FA QR code (#923)
VersionDeltaFile
1.22+4-4www/php-contao-manager/distinfo
1.25+2-2www/php-contao-manager/Makefile
+6-62 files

FreeBSD/doc 0cb213dshared contrib-develalumni.adoc contrib-committers.adoc

Move committers to alumni:

afedorov         Aleksandr Fedorov
luporl           Leandro Lupori
wma              Wojciech Macek

We thank everybody for their service to the project.
DeltaFile
+3-0shared/contrib-develalumni.adoc
+0-3shared/contrib-committers.adoc
+3-32 files

NetBSD/pkgsrc lffrYGKdoc CHANGES-2026

   doc: Updated www/ruby-sass-embedded to 1.100.0
VersionDeltaFile
1.3562+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc zrwuReFwww/ruby-sass-embedded PLIST distinfo

   www/ruby-sass-embedded: update to 1.100.0

   1.100.0 (2026-05-22)

   * Refactor Rakefile (#377)
   * Test install from git (#378)
   * Bump rubygems/configure-rubygems-credentials from 1.0.0 to 2.0.0 (#379)
   * Bump sass from 1.99.0 to 1.100.0 in /ext/sass (#380)
VersionDeltaFile
1.7+7-11www/ruby-sass-embedded/PLIST
1.10+4-4www/ruby-sass-embedded/distinfo
1.13+2-2www/ruby-sass-embedded/Makefile
+13-173 files

NetBSD/pkgsrc nGZq4n0doc CHANGES-2026

   doc: Updated www/ruby-faraday-net_http to 3.4.4
VersionDeltaFile
1.3561+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc V00EZQ6www/ruby-faraday-net_http distinfo Makefile

   www/ruby-faraday-net_http: update to 3.4.4

   3.4.4 (2026-06-02)

   What's Changed

   * Keep response body mutable when there is no body and no Content-Type by
     @kevinebaugh in #57

   New Contributors

   * @kevinebaugh made their first contribution in #57
VersionDeltaFile
1.11+4-4www/ruby-faraday-net_http/distinfo
1.9+2-2www/ruby-faraday-net_http/Makefile
+6-62 files

NetBSD/pkgsrc L79KdGkdoc CHANGES-2026

   doc: Updated www/ruby-doorkeeper-i18n to 5.2.9
VersionDeltaFile
1.3560+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc vuNf46fwww/ruby-doorkeeper-i18n distinfo Makefile

   www/ruby-doorkeeper-i18n: update to 5.2.9

   5.2.9 (2026-06-04)

   * [#73] Add colons to translations
   * [#74] Fix untranslated English fragment in Japanese locale
VersionDeltaFile
1.2+4-4www/ruby-doorkeeper-i18n/distinfo
1.2+2-2www/ruby-doorkeeper-i18n/Makefile
+6-62 files