FreeBSD/ports 81c561dnet-im/telegram-desktop Makefile

net-im/telegram-desktop: adopt port
DeltaFile
+1-1net-im/telegram-desktop/Makefile
+1-11 files

LLVM/project 8fd1355clang/lib/Driver OffloadBundler.cpp, clang/test/Driver clang-offload-bundler-magic-collision.c

[OffloadBundler] Bound compressed bundles by header size, not magic scan

When multiple offload bundles are concatenated, the unbundler
(clang-offload-bundler) and llvm-objdump --offloading located the end of a
compressed bundle, and the start of the next one, by scanning for the next
"CCOB" magic string starting right after the current header.

A zstd/zlib-compressed payload can legally contain those four bytes, so the
scan could stop in the middle of the compressed data and truncate the
bundle, corrupting the embedded code object. In practice this produced a
"decomposition" failure for hipBLASLt bf16 GEMMs on gfx942.

Use the authoritative total-size field recorded in the compressed bundle
header (format V2/V3) to compute the exact bundle boundary, and only scan
for the next magic past that point. Legacy bundles without a recorded size
(V1) keep the previous magic-scan fallback.

A skippable-frame fixture that embeds "CCOB" inside the compressed payload
is added to exercise the boundary logic from both clang-offload-bundler and
llvm-objdump --offloading.
DeltaFile
+104-0clang/test/Driver/Inputs/clang-offload-bundler-magic-collision.py
+37-4clang/lib/Driver/OffloadBundler.cpp
+35-0llvm/test/tools/llvm-objdump/Offloading/fatbin-magic-collision.test
+28-5llvm/lib/Object/OffloadBundle.cpp
+27-0clang/test/Driver/clang-offload-bundler-magic-collision.c
+0-0clang/test/Driver/Inputs/clang-offload-bundler-magic-collision.co
+231-96 files

FreeBSD/ports 0d9a6a4net-im/tg_owt Makefile

net-im/tg_owt: adopt port
DeltaFile
+1-1net-im/tg_owt/Makefile
+1-11 files

OPNSense/core ef0f8bcsrc/opnsense/mvc/app/controllers/OPNsense/Interfaces/Api AssignmentController.php, src/opnsense/mvc/app/models/OPNsense/Firewall Category.php Alias.php

firewall: fix one-to-one part of #10024

(cherry picked from commit a97ca7c0037f0790ff936e6b1e7a5901bee5b443)
DeltaFile
+2-2src/opnsense/mvc/app/controllers/OPNsense/Interfaces/Api/AssignmentController.php
+1-2src/opnsense/mvc/app/models/OPNsense/Firewall/Category.php
+1-1src/opnsense/mvc/app/models/OPNsense/Firewall/Alias.php
+1-1src/opnsense/mvc/app/models/OPNsense/Firewall/Group.php
+5-64 files

OPNSense/core cdd4f61src/opnsense/mvc/app/controllers/OPNsense/Firewall/Api GroupController.php

firewall: properly render groups on apply

(cherry picked from commit 6183fbe205f7df44fd249c8c19b554b871e4698a)
DeltaFile
+8-0src/opnsense/mvc/app/controllers/OPNsense/Firewall/Api/GroupController.php
+8-01 files

LLVM/project 361720cllvm/lib/Transforms/Vectorize VPlanRecipes.cpp

