FreeBSD/ports 074ced1deskutils/sigi Makefile Makefile.crates

deskutils/sigi: Update 3.7.1 => 3.8.0

While here, update WWW and maintainer address.

Changelog:
https://github.com/so-dang-cool/sigi/releases/tag/v3.8.0

PR:             297449
Reported by:    J.R. Hill <justin at so.dang.cool> (maintainer)
Approved by:    osa, vvd (Mentors, implicit)
DeltaFile
+175-147deskutils/sigi/distinfo
+87-73deskutils/sigi/Makefile.crates
+4-6deskutils/sigi/Makefile
+266-2263 files

LLVM/project e6d992cllvm/lib/Target/AArch64 AArch64TargetTransformInfo.cpp, llvm/test/Analysis/CostModel/AArch64 min-max.ll

[AArch64] Adjust cost for min/max intrinsics using v2i8 and v2i16 (#212801)

When vectorizing min/max intrinsics with these types, using the changes
in #195823, the Type Promotion cost outweighs that of leaving the loop
as Scalar. The costs need to be adjusted to account for the promotion
costs to ensure loops of this kind will continue to be scalar.
DeltaFile
+16-16llvm/test/Analysis/CostModel/AArch64/min-max.ll
+8-0llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
+2-2llvm/test/Transforms/LoopVectorize/AArch64/intrinsiccost.ll
+26-183 files

LLVM/project b43a10allvm/lib/Target/RISCV RISCVISelLowering.cpp, llvm/test/CodeGen/RISCV/rvv zvdot4a8i-i64-sdnode.ll

Address comments: add more tests and do i32 reduction first

Created using spr 1.3.6-beta.1
DeltaFile
+677-28llvm/test/CodeGen/RISCV/rvv/zvdot4a8i-i64-sdnode.ll
+21-20llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+698-482 files

FreeBSD/ports b536a5cdevel/py-python-discovery Makefile distinfo

devel/py-python-discovery: Update to 1.5.2

ChangeLog:      https://github.com/tox-dev/python-discovery/releases/tag/1.5.2
Reported by:    Bernát Gábor <notifications at github.com>
DeltaFile
+3-3devel/py-python-discovery/distinfo
+1-1devel/py-python-discovery/Makefile
+4-42 files

LLVM/project 763d571llvm/lib/Transforms/Vectorize VPlanTransforms.cpp, llvm/test/Transforms/LoopVectorize/RISCV gather-scatter-cost.ll blocks-with-dead-instructions.ll

[LV] Convert scatter stores with constant stride into strided stores (#206896)

Following up on #147297, this patch converts scatter accesses with a
constant stride into strided stores within convertToStridedAccesses.

Fixed #206662
DeltaFile
+402-278llvm/test/Transforms/LoopVectorize/RISCV/interleaved-accesses.ll
+75-124llvm/test/Transforms/LoopVectorize/RISCV/strided-accesses.ll
+154-45llvm/test/Transforms/LoopVectorize/RISCV/tail-folding-interleave.ll
+35-63llvm/test/Transforms/LoopVectorize/RISCV/blocks-with-dead-instructions.ll
+49-32llvm/test/Transforms/LoopVectorize/RISCV/gather-scatter-cost.ll
+39-23llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+754-56510 files not shown
+832-67216 files

FreeBSD/ports 6e1c0dddevel/py-wheel Makefile distinfo

devel/py-wheel: Update to 0.48.0

ChangeLog:      https://github.com/pypa/wheel/releases/tag/0.48.0
Reported by:    "github-actions[bot]" <notifications at github.com>
DeltaFile
+3-3devel/py-wheel/distinfo
+2-2devel/py-wheel/Makefile
+5-52 files

FreeBSD/ports c2006adtextproc/oyo Makefile distinfo

textproc/oyo: Update to 0.1.57

ChangeLog:      https://github.com/ahkohd/oyo/releases/tag/v0.1.57
Reported by:    "github-actions[bot]" <notifications at github.com>
DeltaFile
+3-3textproc/oyo/distinfo
+1-1textproc/oyo/Makefile
+4-42 files

LLVM/project e73d92fllvm/test/Transforms/InferAddressSpaces/AMDGPU phi-cycle-uninitialized-addrspace.ll

add more test
DeltaFile
+121-0llvm/test/Transforms/InferAddressSpaces/AMDGPU/phi-cycle-uninitialized-addrspace.ll
+121-01 files

LLVM/project cf9a29bclang/test/SemaCXX function-type-qual.cpp

[Clang] Add tests for ref-qualified operator new (#215644)

This adds test coverage for ref-qualified operator new declarations.

Adds regression tests for lvalue (&) and rvalue (&&) ref qualifiers
mentioned in issue #102422.

Fixes #102422
DeltaFile
+8-1clang/test/SemaCXX/function-type-qual.cpp
+8-11 files

LLVM/project ef6a65ellvm/lib/Target/AArch64 AArch64ISelLowering.cpp, llvm/test/CodeGen/AArch64 sve2p2-vector-compress.ll sve-vector-compress.ll

[AArch64][SDAG] Enable +sve2p2/+sme2p2 lowerings for VECTOR_COMPRESS (#215219)

Enables the +sve2p2/+sme2p2 lowerings for `VECTOR_COMPRESS`, which
allows lowering the full range of legal types to `compact`.
DeltaFile
+270-114llvm/test/CodeGen/AArch64/sve-vector-compress.ll
+213-0llvm/test/CodeGen/AArch64/sve2p2-vector-compress.ll
+30-20llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
+513-1343 files

LLVM/project 562caf3llvm/lib/Transforms/Vectorize/SandboxVectorizer/Passes SeedCollection.cpp, llvm/test/Transforms/SandboxVectorizer/Passes/LoadStoreVec/AMDGPU seed_bundle_cross_erasure.ll

[SandboxVectorizer] Fix out-of-bounds SeedBundle access on cross-bundle erasure

SeedCollection::runOnFunction() indexed a SeedBundle at
Seeds.getFirstUnusedElementIdx() (and, separately, at a hardcoded 0) without
first checking whether the bundle was already fully used.
getFirstUnusedElementIdx() returns Seeds.size() -- one past the end -- once
everything is used, so indexing there reads out of bounds.

This was always a latent bug, but -sbvec-collect-seeds=stores,loads is what
actually exposes it: store and load seeds share one erase-instruction
callback (SeedContainer::erase()), so when vectorizing a store chain erases
a load it packed as an operand, that erase also marks the same load "used"
in its *independent* LoadSeeds bundle. Store seeds are processed first, so
by the time the outer loop reaches that LoadSeeds bundle, it can already be
fully consumed -- or, since cross-bundle erasure can mark any index used
(not just sequentially from the front), have its element 0 specifically
erased while other elements remain live, which broke the hardcoded Seeds[0]
address-space lookup the same way.


    [12 lines not shown]
DeltaFile
+25-0llvm/test/Transforms/SandboxVectorizer/Passes/LoadStoreVec/AMDGPU/seed_bundle_cross_erasure.ll
+5-2llvm/lib/Transforms/Vectorize/SandboxVectorizer/Passes/SeedCollection.cpp
+30-22 files

FreeBSD/ports c006796www/chromium/files patch-net_socket_udp__socket__posix.cc patch-chrome_browser_profiles_chrome__browser__main__extra__parts__profiles.cc

www/chromium: update to 151.0.7922.137

Security:       https://vuxml.freebsd.org/freebsd/a4e5cc5f-d4bc-4f67-ad8e-0f6a9e37064f.html
Security:       https://vuxml.freebsd.org/freebsd/8acd79a5-35ee-4076-b107-3550bbd7d118.html
DeltaFile
+233-0www/chromium/files/patch-media_base_audio__bus.h
+87-78www/chromium/files/patch-chrome_browser_about__flags.cc
+50-23www/chromium/files/patch-chrome_browser_chrome__content__browser__client.cc
+37-28www/chromium/files/patch-chrome_browser_profiles_chrome__browser__main__extra__parts__profiles.cc
+49-16www/chromium/files/patch-components_signin_public_base_signin__switches.cc
+55-8www/chromium/files/patch-net_socket_udp__socket__posix.cc
+511-153438 files not shown
+2,701-2,049444 files

FreeBSD/ports fca52cfsecurity/vuxml/vuln 2026.xml

security/vuxml: add www/*chromium < 151.0.7922.{108,137}

Obtained from:  https://chromereleases.googleblog.com/2026/08/stable-channel-update-for-desktop_01193673229.html
Obtained from:  https://chromereleases.googleblog.com/2026/08/stable-channel-update-for-desktop_01815628406.html
DeltaFile
+154-0security/vuxml/vuln/2026.xml
+154-01 files

NetBSD/pkgsrc j0Zf0JDdoc CHANGES-2026

   Updated textproc/py-Levenshtein, net/py-dnsdiag
VersionDeltaFile
1.5250+3-1doc/CHANGES-2026
+3-11 files

NetBSD/pkgsrc VDveYQknet/py-dnsdiag distinfo Makefile

   py-dnsdiag: updated to 2.9.4

   2.9.4

   Fixed

   fix: reset shutdown flag at the start of each CLI invocation
   fix(dnsping): validate source IP address family against -4/-6 flag
   fix(dnsping): fix variable shadowing and div-by-zero in stats
   fix(dnsping): reuse TCP connection for fixed source port queries
VersionDeltaFile
1.16+3-7net/py-dnsdiag/Makefile
1.13+4-4net/py-dnsdiag/distinfo
+7-112 files

NetBSD/pkgsrc 9gymNPSdoc TODO

   doc/TODO: + rumdl-0.2.55, wireshark-4.6.8.
VersionDeltaFile
1.27740+3-1doc/TODO
+3-11 files

NetBSD/pkgsrc YIBxhlgtextproc/py-Levenshtein Makefile distinfo

   py-Levenshtein: updated to 0.27.4

   0.27.4
   Added
   - add type hints for StringMatcher
VersionDeltaFile
1.18+4-4textproc/py-Levenshtein/distinfo
1.25+2-2textproc/py-Levenshtein/Makefile
+6-62 files

LLVM/project 5082803compiler-rt/test/builtins CMakeLists.txt, compiler-rt/test/builtins/Unit lit.cfg.py

[compiler-rt] Partially enable building compiler-rt unit tests for spirv64 target (#215717)

Currently, compilation/linking error will happen for all compiler-rt
builtin unit test when building them for spirv64 target, there are a
bunch of problem to resolve, this patch is the 1st one aiming to resolve
following 2 problems in building phase:
1. fatal error: error in backend:
SPV_EXT_relaxed_printf_string_address_space is required because printf
uses a format string not in constant address space.
2. -lc/-lm flags are not recognized by spirv64 toolchain.

For 1, unit tests are plain C source files and use printf, the format
string is a C-string which is not decorated by any address space, so
need to apply SPV_EXT_relaxed_printf_string_address_space to allow it
for spirv64.
For 2, spirv64 toolchain has not supported to use static archive
library, so this -lc/-lm is not accepted by clang. So, we need to use
bitcode libc in device compilation phase via -mlink-builtin-bitcode.
Currently, we only link libc since libm spirv64 library has not been

    [24 lines not shown]
DeltaFile
+21-1compiler-rt/test/builtins/Unit/lit.cfg.py
+3-0compiler-rt/test/builtins/CMakeLists.txt
+24-12 files

NetBSD/src dt7xyyBsys/dev/pci pciconf.c

   pciconf: Fix round-up logics for total sizes of bridge resources

   The previous ones are valid only if alignments are 4K or 1M,
   for I/O or memory, respectively.
VersionDeltaFile
1.58+6-6sys/dev/pci/pciconf.c
+6-61 files

LLVM/project 6dbb050llvm/lib/Target/LoongArch LoongArchISelLowering.cpp, llvm/test/CodeGen/LoongArch/lasx vec-extract-brcond.ll

[LoongArch] Fold shifted vector extract comparisons (#214204)

Fold comparisons of the form:

  (shl (extract_vector_elt X, I), GRLen - EleBits) ==/!= 0

into:

  (extract_vector_elt X, I) ==/!= 0

When the shift amount equals `GRLen - EleBits`, the left shift only
moves the extracted element into the most significant bits without
affecting whether the value is zero. This canonicalization exposes
EXTRACT_VECTOR_ELT to later combines and enables selecting VPICKVE2GR_*
instructions directly.
DeltaFile
+12-27llvm/test/CodeGen/LoongArch/lsx/vec-extract-brcond.ll
+12-27llvm/test/CodeGen/LoongArch/lasx/vec-extract-brcond.ll
+17-0llvm/lib/Target/LoongArch/LoongArchISelLowering.cpp
+41-543 files

LLVM/project 7ffe498clang/unittests/Frontend ASTUnitTest.cpp

[clang][test] Cache failed stats in a unit test (#215969)

I'd like to remove the possibility of disabling caching of failures in
`FileManager`, and this test is one of the few users of that feature.
There's no reason to disable failure caching in the `FileManager` here.
DeltaFile
+1-1clang/unittests/Frontend/ASTUnitTest.cpp
+1-11 files

NetBSD/src X7G74Mwsys/dev/pci pciconf.c

   pciconf: Fix alignments of device memory and I/O resources

   Resources must be their-size-aligned. While here:

   - Switch *align variable from int to more suitable integer types.
   - Make some conditions clearer (NFC).
VersionDeltaFile
1.57+19-22sys/dev/pci/pciconf.c
+19-221 files

NetBSD/pkgsrc g5OwRg3databases/py-duckdb Makefile

   py-duckdb: Pass CMAKE_BUILD_PARALLEL_LEVEL.

   Any package that uses py-scikit-build-core to build does not honour MAKE_JOBS.
   Some packages use make and so are single threaded, but some like duckdb use
   ninja, and that defaults to ncores+2(!) per build.

   On my 72-core build host, building 3 py-duckdb packages simultaneously, this is
   enough to completely swamp things and cause knock-on failures that effectively
   kill the bulk build.

   Ideally this needs to be done in a build.mk or similar for py-scikit-build-core
   but this gets us past this for now.
VersionDeltaFile
1.10+5-1databases/py-duckdb/Makefile
+5-11 files

LLVM/project 2e304ebbolt/lib/Target/RISCV RISCVMCPlusBuilder.cpp, bolt/test/RISCV conditional-tail-call.s

[BOLT][RISCV] Fix conditional tail call (#209474)

When BOLT encounters an external-reference branch,
`BinaryFunction::handleExternalReference()` first calls
`convertJmpToTailCall()`. The RISC-V implementation previously bailed
out with unsupported tail call opcode. As a result, conditional branches
targeting external symbols could not be converted into (conditional)
tail calls. This patch adds the RISC-V conditional-tail-call machinery.

[PR #160042](https://github.com/llvm/llvm-project/pull/160042)
explicitly adds every conditional branch opcode to
`convertJmpToTailCall().` That causes the instruction to first receive
the regular `kTailCall` annotation.

The implementation here instead returns false for conditional branches
because this is already the protocol expected by the generic BOLT code:

1. handleExternalReference() calls convertJmpToTailCall().
2. If it returns false, BOLT verifies that the instruction is a

    [6 lines not shown]
DeltaFile
+67-0bolt/test/RISCV/conditional-tail-call.s
+11-1bolt/lib/Target/RISCV/RISCVMCPlusBuilder.cpp
+78-12 files

LLVM/project 4871338flang/include/flang/Optimizer/CodeGen Target.h, flang/lib/Optimizer/CodeGen Target.cpp TargetRewrite.cpp

[flang][AArch64] Pass large BIND(C) VALUE derived types indirectly (#215508)

AAPCS64 "Parameter passing rules" B.4 states: "If the argument type is a
Composite Type that is larger than 16 bytes, then the argument is copied
to memory allocated by the caller and the argument is replaced by a
pointer to the copy." (see:
https://github.com/ARM-software/abi-aa/blob/main/aapcs64/aapcs64.rst#parameter-passing-rules)

Flang instead marked such an argument byval, which lets the target lower
it as a by-value aggregate placed in the argument stack area, so it
consumed no register. A C function that follows the standard expects a
pointer in that register, so the arguments no longer lined up and the
callee read the wrong value.

Add an indirect attribute to the argument marshalling and use it on
AArch64 for records that are too large to be passed in registers. Like
byval it makes the caller copy the value into a temporary and pass its
address, but it does not attach the byval attribute to the argument.
Records of 16 bytes or less, records passed on the stack because no

    [6 lines not shown]
DeltaFile
+57-0flang/test/Fir/struct-passing-aarch64-indirect.fir
+21-17flang/lib/Optimizer/CodeGen/TargetRewrite.cpp
+29-3flang/lib/Optimizer/CodeGen/Target.cpp
+12-2flang/include/flang/Optimizer/CodeGen/Target.h
+12-1flang/test/Fir/struct-passing-aarch64-byval.fir
+131-235 files

LLVM/project 22b2db5llvm/lib/Target/X86/GISel X86RegisterBankInfo.cpp, llvm/test/CodeGen/X86/GlobalISel x87-store-of-fp-load.ll

[X86][GlobalISel] Map a store of an FP-banked load to the FP bank (#215371)

`G_LOAD` and `G_STORE` didn't agree when to select the FP regbank, which
inserted a PSR -> GPR copy, hitting a "FP register expected" assertion.

Apply the load's rule in the store case as well so the two agree.

Co-authored-by: Claude (Claude-Opus-5) <noreply at anthropic.com>
DeltaFile
+39-0llvm/test/CodeGen/X86/GlobalISel/x87-store-of-fp-load.ll
+7-0llvm/lib/Target/X86/GISel/X86RegisterBankInfo.cpp
+46-02 files

OpenBSD/ports GhL7T5ydevel/meson meson.port.mk Makefile, devel/meson/patches patch-mesonbuild_build_py patch-mesonbuild_linkers_linkers_py

   Update to meson-1.12.0.

   Remove upstream change that passes fatal-warnings flag to the linker as this
   would break half of the ports tree due to our:
   warning: str*() is almost always misused, please use strl*()
   becoming an error.
VersionDeltaFile
1.1+25-0devel/meson/patches/patch-mesonbuild_linkers_linkers_py
1.67+7-6devel/meson/patches/patch-mesonbuild_build_py
1.110+2-2devel/meson/distinfo
1.48+3-0devel/meson/pkg/PLIST
1.124+1-1devel/meson/meson.port.mk
1.163+1-1devel/meson/Makefile
+39-106 files

LLVM/project ee72f1dorc-rt/lib/executor/sps-ci AllSPSCI.cpp

[orc-rt] Update orc_rt::sps_ci::addAll to include new SPS CI. (#215973)

sps_ci::addAll should add all SPS CI (Controller Interface) symbols to
the given map.

Update it to include recently added SPS CI (Calls, GDBJITRegistrar,
MemoryAccess, NativeDylibManager, and
StandaloneMachOUnwindInfoRegistrar)
DeltaFile
+11-1orc-rt/lib/executor/sps-ci/AllSPSCI.cpp
+11-11 files

LLVM/project 8fe4462llvm/test/CodeGen/AMDGPU flat-atomicrmw-fmin.ll flat-atomicrmw-fmax.ll, llvm/test/CodeGen/RISCV/GlobalISel atomicrmw-max-min-umax-umin.ll

Merge branch 'main' into users/aokblast/libcxx/speedup_stdinbuf_xsgetn
DeltaFile
+9,385-9,006llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+13,068-0llvm/test/CodeGen/RISCV/GlobalISel/atomicrmw-max-min-umax-umin.ll
+5,575-5,393llvm/test/CodeGen/AMDGPU/maximumnum.ll
+5,454-5,259llvm/test/CodeGen/AMDGPU/minimumnum.ll
+4,720-5,590llvm/test/CodeGen/AMDGPU/flat-atomicrmw-fmin.ll
+4,720-5,590llvm/test/CodeGen/AMDGPU/flat-atomicrmw-fmax.ll
+42,922-30,83812,442 files not shown
+715,769-479,54412,448 files

LLVM/project 0a4db0flibcxx/src std_stream.h

fixup! [libcxx] Speed up xsgetn for always_noconv
DeltaFile
+13-15libcxx/src/std_stream.h
+13-151 files