LLVM/project 247d429llvm/lib/Target/RISCV RISCVFrameLowering.cpp, llvm/test/CodeGen/RISCV interrupt-shrink-wrap.ll

[RISCV] Disable shrink wrapping for SiFive CLIC and QCI handlers (#218347)

This commit disables shrink wrapping for SiFive CLIC and QCI handlers.

Closes #218344
DeltaFile
+175-0llvm/test/CodeGen/RISCV/interrupt-shrink-wrap.ll
+6-5llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
+181-52 files

FreeNAS/freenas 9715aa7src/middlewared/middlewared/pytest/unit/alert/inventory applicability.txt

Add the S3 bucket alert to the frozen applicability inventory

The alert applicability tests hold every declaration against a frozen
inventory, and S3BucketDatasetMissing was not in it. Regenerated with
ALERT_MATRIX_REGENERATE=1, which adds the class and listed rows for
that one declaration, applying on every population like the other
sharing alerts, and changes nothing else.
DeltaFile
+2-0src/middlewared/middlewared/pytest/unit/alert/inventory/applicability.txt
+2-01 files

FreeNAS/freenas 92dda57src/middlewared/middlewared/plugins/truenas_s3 accesskey_crud.py bucket_crud.py

State the row defaults once, in the API model

The bucket and access key columns carried defaults that never fired.
Both create paths insert the whole row, the bucket from a dump of its
API entry and the key from an explicit dict, so the value that lands
is always the API model's, and the column's copy was a second place
for the same number to drift from. The columns now carry none.

The service's own config row is left alone. It is inserted empty by
the config service machinery rather than from the API model, and its
columns are filled from the model defaults and the migration's server
defaults instead.
DeltaFile
+10-7src/middlewared/middlewared/plugins/truenas_s3/bucket_crud.py
+2-2src/middlewared/middlewared/plugins/truenas_s3/accesskey_crud.py
+12-92 files

LLVM/project 792023cllvm/lib/CodeGen CodeGenPrepare.cpp, llvm/test/Transforms/CodeGenPrepare/AArch64 hoist-bitcast-aggregate.ll

[CodeGenPrepare] Failure to hoist bitcast to legal type causes register splitting (#207568)

FIX #179950 

Extracted the core logic from CodeGenPrepare.cpp into a new optimizeBitCast function.

I have also included tests covering both legal and illegal types.
DeltaFile
+61-0llvm/test/Transforms/CodeGenPrepare/X86/hoist-bitcast-integer-to-vector.ll
+55-0llvm/test/Transforms/CodeGenPrepare/AArch64/hoist-bitcast-aggregate.ll
+54-0llvm/test/Transforms/CodeGenPrepare/X86/hoist-bitcast-i686.ll
+51-0llvm/lib/CodeGen/CodeGenPrepare.cpp
+25-0llvm/test/Transforms/CodeGenPrepare/RISCV/hoist-bitcast-scalable.ll
+246-05 files

LLVM/project 633a305llvm/lib/Transforms/Vectorize VPlanTransforms.cpp

Unindent loop
DeltaFile
+14-13llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+14-131 files

LLVM/project 8f7d3ballvm/include/llvm/IR RuntimeLibcalls.td, llvm/test/CodeGen/AVR stack-protector.ll

[RuntimeLibcalls] Add stack protector entries for AVR (#220597)

`__stack_chk_fail` used to be part of the default set of runtime libcall
impls. #148789 moved it out of that set and re-added it explicitly to
each target's `SystemRuntimeLibrary`, and #154930 did the same for the
`__stack_chk_guard` global. `AVRSystemLibrary` was not updated by
either, so both `RTLIB::STACKPROTECTOR_CHECK_FAIL` and
`RTLIB::STACK_CHECK_GUARD` are `RTLIB::Unsupported` on AVR.

Lowering a function with `sspreq` therefore fails twice: loading the
canary reports "unable to lower stackguard", and the failure path dies
in `TargetLowering::makeLibCall` with a `reportFatalInternalError`:

```
$ llc -mtriple=avr ssp.ll
error: unable to lower stackguard
LLVM ERROR: unsupported library call operation
```


    [4 lines not shown]
DeltaFile
+19-0llvm/test/CodeGen/AVR/stack-protector.ll
+3-1llvm/include/llvm/IR/RuntimeLibcalls.td
+22-12 files

FreeNAS/freenas 827ced7

Empty commit to create PR on github.

You should reset it
DeltaFile
+0-00 files

FreeNAS/freenas 109c845src/middlewared/middlewared/api/v26_0_0 app.py, src/middlewared/middlewared/api/v27_0_0 app.py

NAS-143041 / 27.0.0-BETA.1 / Remove dead `force_remove_ix_volumes` app delete option (#19597)

## Problem
`app.delete` accepts `options.force_remove_ix_volumes`, validates it as
a bool and documents it in the method docstring, but nothing reads it.
It was live when introduced in 0c4381a2b4, where it picked which kwarg
to hand to `zfs.dataset.delete` — `recursively_remove_dependents` when
set, `recursive` otherwise. 9712dc3084 ("remove zfs.dataset.delete
(replace w/ zfs.resource.destroy)") swapped that call for an
unconditional `recursive=True, bypass=True` destroy and dropped the
conditional along with it, leaving the flag accepted but inert. The
capability it selected is gone too: `zfs.resource.destroy_impl` has no
dependents-removal parameter, so there is nothing left to wire it back
up to.

## Solution
Dropped the field from `AppDelete` in both v26_0_0 and v27_0_0 and
removed the docstring paragraph describing it. `remove_ix_volumes` is
unaffected — it is still the live gate on ix-volume deletion.

    [4 lines not shown]
DeltaFile
+0-6src/middlewared/middlewared/plugins/apps/__init__.py
+0-4src/middlewared/middlewared/api/v27_0_0/app.py
+0-4src/middlewared/middlewared/api/v26_0_0/app.py
+0-143 files

LLVM/project 4a43f56llvm/lib/CodeGen AssignmentTrackingAnalysis.cpp, llvm/lib/Target/AMDGPU/Utils AMDGPUBaseInfo.cpp

[LLVM] Use isByValArgument() (NFC) (#221192)

Use the isByValArgument() helper instead of paramHasAttr().

Split off from https://github.com/llvm/llvm-project/pull/207173.
DeltaFile
+6-6llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
+2-2llvm/unittests/ExecutionEngine/Orc/IndirectionUtilsTest.cpp
+1-1llvm/lib/Transforms/Utils/InlineFunction.cpp
+1-1llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
+1-1llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
+1-1llvm/lib/CodeGen/AssignmentTrackingAnalysis.cpp
+12-126 files

FreeBSD/ports a6e9ffbdevel/jujutsu Makefile pkg-plist

devel/jujutsu: updat eto version 0.45.1

A new "jj converge" command has been added to help automatically
resolve divergent commits by combining them appropriately.

For the full list of changes relative to version 0.44.0 see:

    https://docs.jj-vcs.dev/v0.45.1/changelog/#0450-2026-09-02
    https://docs.jj-vcs.dev/v0.45.1/changelog/#0451-2026-09-03
DeltaFile
+323-321devel/jujutsu/distinfo
+160-159devel/jujutsu/Makefile.crates
+1-1devel/jujutsu/Makefile
+2-0devel/jujutsu/pkg-plist
+486-4814 files

OPNSense/core 017f786src/etc/inc interfaces.inc

interfaces: move resolving if parents into interfaces_dependencies()
DeltaFile
+19-19src/etc/inc/interfaces.inc
+19-191 files

LLVM/project 5b365c0llvm/lib/Transforms/Scalar ConstraintElimination.cpp, llvm/test/Transforms/ConstraintElimination or.ll or-disjoint.ll

[ConstraintElim] Use m_NUWAddLike for unsigned decomposition. (#221175)

Use m_NUWAddLike in unsigned decomposition, remove hand-rolled disjoint
or matching with constant.

Additional flags added in 2 cases end-to-end:
https://github.com/dtcxzyw/llvm-opt-benchmark-nightly/pull/1192

PR: https://github.com/llvm/llvm-project/pull/221175
DeltaFile
+480-0llvm/test/Transforms/ConstraintElimination/or-disjoint.ll
+0-410llvm/test/Transforms/ConstraintElimination/or.ll
+1-8llvm/lib/Transforms/Scalar/ConstraintElimination.cpp
+481-4183 files

LLVM/project 56e29f3llvm/test/Transforms/LoopVectorize blend-i1.ll

Make then branch non-dead
DeltaFile
+10-6llvm/test/Transforms/LoopVectorize/blend-i1.ll
+10-61 files

FreeBSD/src 2350f75usr.sbin/pw pw.c, usr.sbin/pw/tests Makefile pw_test.sh

pw: check -M, -V and -R input to avoid dereferencing argv[2]

MFC After: 1 week
DeltaFile
+20-0usr.sbin/pw/tests/pw_test.sh
+8-0usr.sbin/pw/pw.c
+2-1usr.sbin/pw/tests/Makefile
+30-13 files

LLVM/project f0d631bllvm/lib/Target/X86 X86ISelLowering.cpp, llvm/test/CodeGen/X86 gfni-rotates.ll vector-fshr-rot-128.ll

[X86] combineConcatVectorOps - add generic shift handling (#221055)

Limit this to cases where the shift value concatenates for free - the shift amount is often cheap, but the shift value isn't.
DeltaFile
+17-18llvm/test/CodeGen/X86/vector-fshr-rot-256.ll
+10-16llvm/test/CodeGen/X86/vector-fshr-rot-128.ll
+5-8llvm/test/CodeGen/X86/gfni-rotates.ll
+13-0llvm/lib/Target/X86/X86ISelLowering.cpp
+45-424 files

FreeBSD/src 92e8a76usr.sbin/pw pw_utils.c pw_user.c, usr.sbin/pw/tests Makefile pw_useradd_test.sh

pw: use _PWDASH pseudo-fd for "-" in pw_checkfd

pw_checkfd() returned the character "-" (45) for the "-" argument,
which was ambiguous with a real file descriptor.

MFC After:      1 week
DeltaFile
+107-0usr.sbin/pw/tests/pw_unit_test.c
+35-0usr.sbin/pw/tests/pw_useradd_test.sh
+9-1usr.sbin/pw/tests/Makefile
+3-3usr.sbin/pw/pw_user.c
+3-3usr.sbin/pw/pw_group.c
+1-1usr.sbin/pw/pw_utils.c
+158-81 files not shown
+159-87 files

LLVM/project e377dafllvm/include/llvm/CodeGen SelectionDAG.h, llvm/lib/CodeGen/SelectionDAG SelectionDAG.cpp

[AArch64] Support wide interleaved store combine (#217856)

After type legalization wider interleaved store gets spllitted into
legal chunk store, perform a dag combine to turn it into interleaved
store if chunked store is contiguous and result of vector_interleave.
DeltaFile
+469-0llvm/test/CodeGen/AArch64/vector-interleave-store.ll
+24-71llvm/test/CodeGen/AArch64/interleaved-accesses.ll
+72-0llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
+33-19llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+7-0llvm/include/llvm/CodeGen/SelectionDAG.h
+605-905 files

FreeBSD/ports 4388480emulators/pcsx2 Makefile

emulators/pcsx2: Add Wayland support

- Add a WAYLAND option
- Re-order a few things with portfmt

PR: 298078
DeltaFile
+31-28emulators/pcsx2/Makefile
+31-281 files

FreeNAS/freenas 8c5dd76src/freenas/usr/local/bin truenas-hw-license.py, src/middlewared/middlewared/utils/license legacy.py

Restore bare hardware entitlements on unlicensed iX appliances

This commit adds changes to write a minimal legacy license record during upgrade on iX appliance hardware that is neither a Mini nor HA-capable and carries no license at all, since those systems otherwise read as wholly unlicensed once the per-feature entitlement gates apply and lose capabilities the chassis was sold with.

The record is stamped with a marker in customer_key so legacy normalization can bind it to the bare TRUENAS_HW set rather than everything a real legacy license implies, and it carries an empty HA serial so the parsed type stays ENTERPRISE_SINGLE and failover.licensed remains false.
DeltaFile
+115-0src/freenas/usr/local/bin/truenas-hw-license.py
+30-6src/middlewared/middlewared/utils/license/legacy.py
+145-62 files

LLVM/project 092263allvm/lib/Transforms/Vectorize LoopVectorizationPlanner.h LoopVectorizationPlanner.cpp

[LV] Add getMaxRuntimeElementCount helper (NFC). (#220397)

Add a getMaxRuntimeElementCount to compute ElementCount * max vscale. It computes
the value in uint64_t, to avoid overflow for very large vscale values.

Returns std::nullopt, if there's no max vscale value. Migrate 3 existing
users to use the shared helper.

PR: https://github.com/llvm/llvm-project/pull/220397
DeltaFile
+12-18llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+12-0llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.cpp
+6-0llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h
+30-183 files

LLVM/project 278d9f7llvm/lib/Transforms/Vectorize LoopVectorize.cpp

[LV] Remove unused getReductionPatternCost (NFC) (#221183)

In-loop reduction handling + costing has been completely migrated to
VPlan. Remove unused legacy getReductionPatternCost.
DeltaFile
+0-201llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+0-2011 files

LLVM/project b09363aclang/include/clang/CIR/Dialect/IR CIRCUDAAttrs.td CIRTypes.td

[CIR] Use the modern enum case classes

The `I32EnumAttrCase` family carries an `Attr` half, and an `IntegerAttr`
predicate with it, that a CIR enum has no use for now that the enums derive
from `EnumInfo`. Upstream says of those forms that they "are not needed when
using the newer `EnumCase` form".

Rename all 198 of them to `I32EnumCase`, `I32BitEnumCaseNone`,
`I32BitEnumCaseBit` and `BitEnumCaseGroup`. The group class drops its width
prefix because the modern spelling takes the width from its cases.

NFC, mechanical.
DeltaFile
+140-140clang/include/clang/CIR/Dialect/IR/CIROps.td
+43-43clang/include/clang/CIR/Dialect/IR/CIRAttrs.td
+8-8clang/include/clang/CIR/Dialect/IR/CIREnumAttr.td
+4-4clang/include/clang/CIR/Dialect/IR/CIRTypes.td
+3-3clang/include/clang/CIR/Dialect/IR/CIRCUDAAttrs.td
+198-1985 files

OPNSense/core f2a14dbsrc/etc/inc interfaces.inc

interfaces: flip array for additional data
DeltaFile
+8-6src/etc/inc/interfaces.inc
+8-61 files

FreeNAS/freenas c96495bsrc/middlewared/middlewared/alembic/versions/26.0 2026-09-03_15-00_truenas_s3_service.py, src/middlewared/middlewared/api/v26_0_0 s3.py

Serve a bucket dataset's snapshots as versions

Two bucket fields for the daemon's snapshot layer. snapshot_versions
is a list of patterns over the dataset's snapshot names, star and
question mark the only metacharacters, and every snapshot a pattern
selects serves each object's frozen state as a read-only version,
listed by ListObjectVersions and read by its id. snapshot_versions_max
is how many of the newest selected snapshots one listing consults,
64 by default, and bounds the listing alone.

Validation mirrors the daemon's refusals so a rendered file always
loads. A selection needs versioning ENABLED or SUSPENDED. A pattern
keeps to the ZFS name charset plus the two metacharacters, which
leaves the comma outside it and lets the list render comma separated,
carries no leading or trailing whitespace since the daemon would trim
it into a second spelling, and is listed once. The cap is at least
one. The pair renders only beside a selection, since the daemon reads
an empty selection as the layer off and the cap is inert without one.
Both hold to a restart, which the daemon says when asked.

    [6 lines not shown]
DeltaFile
+90-0tests/api2/test_s3_bucket.py
+26-0src/middlewared/middlewared/plugins/truenas_s3/bucket_crud.py
+16-0src/middlewared/middlewared/api/v26_0_0/s3.py
+6-0src/middlewared/middlewared/etc_files/truenas_s3/buckets.conf.mako
+2-0src/middlewared/middlewared/alembic/versions/26.0/2026-09-03_15-00_truenas_s3_service.py
+140-05 files

FreeBSD/ports 62edba3x11-toolkits/pythonqt Makefile

x11-toolkits/pythonqt: Schedule for removal

Depends on deprecated Qt5 WebEngine

PR:             296230
DeltaFile
+4-0x11-toolkits/pythonqt/Makefile
+4-01 files

FreeBSD/ports f5f44dbdevel/eql5 Makefile

devel/eql5: Schedule for removal

Abandoned, depends on deprecated Qt5 WebEngine

PR:             296230
DeltaFile
+4-0devel/eql5/Makefile
+4-01 files

FreeBSD/ports 6d52b7bx11-toolkits/py-guietta Makefile

x11-toolkits/py-guietta: Schedule for removal

Depends on deprecated PySide2, not ported to Qt6

PR:             296230
DeltaFile
+4-1x11-toolkits/py-guietta/Makefile
+4-11 files

FreeBSD/ports 8cb08e4graphics/natron Makefile

graphics/natron: Schedule for removal

Depends on deprecated Qt5 WebEngine, not ported to Qt6

PR:             296230
DeltaFile
+4-1graphics/natron/Makefile
+4-11 files

FreeBSD/ports 5e17e6enet-im/cutegram Makefile

net-im/cutegram: Schedule for removal

Abandoned, depends on deprecated Qt5 WebEngine

PR:             296230
DeltaFile
+4-1net-im/cutegram/Makefile
+4-11 files

FreeBSD/ports 3b45f9ftextproc/goldendict Makefile

textproc/goldendict: Schedule for removal

Depends on deprecated Qt5 WebEngine, consider to use textproc/goldendict-ng

PR:             296230
DeltaFile
+4-1textproc/goldendict/Makefile
+4-11 files