FreeBSD/ports fca8d6bdevel/py-ty Makefile Makefile.crates

devel/py-ty: Update to 0.0.71

Changelog: https://github.com/astral-sh/ty/blob/0.0.71/CHANGELOG.md

Reported by:    Repology
DeltaFile
+17-17devel/py-ty/distinfo
+7-7devel/py-ty/Makefile.crates
+1-1devel/py-ty/Makefile
+25-253 files

LLVM/project 3d3c042clang/lib/CIR/CodeGen CIRGenExprScalar.cpp, clang/test/CIR/CodeGen fp-contract-on-pragma.cpp fp-contract.c

[CIR][CodeGen] Emit cir.fmuladd for FP-contracted mul+add/sub (#215382)

Ports the FP-contraction fusion from classic CodeGen (`tryEmitFMulAdd` /
`buildFMulAdd`) to CIRGen. Under `-ffp-contract=on / fast`, `a * b + c`
and `a * b - c` fuse into `cir.fmuladd` (with the addend negated for the sub
form) instead of separate `cir.fmul` + `cir.fadd/fsub`.

---------

Co-authored-by: Claude Opus 4.8 (1M context) <noreply at anthropic.com>
DeltaFile
+215-0clang/test/CIR/CodeGen/fp-contract-pragma.cpp
+143-0clang/test/CIR/CodeGen/fp-contract.c
+122-0clang/test/CIR/CodeGen/fp-contract-on-pragma.cpp
+96-0clang/lib/CIR/CodeGen/CIRGenExprScalar.cpp
+576-04 files

FreeBSD/src 6c41d92sys/net/route route_tables.c

routing: Fix table sizes

Tables that have one element per protocol or address family were
previously sized by AF_MAX + 1 since AF_MAX was off by one.  Now that
AF_MAX has been corrected, we need to apply the opposite correction to
these tables.

Fixes:          ddd850aa7720 ("sys/socket.h: Fix AF_MAX")
MFC after:      3 days
Sponsored by:   Klara, Inc.
Sponsored by:   NetApp, Inc.
Reviewed by:    pouria, kevans, glebius
Differential Revision:  https://reviews.freebsd.org/D58826
DeltaFile
+9-9sys/net/route/route_tables.c
+9-91 files

FreeBSD/src 79a6ad6lib/libifconfig libifconfig_internal.h

libifconfig: Fix table size

Tables that have one element per protocol or address family were
previously sized by AF_MAX + 1 since AF_MAX was off by one.  Now that
AF_MAX has been corrected, we need to apply the opposite correction to
these tables.

Fixes:          ddd850aa7720 ("sys/socket.h: Fix AF_MAX")
MFC after:      3 days
Sponsored by:   Klara, Inc.
Sponsored by:   NetApp, Inc.
Reviewed by:    kevans
Differential Revision:  https://reviews.freebsd.org/D58827
DeltaFile
+1-1lib/libifconfig/libifconfig_internal.h
+1-11 files

FreeBSD/ports b983828textproc/ov Makefile, textproc/peco Makefile

various: Bump go ports for go-1.25.13 / 1.26.6
DeltaFile
+1-1textproc/sttr/Makefile
+1-1textproc/sift/Makefile
+1-1textproc/qo/Makefile
+1-1textproc/pup/Makefile
+1-1textproc/peco/Makefile
+1-1textproc/ov/Makefile
+6-6799 files not shown
+805-783805 files

NetBSD/src dPtyW9tsys/dev/pci pciconf.c

   pciconf: Sort resource windows in order of decreasing alignment

   instead of size.

   Consider pci0 has two ppb's. ppb0 has a memory window larger in
   size, but smaller in alignment. ppb1 has one smaller in size, but
   larger in alignment.

   In this case, the memory window of ppb1 must be allocated earlier.
   Otherwise, total size of required memory exceeds pci0's mem_total,
   in general, due to padding region.
VersionDeltaFile
1.59+13-13sys/dev/pci/pciconf.c
+13-131 files

FreeBSD/ports 6d39dcfx11/nwg-dock Makefile, x11/nwg-drawer Makefile

various: Bump go ports for go-1.25.13 / 1.26.6
DeltaFile
+1-1x11/waveterm/Makefile
+1-1x11/wallutils/Makefile
+1-1x11/nwg-menu/Makefile
+1-1x11/nwg-look/Makefile
+1-1x11/nwg-drawer/Makefile
+1-1x11/nwg-dock/Makefile
+6-6809 files not shown
+815-657815 files

NetBSD/pkgsrc qy3Wzrjdevel/guile30-slib Makefile Makefile.common

   devel/guile30-slib: Split most into Makefile.common

   As CSE across guile*-slib, not yet accomplished.
   Builds as well as it did before.
VersionDeltaFile
1.1+54-0devel/guile30-slib/Makefile.common
1.4+4-36devel/guile30-slib/Makefile
+58-362 files

LLVM/project 1200fe6mlir/lib/Dialect/XeGPU/Transforms XeGPUSgToLaneDistribute.cpp, mlir/test/Dialect/XeGPU sg-to-lane-distribute-unit.mlir

[mlir][xegpu] Lower lane_data repack convert_layout to lane_shuffle (#210837)

Extend the SgToLaneConvertLayout pattern to lower a convert_layout that
only repacks lane_data between round-robin and contiguous form (keeping
lane_layout and order unchanged) into xegpu.lane_shuffle. Each lane
keeps the same elements and total bits along the repacked dimension, but
their assignment to lanes changes, so the data is moved across lanes
with a bit-preserving bitcast_shuffle.

assisted-by-claude

---------

Co-authored-by: Claude Opus 4.8 (1M context) <noreply at anthropic.com>
DeltaFile
+141-0mlir/lib/Dialect/XeGPU/Transforms/XeGPUSgToLaneDistribute.cpp
+81-0mlir/test/Dialect/XeGPU/sg-to-lane-distribute-unit.mlir
+222-02 files

LLVM/project cd3f38blldb/source/Target Process.cpp

[lldb][NFC] Remove throwaway variable in conditional expr (#216204)
DeltaFile
+2-2lldb/source/Target/Process.cpp
+2-21 files

LLVM/project a73c52bmlir/lib/Dialect/XeGPU/Transforms XeGPUWgToSgDistribute.cpp, mlir/test/Dialect/XeGPU xegpu-wg-to-sg.mlir

[mlir][XeGPU] Distribute create_nd_tdesc/load/store with SliceAttr layout (#216104)

## Summary
- `WgToSgCreateNdOp` and `XeGPUWgToSgDistributePass`'s dynamic legality
check only matched `xegpu::LayoutAttr` on a tensor_desc's layout, not
`xegpu::SliceAttr` (also a `DistributeLayoutAttr`).
- A tensor_desc feeding a unit-dim-expanding `vector.shape_cast` carries
a `SliceAttr`, so such `create_nd_tdesc`/`load_nd` ops were left
undistributed while their consumers were already converted to subgroup
shape, causing a `vector.shape_cast` element-count mismatch.
- Match on `DistributeLayoutAttr` instead, consistent with the rest of
the pass (`getSgShapeAndCount`, `genOffsetsList`, etc.).

## Test plan
- [x] Added a regression test to `xegpu-wg-to-sg.mlir`:
`create_nd_tdesc`/`load_nd` with a `SliceAttr` layout feeding
`shape_cast` (expand) → `arith.addf` → `shape_cast` (collapse) →
`store_nd`.
- [x] Verified the new test fails on `main` with the reported error and
passes with this fix.
DeltaFile
+15-0mlir/test/Dialect/XeGPU/xegpu-wg-to-sg.mlir
+3-3mlir/lib/Dialect/XeGPU/Transforms/XeGPUWgToSgDistribute.cpp
+18-32 files

FreeBSD/src 19a1025usr.sbin/pkg FreeBSD.conf.quarterly-release

Remove minor version from kmods repo

We don't have a kmods_quarterly_5 repo for releng/14.5 so don't point
users at it.

Direct commit to releng/14.5, hopefully to be reverted once the repo
exists.

Approved by:    re (cperciva)
Sponsored by:   OpenSats Initiative
DeltaFile
+1-1usr.sbin/pkg/FreeBSD.conf.quarterly-release
+1-11 files

FreeBSD/ports 1140bb0mail/py-resend Makefile distinfo

mail/py-resend: Update to 2.36.0

Changelog: https://github.com/resend/resend-python/releases/tag/v2.36.0

Reported by:    Repology
DeltaFile
+3-3mail/py-resend/distinfo
+1-1mail/py-resend/Makefile
+4-42 files

HardenedBSD/src e03727bsys/kern uipc_usrreq.c, tests/sys/kern unix_connectat.c

Merge remote-tracking branch 'rad/hardened/current/master' into hardened/current/pledge
DeltaFile
+41-4tools/tools/git/git-arc.sh
+34-0tests/sys/kern/unix_connectat.c
+22-1tools/tools/git/git-arc.1
+1-1sys/kern/uipc_usrreq.c
+98-64 files

HardenedBSD/src e6379fesys/kern uipc_usrreq.c, tests/sys/kern unix_connectat.c

Merge branch 'freebsd/current/main' into hardened/current/master
DeltaFile
+41-4tools/tools/git/git-arc.sh
+34-0tests/sys/kern/unix_connectat.c
+22-1tools/tools/git/git-arc.1
+1-1sys/kern/uipc_usrreq.c
+98-64 files

HardenedBSD/ports 6399581databases/mysql-shell Makefile pkg-plist, editors/vim-classic pkg-plist Makefile

Merge branch 'freebsd/main' into hardenedbsd/main
DeltaFile
+1,657-0databases/mysql-shell/pkg-plist
+285-0editors/vim-classic/files/vietnamese_viscii.vim
+241-0editors/vim-classic/Makefile
+137-0editors/vim-classic/pkg-plist
+128-0www/nginx-module-lua/pkg-plist
+61-0databases/mysql-shell/Makefile
+2,509-083 files not shown
+3,109-17789 files

FreeBSD/src 8bca5d0sys/conf newvers.sh

14.5: Update to BETA2

Approved by:    re (implicit)
Sponsored by:   OpenSats Initiative
DeltaFile
+1-1sys/conf/newvers.sh
+1-11 files

LLVM/project 14d7ff4llvm/include/llvm/ExecutionEngine/Orc/Debugging DebuggerSupportPlugin.h, llvm/include/llvm/ExecutionEngine/Orc/Shared OrcRTBridge.h

[ORC] Align GDB-JIT alloc-action names with the ORC runtime (#216024)

Align LLVM's GDB-JIT registration alloc-action names with the names
added to the ORC runtime in 4a0fdbc25bb, and add a name for the
deregistration action.

Look these names up in the Bootstrap JITDylib rather than the Process
JITDylib. Since the lookup no longer depends on process symbols, drop
the "requires process symbols" preconditions guarding MachO debugger
support in llvm-jitlink and enableDebuggerSupport.
GDBJITDebugInfoRegistrationPlugin::Create also loses its Triple
parameter, which is now unused.

Together this lets GDBJITDebugInfoRegistrationPlugin work against either
the LLVM OrcTargetProcess or ORC runtime implementation of these
actions.
DeltaFile
+4-7llvm/lib/ExecutionEngine/Orc/Debugging/DebuggerSupportPlugin.cpp
+2-7llvm/lib/ExecutionEngine/Orc/Debugging/DebuggerSupport.cpp
+1-6llvm/tools/llvm-jitlink/llvm-jitlink.cpp
+3-1llvm/lib/ExecutionEngine/Orc/Shared/OrcRTBridge.cpp
+1-1llvm/include/llvm/ExecutionEngine/Orc/Debugging/DebuggerSupportPlugin.h
+1-0llvm/include/llvm/ExecutionEngine/Orc/Shared/OrcRTBridge.h
+12-226 files

FreeBSD/doc c0e54b3shared releases.adoc, website/content/en where.adoc

where: stable/14 is now 14.5-STABLE

Sponsored by:   OpenSats Initiative
DeltaFile
+12-0shared/releases.adoc
+3-3website/content/en/where.adoc
+15-32 files

FreeBSD/doc aee8aa9website/static/security errata-template.txt advisory-template.txt

SA/EN templates: stable/14 is now 14.5-STABLE

Sponsored by:   OpenSats Initiative
DeltaFile
+1-1website/static/security/errata-template.txt
+1-1website/static/security/advisory-template.txt
+2-22 files

LLVM/project d2f67bclldb/source/Core DynamicLoader.cpp, lldb/source/Plugins/ObjectFile/Mach-O ObjectFileMachO.cpp

Address Jason's feedback
DeltaFile
+6-4lldb/source/Core/DynamicLoader.cpp
+3-2lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
+9-62 files

LLVM/project 6e4ba0alldb/include/lldb/Symbol SymbolLocator.h, lldb/source/Core DynamicLoader.cpp

[lldb] Search for a corefile's images before loading any of them

A userland or kernel corefile can list hundreds of images, and searching for
one can shell out to a symbol server or fetch over the network. Searching for
them one at a time is where loading such a corefile spends its time.

Add a batch form of SymbolLocator::Locate that runs the searches on the
debugger's thread pool, gated on target.parallel-module-load. Results come
back in the order the requests were given, since that order decides the
Target's module order. Only the results are ordered, and anything a search
reports to the user arrives in whatever order the searches finish in.

Only the plugin searches run concurrently, so a platform hook does not have to
be thread safe to take part, and reading a binary's UUID out of memory stays
on the calling thread.

Setting up a platform binary can replace the Target's platform and dynamic
loader, and now happens for every image before any of them is searched for, so
the platform a corefile asks for is the one all of its images are searched

    [4 lines not shown]
DeltaFile
+141-4lldb/unittests/Symbol/SymbolLocatorTest.cpp
+78-63lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
+76-11lldb/source/Symbol/SymbolLocator.cpp
+32-20lldb/source/Core/DynamicLoader.cpp
+25-0lldb/test/API/macosx/lc-note/multiple-binary-corefile/TestMultipleBinaryCorefile.py
+19-0lldb/include/lldb/Symbol/SymbolLocator.h
+371-986 files

LLVM/project d1e68bellvm/include/llvm/DWARFLinker AddressesMap.h, llvm/lib/DWARFLinker/Classic DWARFLinker.cpp

[DWARFLinker] Constrain a function's high_pc to its own symbol

Mach-O objects built with .subsections_via_symbols make every symbol an
independently placeable atom, and the linker packs atoms without
preserving the spacing they had in the object file.

I have an example where the compiler describes such a subprogram as
extending past its own atom. While it's debatable whether that's a good
idea, it's not invalid in the object file. However, once linked, it is
invalid.

We can make dsymutil resilient against this by looking at the size of
the symbol in the debug map and adjusting the end_pc. I'm doing so
conservatively so that only a collision is repaired. Already
overlapping/invalid ranges remain untouched.

rdar://184768778
DeltaFile
+76-0llvm/test/tools/dsymutil/Inputs/subprogram-high-pc-past-symbol.s
+72-0llvm/test/tools/dsymutil/Inputs/subprogram-high-pc-past-symbol-dwarf2.s
+57-0llvm/test/tools/dsymutil/subprogram-high-pc-past-symbol.test
+33-8llvm/include/llvm/DWARFLinker/AddressesMap.h
+25-6llvm/tools/dsymutil/DwarfLinkerForBinary.h
+21-2llvm/lib/DWARFLinker/Classic/DWARFLinker.cpp
+284-162 files not shown
+309-208 files

LLVM/project 292670aclang/include/clang/CIR/Dialect/IR CIRAttrs.td, clang/lib/CIR/CodeGen CIRGenExprConstant.cpp

[CIR] Handle label address difference (#205437)

This change adds handling for emitting AddrLabelDiff constants. These
constants can be used to initialize static variables within a function
by computing the difference between the addresses of two labels. These
constant values are represented in the AST using the APValue class. The
code generator needs to emit them as initializers for the global
corresponding to the static variable.

This change introduces a new CIR attribute type, BlockAddrDiffAttr to
represent this constant value, deferring the label block address
resolution until we lower the initializer to the LLVM dialect.

Assisted-by: Cursor / claude-opus-4.8
DeltaFile
+96-0clang/test/CIR/CodeGen/const-label-addr.c
+64-9clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.cpp
+47-0clang/include/clang/CIR/Dialect/IR/CIRAttrs.td
+24-0clang/lib/CIR/Lowering/LoweringHelpers.cpp
+17-3clang/lib/CIR/CodeGen/CIRGenExprConstant.cpp
+5-4clang/lib/CIR/Dialect/IR/CIRDialect.cpp
+253-161 files not shown
+261-167 files

LLVM/project 23ca09cclang/include/clang/CIR/Dialect/Analysis CIRBasicAliasAnalysis.h, clang/lib/CIR/Dialect/Analysis CIRBasicAliasAnalysis.cpp

[CIR] Implement CIRBasicAliasAnalysis::getUnderlyingObject (#215683)

This implements the CIRBasicAliasAnalysis::getUnderlyingObject to follow
casts, pointer strides, array element, and struct member accesses back
to the underlying alloca operation if the operation does not introduce
an offset from the original pointer operand.

This still conservatively returns MayAlias for any comparison involving
a pointer with a non-zero offset from its base alloca address. We could
go further, calculating the offset and determining non-alias or partial
alias from offset pointers, but that is deferred until a future PR.

Assisted-by: Claude / Sonnet-4.6
DeltaFile
+305-0clang/test/CIR/Analysis/alias-analysis-underlying-object.cir
+120-13clang/lib/CIR/Dialect/Analysis/CIRBasicAliasAnalysis.cpp
+14-3clang/include/clang/CIR/Dialect/Analysis/CIRBasicAliasAnalysis.h
+439-163 files

LLVM/project 26548a2llvm/test/CodeGen/AMDGPU rewrite-vgpr-mfma-to-agpr-spill-joint-dom.ll rewrite-vgpr-mfma-to-agpr-spill-joint-dom-mir.mir

Added review suggestion: moved RUN lines to new triple format.
DeltaFile
+1-1llvm/test/CodeGen/AMDGPU/rewrite-vgpr-mfma-to-agpr-spill-joint-dom.ll
+1-1llvm/test/CodeGen/AMDGPU/rewrite-vgpr-mfma-to-agpr-spill-joint-dom-mir.mir
+2-22 files

HardenedBSD/ports 48bf782multimedia/vlc Makefile

multimedia/vlc: Chase net/liveMedia shlib bumps
DeltaFile
+1-0multimedia/vlc/Makefile
+1-01 files

FreeBSD/ports 48bf782multimedia/vlc Makefile

multimedia/vlc: Chase net/liveMedia shlib bumps
DeltaFile
+1-0multimedia/vlc/Makefile
+1-01 files

LLVM/project b632805lldb/source/Core DynamicLoader.cpp, lldb/source/Plugins/ObjectFile/Mach-O ObjectFileMachO.cpp

Address Jason's feedback
DeltaFile
+6-4lldb/source/Core/DynamicLoader.cpp
+3-2lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
+9-62 files

FreeBSD/src c33f8ddlib/libifconfig libifconfig_internal.c libifconfig.c, sys/net rtsock.c

Revert "sys/socket.h: Fix AF_MAX"

Back out this change for 14.5-BETA2.  It might come back with
changes, but in its current form it breaks ABI.

This reverts commit f77a60a27ad64e3acf26f3dc088c6e80fdd15754.

Approved by:    re (cperciva)
DeltaFile
+3-3sys/netlink/route/rt.c
+1-3sys/sys/socket.h
+2-2sys/net/rtsock.c
+2-2sys/net/route/route_helpers.c
+2-2lib/libifconfig/libifconfig.c
+1-1lib/libifconfig/libifconfig_internal.c
+11-133 files not shown
+14-169 files