LLVM/project d87d79cllvm/test/Transforms/SLPVectorizer/AArch64 splat-gather-subtree-drop-schedule.ll splat-gather-subtree-trim-revert-cost.ll

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+58-0llvm/test/Transforms/SLPVectorizer/AArch64/splat-gather-subtree-trim-revert-cost.ll
+46-0llvm/test/Transforms/SLPVectorizer/AArch64/splat-gather-subtree-drop-schedule.ll
+104-02 files

LLVM/project 5fae412utils/bazel/llvm-project-overlay/libc BUILD.bazel

Revert "[libc][bazel] Expose public inline memory headers and generic/builtin…"

This reverts commit 6e551ef78bd85e71f364f890b245061d394d66a8.
DeltaFile
+8-9utils/bazel/llvm-project-overlay/libc/BUILD.bazel
+8-91 files

FreeBSD/ports b98a1a6sysutils/loaders-update Makefile

sysutils/loaders-update: specify aarch64 instead of arm64

PR:     298602
Approved by:    Emrion <kmachine@...>
DeltaFile
+1-1sysutils/loaders-update/Makefile
+1-11 files

LLVM/project 98039dalibcxx/cmake config-ix.cmake

[libcxx][libc] Update LLVM-libc link list (#224164)

LLVM-libc provides all the libc functions in `libc.a` and `libm.a`, so
this PR adds the configuration flags that prevent linking
`libpthread.a` and `librt.a` (inside `libc.a`) and `libatomic.a` (inside
compiler-rt).

Assisted-by: Automated tooling, human reviewed.
DeltaFile
+4-0libcxx/cmake/config-ix.cmake
+4-01 files

LLVM/project 24f7536.github/workflows libcxx-pr-benchmark.yml libcxx-benchmark-commit.yml, libcxx/utils/ci/lnt machines.json

[libc++] Automatically detect the OS in benchmark jobs (#224386)

This simplifies the machines.json definition: we don't have to
explicitly say what OS we're running on, the job just figures it out.
DeltaFile
+3-3.github/workflows/libcxx-pr-benchmark.yml
+3-3.github/workflows/libcxx-benchmark-commit.yml
+0-3libcxx/utils/ci/lnt/machines.json
+6-93 files

FreeNAS/freenas c9bc0b4src/middlewared/middlewared/plugins/truenas_s3 __init__.py

NAS-143860 / 26.0.0-RC.1 / Restart the S3 service when the license changes (by anodos325) (#19790)

The S3 daemon asks truenas.entitlements.check for S3_VERSIONING and
S3_AUDIT once, before it registers a bucket, and holds the answer for
the life of the process. A reload re-reads its files and not the license
-- by design, so every registration-consumed fact arrives the same way,
a restart. Nothing performed that restart: no system.post_license_update
subscriber reached the service, and the license reconcile pass carried
no S3 delegate.

So a revoked versioning entitlement went on minting versions until
someone restarted the service by hand, and -- the direction that reaches
a customer -- a granted one left every object-lock bucket the daemon had
excluded at start answering 503 after the license that would serve it
was installed.

Register a RESTART delegate for the service, ordered after the user
delegate since the credentials file the restart renders resolves every
access key through NSS. It runs only while the service is up: RESTART

    [5 lines not shown]
DeltaFile
+38-2src/middlewared/middlewared/plugins/truenas_s3/__init__.py
+38-21 files

LLVM/project 2e055b8llvm/lib/Target/Hexagon HexagonTargetTransformInfo.h HexagonTargetTransformInfo.cpp, llvm/test/CodeGen/Hexagon hmx-attr-inline-compat.ll hmx-attr-no-autohvx.ll

[hexagon] Add `hexagon_hmx` function attribute. (#222340)

- [x] Add `hexagon_hmx` function attribute to be used to annotate hmx
functions.
- [x] Add logic to prevent hmx functions being inlined into hvx
functions to avoid unintended accidental vectorization.
DeltaFile
+59-0llvm/test/CodeGen/Hexagon/hmx-attr-no-autohvx.ll
+41-0llvm/test/CodeGen/Hexagon/hmx-attr-inline-compat.ll
+20-1llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.cpp
+9-2llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.h
+129-34 files

FreeBSD/ports f1eb0b2devel/py-virtualenv Makefile distinfo

devel/py-virtualenv: Update to 21.7.11

ChangeLog:

1. https://github.com/pypa/virtualenv/releases/tag/21.7.11

Reported by:    "github-actions[bot]" <notifications at github.com>
DeltaFile
+3-3devel/py-virtualenv/distinfo
+1-1devel/py-virtualenv/Makefile
+4-42 files

LLVM/project e5801a2clang/include/clang/Basic SourceLocation.h

Revert "Mix bits in FileID::getHashValue() (#223794)" (#224394)

This reverts commit 9bc655d2852ec31199f2dba25d6f0749953fbe51.

It broke a couple of tests in clang/test/Analysis/html_diagnostics.
DeltaFile
+1-4clang/include/clang/Basic/SourceLocation.h
+1-41 files

LLVM/project aba79e6flang/lib/Optimizer/OpenMP MapInfoFinalization.cpp, flang/test/Lower/OpenMP use-device-addr-performance.f90

[Flang][OpenMP] Improve use_device_addr code generation (#221265)

Currently, the `use_device_addr` implementation reuses the standard
mapping mechanism, which is suboptimal for code like:

```
SUBROUTINE device_addr_func(x)
    INTEGER, TARGET, INTENT(IN)    :: x(:)
    !$omp target data use_device_addr (x)
        CALL bar_offload(c_loc(x))
```

For such code, Flang maps the temporary descriptor for the x array to
the GPU. This unnecessary mapping is time-consuming and can be a large
bottleneck for Fortran-to-C function wrappers that use `use_device_addr`
to pass a C pointer for offload code.

For `use_device_addr`, we only need to update the base address in the
descriptor that is used inside `use_device_addr`. This is cheaper than

    [11 lines not shown]
DeltaFile
+254-33flang/lib/Optimizer/OpenMP/MapInfoFinalization.cpp
+76-0flang/test/Lower/OpenMP/use-device-addr-performance.f90
+41-0offload/test/offloading/fortran/target-use-device-addr-opt.f90
+7-0offload/libomptarget/interface.cpp
+4-0offload/include/omptarget.h
+1-0offload/libomptarget/exports
+383-336 files

LLVM/project 4572ecellvm/lib/Target/AMDGPU GCNSchedStrategy.cpp, llvm/test/CodeGen/AMDGPU sched_mfma_rewrite_tied.mir

[AMDGPU] Have rewrite candidate defer to cost model for tied operands

RewriteMFMAFormStage::isRewriteCandidate rejects any MFMA whose result
has a non-MFMA, non-copy user, because such a user forces an unavoidable
AGPR->VGPR bridge copy. While that is reasonable for the untied form, it
is too coarse for the tied form.

In the tied form the destination and src2 are the same register, so a
single vreg spans the entire accumulator chain:

%acc = V_MFMA_F32_32X32X8F16_mac_vgprcd_e64 %a, %b, %acc
%acc = V_MFMA_F32_32X32X8F16_mac_vgprcd_e64 %a, %b, %acc
...
%acc = V_MFMA_F32_32X32X8F16_mac_vgprcd_e64 %a, %b, %acc
%cvt:vgpr_32 = V_CVT_PK_BF16_F32_e64 %acc.sub0

%acc's use list contains the V_CVT, so isRewriteCandidate returns false
for all the MFMAs, though the result of only the last one reaches the
consumer. For a similar dataflow in untied form, only the last one is

    [6 lines not shown]
DeltaFile
+220-0llvm/test/CodeGen/AMDGPU/sched_mfma_rewrite_tied.mir
+6-0llvm/lib/Target/AMDGPU/GCNSchedStrategy.cpp
+226-02 files

FreeBSD/ports bd51446devel/papi Makefile pkg-plist, devel/papi/files patch-zero_attach.c patch-mutiattach2.c

devel/papi: update to 7.2.0, un-expire

Most patches are from the PR, minor changes from me:
- update to final 7.2.0 version
- update MASTER_SITES and WWW
- shebang for python:env

PR:             284575
Approved by:    maintainer timeout (never replied)
MFH:            2026Q3
DeltaFile
+136-101devel/papi/pkg-plist
+89-7devel/papi/files/patch-configure
+70-0devel/papi/files/patch-mutiattach.c
+38-0devel/papi/files/patch-zero_attach.c
+38-0devel/papi/files/patch-mutiattach2.c
+13-18devel/papi/Makefile
+384-1263 files not shown
+427-1289 files

Illumos/gate ee74a12usr/src/boot/common multiboot2.c, usr/src/boot/i386/libi386 vbe.c

18451 loader mb2 indexed color setup is buggy
Reviewed by: Andy Fiddaman <illumos at fiddaman.net>
Approved by: Dan McDonald <danmcd at oxide.computer>
DeltaFile
+13-17usr/src/boot/common/multiboot2.c
+1-0usr/src/boot/i386/libi386/vbe.c
+14-172 files

FreeBSD/src 8a8c144contrib/llvm-project/libunwind/src CompactUnwinder.hpp

Merge commit 1f332ae4f1b3 from llvm-project (by Alexander Kornienko):

  Fix -Wformat diagnostic after #190965 (#193704)

  Fixes libunwind compiler diagnostic when building with clang after
  034d4dcad6396d1241e8262e69871b8d61da7e4f:
  ```
  In file included from libunwind/src/libunwind.cpp:31:
  In file included from libunwind/src/UnwindCursor.hpp:52:
  libunwind/src/CompactUnwinder.hpp:339:46: error: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Werror,-Wformat]
    338 |                            "function starting at 0x%llX",
        |                                                    ~~~~
        |                                                    %lX
    339 |                             compactEncoding, functionStart);
        |                                              ^~~~~~~~~~~~~
  libunwind/src/config.h:215:63: note: expanded from macro '_LIBUNWIND_DEBUG_LOG'
    215 |   #define _LIBUNWIND_DEBUG_LOG(msg, ...)  _LIBUNWIND_LOG(msg, __VA_ARGS__)
        |                                                          ~~~  ^~~~~~~~~~~
  libunwind/src/config.h:181:45: note: expanded from macro '_LIBUNWIND_LOG'

    [21 lines not shown]
DeltaFile
+5-4contrib/llvm-project/libunwind/src/CompactUnwinder.hpp
+5-41 files

FreeBSD/src bcd0d76sys/conf kern.mk

kern.mk: make clang 23 -Wunused-but-set-global non-fatal

This warning triggers in a few places in contributed code, and would
therefore be annoying to fix. Use -Wno-error= to at least show the
warnings so there is some incentive to submit them upstream.

MFC after:      3 days
DeltaFile
+3-0sys/conf/kern.mk
+3-01 files

FreeBSD/src d577b4eshare/mk bsd.sys.mk

bsd.sys.mk: make clang 23 -Wunused-but-set-global non-fatal

This warning triggers in a few places in contributed code, and would
therefore be annoying to fix. Use -Wno-error= to at least show the
warnings so there is some incentive to submit them upstream.

MFC after:      3 days
DeltaFile
+3-0share/mk/bsd.sys.mk
+3-01 files

FreeNAS/freenas 7a743d3src/middlewared/middlewared/plugins/truenas_s3 __init__.py

NAS-143860 / 26.0.0 / Restart the S3 service when the license changes (by anodos325) (#19789)

The S3 daemon asks truenas.entitlements.check for S3_VERSIONING and
S3_AUDIT once, before it registers a bucket, and holds the answer for
the life of the process. A reload re-reads its files and not the license
-- by design, so every registration-consumed fact arrives the same way,
a restart. Nothing performed that restart: no system.post_license_update
subscriber reached the service, and the license reconcile pass carried
no S3 delegate.

So a revoked versioning entitlement went on minting versions until
someone restarted the service by hand, and -- the direction that reaches
a customer -- a granted one left every object-lock bucket the daemon had
excluded at start answering 503 after the license that would serve it
was installed.

Register a RESTART delegate for the service, ordered after the user
delegate since the credentials file the restart renders resolves every
access key through NSS. It runs only while the service is up: RESTART

    [5 lines not shown]
DeltaFile
+38-2src/middlewared/middlewared/plugins/truenas_s3/__init__.py
+38-21 files

Illumos/gate 506d38dusr/src/uts/common/io/vioif vioif.c

18420 vioif relies on the device's initial receive filtering mode
Reviewed by: Bill Sommerfeld <sommerfeld at hamachi.org>
Reviewed by: Jason King <jason.brian.king+illumos at gmail.com>
Approved by: Dan McDonald <danmcd at oxide.computer>
DeltaFile
+20-0usr/src/uts/common/io/vioif/vioif.c
+20-01 files

Illumos/gate 79ad75fusr/src/cmd/bhyve/common pci_virtio_viona.c, usr/src/head stdlib.h

18375 bhyve: viona feature_mask option cannot be parsed
18373 want unsigned strtonum variants
Reviewed by: Gordon Ross <Gordon.W.Ross at gmail.com>
Reviewed by: Toomas Soome <tsoome at me.com>
Approved by: Dan McDonald <danmcd at oxide.computer>
DeltaFile
+174-4usr/src/test/libc-tests/tests/strtonum.c
+81-24usr/src/man/man3c/strtonum.3c
+79-16usr/src/lib/libc/port/gen/strtonum.c
+4-2usr/src/cmd/bhyve/common/pci_virtio_viona.c
+5-1usr/src/head/stdlib.h
+6-0usr/src/lib/libc/port/mapfile-vers
+349-476 files

OpenBSD/ports 6XpgT99databases/p5-DBIx-Class distinfo Makefile

   Update p5-DBIx-Class to 0.082844

   This is just a version bump to keep the module from becoming orphaned.
VersionDeltaFile
1.29+5-4databases/p5-DBIx-Class/Makefile
1.13+2-2databases/p5-DBIx-Class/distinfo
+7-62 files

OpenBSD/ports n2FhNFQnet/netatalk3 Makefile, net/netatalk3/pkg PLIST

   Support for databases/db/v4 will be removed in the future, so move to
   sqlite3.
VersionDeltaFile
1.80+6-4net/netatalk3/Makefile
1.27+0-4net/netatalk3/pkg/PLIST
+6-82 files

OpenBSD/ports ZQr9m7oinfrastructure/lib/OpenBSD/PortGen Port.pm

   Match known make variable assignments

   This allows for portgen to do a better job updating more complex ports.
VersionDeltaFile
1.26+2-2infrastructure/lib/OpenBSD/PortGen/Port.pm
+2-21 files

OpenBSD/ports 7uEdCettextproc/cookcli crates.inc Makefile

   Update to CookCLI 0.35.0; enable tests.
VersionDeltaFile
1.15+4-4textproc/cookcli/distinfo
1.16+1-3textproc/cookcli/Makefile
1.15+1-1textproc/cookcli/crates.inc
+6-83 files

FreeBSD/ports ced174asysutils/siegfried Makefile distinfo

sysutils/siegfried: Update to 1.11.8

- Use go:1.26 on quarterly

ChangeLog:
https://github.com/richardlehane/siegfried/blob/main/CHANGELOG.md#v1118-2026-09-15

MFH:            2026Q3
(cherry picked from commit bbb69a5ded781bc2a5e99d2ff94e22001c568f00)
DeltaFile
+5-5sysutils/siegfried/distinfo
+2-2sysutils/siegfried/Makefile
+7-72 files

LLVM/project 86977e8llvm/lib/CodeGen MachineOutliner.cpp, llvm/test/CodeGen/AArch64 machine-outliner-operand-flags.mir

[AArch64][PAC] Reset `killed` operand flags in outlined functions

Presently, MachineOutliner does not take `killed` operand flags into
account when merging instruction sequences. While it sounds perfectly
reasonable not to inhibit merging of the instruction sequences that
only differ in `killed` flags (for N flags there is technically 2^N
valid ways to drop some subset of them), copying these flags from
an arbitrarily chosen representative instruction may result in
incorrect codegen of PAuth-related pseudo instructions on AArch64.

To keep `killed` flags conservatively correct as if `OUTLINED_FUNCTION`s
are virtually re-inserted at every call site, this patch takes the
simplest approach of resetting every `killed` flag inside the
outlined functions.
DeltaFile
+82-0llvm/test/CodeGen/AArch64/machine-outliner-operand-flags.mir
+1-0llvm/lib/CodeGen/MachineOutliner.cpp
+83-02 files

LLVM/project ef762d7llvm/lib/Target/SPIRV SPIRVInstrInfo.td

[SPIR-V] Correct predicated load/store opcode values (#220062)

This PR fixes the `SPV_INTEL_predicated_io` extension instruction
opcodes to match the SPIR-V header definitions.
DeltaFile
+2-2llvm/lib/Target/SPIRV/SPIRVInstrInfo.td
+2-21 files

FreeBSD/ports bbb69a5sysutils/siegfried Makefile distinfo

sysutils/siegfried: Update to 1.11.8

ChangeLog:
https://github.com/richardlehane/siegfried/blob/main/CHANGELOG.md#v1118-2026-09-15

MFH:            2026Q3
DeltaFile
+5-5sysutils/siegfried/distinfo
+2-2sysutils/siegfried/Makefile
+7-72 files

NetBSD/pkgsrc qmvdcs0security/nettle distinfo, security/nettle/patches patch-config.make.in patch-Makefile.in

   security/nettle: build fix

   provide the libtool tag for compile and link phases, so that libtool
   doesn't try to infer anything
VersionDeltaFile
1.15+5-5security/nettle/patches/patch-Makefile.in
1.4+3-3security/nettle/patches/patch-config.make.in
1.35+3-3security/nettle/distinfo
+11-113 files

LLVM/project 10a3774llvm/tools/llvm-exegesis/lib Assembler.cpp, llvm/tools/llvm-ir2vec llvm-ir2vec.cpp

tools: Compute the module DataLayout from the triple, not the TargetMachine (#224259)

TargetMachine::createDataLayout is an unreliable cache given the
existence of module flags which change the datalayout, so this should be removed.
Migrate tool users to directly compute the datalayout.

Co-authored-by: Claude (Claude-Opus-4.8) <noreply at anthropic.com>
DeltaFile
+7-4llvm/tools/llvm-exegesis/lib/Assembler.cpp
+1-1llvm/tools/llvm-reduce/ReducerWorkItem.cpp
+1-1llvm/tools/llvm-opt-fuzzer/llvm-opt-fuzzer.cpp
+1-1llvm/tools/llvm-isel-fuzzer/llvm-isel-fuzzer.cpp
+1-1llvm/tools/llvm-ir2vec/llvm-ir2vec.cpp
+11-85 files

OpenBSD/src KiDuPX1sys/kern kern_exec.c vfs_lookup.c, sys/sys namei.h

   for getexecpath() in execve(), the addition of REALPATH to the namei LOOKUP
   operation can now fail if the buffer generated becoes too long.  What we want
   is for the LOOKUP to succeed and and for the REALPATH 'request' to be
   abandoned.  Then the LOOKUP attempt can stil proceed, and execve() can
   succeed at running the binary (and not provide getexecpath information).
   This creates a seperate identifiable EXECPATH request which can be abandoned
   easier.
   issue found by dgl, change ok dgl
VersionDeltaFile
1.95+12-7sys/kern/vfs_lookup.c
1.274+3-3sys/kern/kern_exec.c
1.55+2-1sys/sys/namei.h
+17-113 files