[VPlan] Eliminate some vec temps with ArrayRef (NFC) (#207432)

The enabling change is e56187575 ([ArrayRef] Make iterator_range
constructor const-agnostic, #205183).
DeltaFile
+3-5llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
+3-51 files

OPNSense/core c69c7f3src/opnsense/mvc/app/controllers/OPNsense/Core/Api DashboardController.php, src/opnsense/www/js opnsense_widget_manager.js

dashboard: include interfaces widget in dashboard default. Closes https://github.com/opnsense/core/issues/10456

This is the only one that makes sense from a functional perspective.
While here, adjust the resize/style logic a bit such that
updates are also propagated on first load, which makes sure the
interfaces table renders the correct amount of columns to prevent
wasted space.

(cherry picked from commit 83236171bb98b61b2aeb97e273f8ee28a53385f8)
DeltaFile
+37-33src/opnsense/www/js/widgets/BaseTableWidget.js
+18-18src/opnsense/www/js/opnsense_widget_manager.js
+3-1src/opnsense/www/js/widgets/Interfaces.js
+2-1src/opnsense/mvc/app/controllers/OPNsense/Core/Api/DashboardController.php
+60-534 files

LLVM/project 095e9a1libcxx/docs/Status Cxx26Issues.csv, libcxx/include/__atomic atomic_ref.h

[libc++] Implement LWG4472: std::atomic_ref<const T> can be constructed from temporaries (#208131)

## Summary
- Implements LWG4472, i.e., adds a deleted `atomic_ref(T&&)` overload to
the primary template and three partial specializations of `atomic_ref`.


## Test
- Added `static_assert`s in `ctor.pass.cpp` asserting
`atomic_ref<T>`/`atomic_ref<const T>` reject construction from
`T&&`/`const T&&`.

Resolve #189840
DeltaFile
+8-0libcxx/include/__atomic/atomic_ref.h
+5-0libcxx/test/std/atomics/atomics.ref/ctor.pass.cpp
+1-1libcxx/docs/Status/Cxx26Issues.csv
+14-13 files

LLVM/project 4500116llvm/lib/Object OffloadBundle.cpp, llvm/test/tools/llvm-objdump/Offloading fatbin-coff-compress.test

[Offload] Make compressed offload bundle header little-endian (#206744)

The compressed offload bundle (CCOB) header integer fields (Version,
Method, FileSize, UncompressedFileSize, Hash) were serialized and read
in
host-native byte order. The on-disk format is little-endian, so on
big-endian hosts these fields were byte-swapped: writing produced a
malformed header, and reading misparsed the size, making
`llvm-objdump --offloading` crash/misbehave on s390x. This is also why
the
earlier bundle-size fix had to be reverted.

Make the header little-endian on every host:

- Read side: declare the `RawCompressedBundleHeader` fields as
`support::ulittle16_t` / `ulittle32_t` / `ulittle64_t`, so the bytes are
  always interpreted as little-endian regardless of host.
- Write side: emit the header with
`support::endian::Writer(OS, endianness::little)` instead of host-native

    [10 lines not shown]
DeltaFile
+22-27llvm/lib/Object/OffloadBundle.cpp
+1-2llvm/test/tools/llvm-objdump/Offloading/fatbin-coff-compress.test
+23-292 files

OPNSense/core b4afba8src/opnsense/mvc/app/models/OPNsense/Firewall Alias.php

firewall: adjust alias rename according to address_to_pconfig(); closes #10024

Looking at stable/25.7 where all three components where still in
the tree they all use the function which could potentially write
'address'.  It's better than not having those and strive for
consistency although in practice this will die with the removal
of legacy rules support.
DeltaFile
+6-3src/opnsense/mvc/app/models/OPNsense/Firewall/Alias.php
+6-31 files

LLVM/project 1f55374libcxx/include/__ranges lazy_split_view.h, libcxx/test/libcxx/ranges/range.adaptors/range.lazy.split nodiscard.verify.cpp

[libc++][ranges] Applied [[nodiscard]] to `lazy_split` (#208036)

[[nodiscard]] should be applied to functions where discarding the return
value is most likely a correctness issue.

- https://libcxx.llvm.org/CodingGuidelines.html
- https://wg21.link/range.lazy.split

Towards https://github.com/llvm/llvm-project/issues/172124

---------

Co-authored-by: Hristo Hristov <zingam at outlook.com>
DeltaFile
+79-0libcxx/test/libcxx/ranges/range.adaptors/range.lazy.split/nodiscard.verify.cpp
+17-13libcxx/include/__ranges/lazy_split_view.h
+96-132 files

LLVM/project a053738llvm/docs LangRef.rst LangRef.md, llvm/lib/Support UnicodeNameToCodepointGenerated.cpp

Merge branch 'main' into users/kuilpd/add-embed-debug-fd-flags
DeltaFile
+36,526-36,458llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+25,784-36,416llvm/test/CodeGen/RISCV/rvv/clmulh-sdnode.ll
+24,053-23,916llvm/lib/Support/UnicodeNameToCodepointGenerated.cpp
+12,227-23,140llvm/test/CodeGen/RISCV/rvv/clmul-sdnode.ll
+0-33,097llvm/docs/LangRef.rst
+30,305-0llvm/docs/LangRef.md
+128,895-153,02712,786 files not shown
+901,904-637,48812,792 files

FreeBSD/ports 729d235x11/xsnow distinfo Makefile

x11/xsnow: update to 3.9.3 release (+)

Changelog:      https://www.ratrabbit.nl/ratrabbit/xsnow/changelog/index.html
DeltaFile
+3-3x11/xsnow/distinfo
+3-3x11/xsnow/Makefile
+3-0x11/xsnow/pkg-plist
+9-63 files

OPNSense/core a97ca7csrc/opnsense/mvc/app/controllers/OPNsense/Interfaces/Api AssignmentController.php, src/opnsense/mvc/app/models/OPNsense/Firewall Category.php Alias.php

firewall: fix one-to-one part of #10024
DeltaFile
+2-2src/opnsense/mvc/app/controllers/OPNsense/Interfaces/Api/AssignmentController.php
+1-2src/opnsense/mvc/app/models/OPNsense/Firewall/Category.php
+1-1src/opnsense/mvc/app/models/OPNsense/Firewall/Alias.php
+1-1src/opnsense/mvc/app/models/OPNsense/Firewall/Group.php
+5-64 files

LLVM/project 38570callvm/lib/Target/NVPTX NVPTXISelLowering.cpp NVPTXInstrInfo.td, llvm/test/CodeGen/NVPTX tanhf.ll

[NVPTX] Add native `tanh.approx` support for f16/f16x2/bf16/bf16x2 (#203257)

Adds NVPTX backend support for the native PTX `tanh.approx` instructions on half-precision and bfloat types:

- `tanh.approx.f16` and `tanh.approx.f16x2` (PTX 7.0+, sm_75+)
- `tanh.approx.bf16` and `tanh.approx.bf16x2` (PTX 7.8+, sm_90+)

Adds a `FTANHInst` TableGen class with the new patterns in NVPTXInstrInfo.td and splits `ISD::FTANH` out of the unconditional `f16/bf16 -> f32` promotion loop in NVPTXISelLowering.cpp, marking it Legal when the target supports it (scalars promote, vectors expand on older targets). Also guards `tanh.approx.f32` behind sm_75 and adds the
missing `AddPromotedToType` for bf16.

PTX Spec Reference:
https://docs.nvidia.com/cuda/parallel-thread-execution/#half-precision-floating-point-instructions-tanh

Signed-off-by: Varad Rahul Kamthe <vkamthe at nvidia.com>
DeltaFile
+104-12llvm/test/CodeGen/NVPTX/tanhf.ll
+21-1llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp
+17-4llvm/lib/Target/NVPTX/NVPTXInstrInfo.td
+1-0llvm/lib/Target/NVPTX/NVPTXSubtarget.cpp
+143-174 files

NetBSD/pkgsrc uCgxVhLdoc CHANGES-2026

   Removed devel/py-distorm3, devel/py-fields, devel/py-filechunkio, devel/py-funcsigs
VersionDeltaFile
1.4365+5-1doc/CHANGES-2026
+5-11 files

NetBSD/pkgsrc 0tcoYvQdevel Makefile, devel/py-distorm3 PLIST distinfo

   py-distorm3 py-fields py-filechunkio py-funcsigs: removed; obsolete
VersionDeltaFile
1.4652+1-5devel/Makefile
1.6+1-1devel/py-distorm3/PLIST
1.12+1-1devel/py-distorm3/distinfo
1.5+1-1devel/py-funcsigs/distinfo
1.17+1-1devel/py-distorm3/Makefile
1.6+1-1devel/py-filechunkio/PLIST
+6-1011 files not shown
+13-1717 files

FreeBSD/ports 011f43cgames/openmw pkg-plist distinfo

games/openmw: update to 0.51.0.release (+)

Release notes:          https://openmw.org/2026/openmw-0-51-0-released/
Differential Revision:  D57985
DeltaFile
+22-9games/openmw/pkg-plist
+3-5games/openmw/distinfo
+1-4games/openmw/Makefile
+26-183 files

LLVM/project 3fe9d5dllvm/lib/CodeGen/SelectionDAG TargetLowering.cpp, llvm/test/CodeGen/AArch64 udiv-const-optimization.ll

[SelectionDAG] Widen even 33-bit-magic udiv on free-zext targets (#207634)

On 64-bit targets, #181288 lowers a 32-bit unsigned division by a
constant with a 33-bit magic number (the `IsAdd` case) to a widened
64-bit high-multiply (`MULHU`/`UMUL_LOHI`), e.g. `x / 7` becomes a
single `mulq`/`umulh`/`mulhu`. That only reaches odd divisors. This
patch extends it to even divisors on targets where the `i32 -> i64`
zero-extension is free.
DeltaFile
+34-0llvm/test/CodeGen/AArch64/udiv-const-optimization.ll
+33-0llvm/test/CodeGen/X86/udiv-const-optimization.ll
+16-0llvm/test/CodeGen/RISCV/udiv-const-optimization.ll
+7-1llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
+4-4llvm/test/CodeGen/X86/divide-by-constant.ll
+94-55 files

LLVM/project 54d9717clang/test/CodeGen amdgpu-builtin-processor-is.c amdgpu-builtin-is-invocable.c, clang/test/CodeGenCXX dynamic-cast-address-space.cpp

[AMDGPU] Clean up GFX13 feature list

GFX13 features were previously mostly inherited from GFX12/GFX1250.
- define an explicit gfx13 target parser feature list, including
  gfx13-insts and cvt-pknorm-vop3-insts.
- remove transpose load F4/F6 support from gfx13 (previously copied from gfx12)
DeltaFile
+43-3llvm/lib/TargetParser/AMDGPUTargetParser.cpp
+0-16llvm/test/MC/AMDGPU/gfx13_asm_vds.s
+2-2clang/test/CodeGenCXX/dynamic-cast-address-space.cpp
+1-1clang/test/CodeGen/amdgpu-builtin-processor-is.c
+1-1clang/test/CodeGen/amdgpu-builtin-is-invocable.c
+0-1llvm/lib/Target/AMDGPU/AMDGPU.td
+47-246 files

LLVM/project d85e8e7llvm/lib/Transforms/Vectorize VPlanRecipes.cpp LoopVectorizationPlanner.h, llvm/test/Transforms/LoopVectorize vscale-cost.ll

[VPlan] Add VPInstruction::Intrinsic opcode, use for scalar intrinsics. (#207541)

This patch adds a new Intrinsic opcode to VPInstruction, initially used
for generating calls to scalar intrinsics. The intrinsic ID as integer
is the last operand (i.e. the called function). Alternatively we could
also create the needed intrinsic declarations and pass the function
directly, but that would add potentially unused declarations, if we
decide to not vectorize.

The first patch migrates just VScale, but there are other opcodes
matching directly to intrinsics, which will be replaced in follow ups.

It also gives more flexibility going forward, e.g. allows emitting
min/max intrinsics when expanding SCEV min/max expressions.

PR: https://github.com/llvm/llvm-project/pull/207541
DeltaFile
+33-14llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
+14-2llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h
+4-4llvm/lib/Transforms/Vectorize/VPlan.h
+3-4llvm/lib/Transforms/Vectorize/VPlanPatternMatch.h
+6-1llvm/lib/Transforms/Vectorize/VPlanUtils.h
+2-2llvm/test/Transforms/LoopVectorize/vscale-cost.ll
+62-271 files not shown
+63-287 files

OPNSense/core 6183fbesrc/opnsense/mvc/app/controllers/OPNsense/Firewall/Api GroupController.php

firewall: properly render groups on apply
DeltaFile
+8-0src/opnsense/mvc/app/controllers/OPNsense/Firewall/Api/GroupController.php
+8-01 files

LLVM/project 170a479clang/include/clang/Options FlangOptions.td, flang/include/flang/Lower LoweringOptions.def

[flang][Driver] Add option for real sum reassociation (#207377)

Compiler driver option for #207371: -freal-sum-reassociation. 
Disabled by default.

Assisted-by: Codex
DeltaFile
+27-0flang/test/Driver/real-sum-reassociation.f90
+17-0clang/include/clang/Options/FlangOptions.td
+1-5flang/lib/Lower/Bridge.cpp
+6-0flang/test/Driver/driver-help.f90
+5-0flang/lib/Frontend/CompilerInvocation.cpp
+4-0flang/include/flang/Lower/LoweringOptions.def
+60-53 files not shown
+65-69 files

LLVM/project 4452323utils/bazel/llvm-project-overlay/mlir BUILD.bazel

[bazel] Gate NVPTXCodeGen behind llvm_targets (#208041)

Fixes another case of issue #63135
DeltaFile
+1-2utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
+1-21 files

LLVM/project 6c2f267llvm/lib/Target/AArch64 AArch64MacroFusion.cpp, llvm/test/CodeGen/AArch64 misched-fusion-arith-cbz.mir misched-fusion-arith-cbz.ll

[AArch64] Add missing TB(N)Z achors to arith+CBZ clustering (#207725)

This patch adds missing TBZ+TBNZ anchors for arith+CBZ clustering. They
have similar nature to CBZ as specific kinds of it, so this patch
classifies them under the same subtarget feature name compactly. This is
better for Apple CPU. They can be reasonably expected to behave
similarly on AArch64 targets.
DeltaFile
+1,747-0llvm/test/CodeGen/AArch64/misched-fusion-arith-cbz.mir
+807-0llvm/test/CodeGen/AArch64/misched-fusion-arith-cbz.ll
+5-1llvm/lib/Target/AArch64/AArch64MacroFusion.cpp
+2,559-13 files

LLVM/project 66a5b1fllvm/include/llvm/IR ModuleSummaryIndex.h, llvm/lib/CodeGen/LiveDebugValues InstrRefBasedImpl.h InstrRefBasedImpl.cpp

[spr] initial version

Created using spr 1.3.8-wip
DeltaFile
+11-13llvm/lib/CodeGen/LiveDebugValues/InstrRefBasedImpl.h
+9-9llvm/lib/Target/X86/X86LoadValueInjectionLoadHardening.cpp
+7-9llvm/lib/CodeGen/LiveDebugValues/InstrRefBasedImpl.cpp
+4-11llvm/include/llvm/IR/ModuleSummaryIndex.h
+7-7llvm/lib/Target/ARM/Thumb1FrameLowering.cpp
+4-8llvm/lib/DebugInfo/CodeView/ContinuationRecordBuilder.cpp
+42-5726 files not shown
+82-12032 files

OpenBSD/src VoCDZBFsys/dev/acpi acpidmar.c

   acpidmar(4):  Unload maps before destruction

   Remove dmar_dumpseg() as dmar_dmamap_unload() also calls dmar_dumpseg().
   This changes slightly the trace output with enabled debugging.  But
   avoids duplicate information.

   ok kettenis@
VersionDeltaFile
1.17+3-3sys/dev/acpi/acpidmar.c
+3-31 files

LLVM/project 75c9ff2llvm/test/Transforms/LoopVectorize versioning-dead-load.ll

[LV] Add test for interleave group with dead member under stride versioning. nfc (#208190)

Co-authored-by: Luke Lau <luke at igalia.com>
DeltaFile
+217-0llvm/test/Transforms/LoopVectorize/versioning-dead-load.ll
+217-01 files

LLVM/project 12e5416llvm/lib/Target/RISCV RISCVFrameLowering.cpp RISCVFrameLowering.h, llvm/test/CodeGen/RISCV stack-offset-large.ll

[RISCV] Adjust max stack-threshold on 64bit systems (#208223)

Shouldn't emit [-Wframe-larger-than] warning on 64-bit systems, when
stack-size is greater than UINT32_MAX (the previous default). Update the
maximum stack-size-threshold on 64-bit systems to INT64_MAX.

NOTE: GCC has both rv32/rv64 thresholds set to the respective signed
maximum unlike LLVM.
DeltaFile
+11-1llvm/test/CodeGen/RISCV/stack-offset-large.ll
+10-0llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
+2-0llvm/lib/Target/RISCV/RISCVFrameLowering.h
+23-13 files

LLVM/project 15a4500llvm/lib/Object OffloadBundle.cpp

[Offload] Make compressed offload bundle header little-endian

The compressed offload bundle (CCOB) header integer fields (Magic,
Version, Method, FileSize, UncompressedFileSize, Hash) were serialized
and read in host-native byte order. The on-disk format is little-endian,
so on big-endian hosts these fields were byte-swapped: writing produced a
malformed header and reading misparsed the size, making
llvm-objdump --offloading crash/misbehave on s390x.

Use support::ulittleN_t for the header fields on the read side and
support::endian::Writer on the write side, so the header is always
little-endian regardless of host endianness.

Co-authored-by: Nikita Popov <npopov at redhat.com>
DeltaFile
+22-27llvm/lib/Object/OffloadBundle.cpp
+22-271 files