LLVM/project f33ef3allvm/lib/Target/AArch64 AArch64SchedC1Ultra.td AArch64SchedC1Premium.td, llvm/test/CodeGen/AArch64 misched-c1sme.ll

[AArch64] Use NoSchedPred for SME instructions in C1 scheduling models. (#220553)

We can have the scheduling model enabled without SME using -mtune, which
means that no scheduling information was present for any instructions
that execute in either SME or the core. AFAICT the predicate should be
NoSchedPred, as any instructions should be using the non-streaming
scheduling info when not in a SME function.

Fixes #220070
Fixes #220067
DeltaFile
+24-0llvm/test/CodeGen/AArch64/misched-c1sme.ll
+1-1llvm/lib/Target/AArch64/AArch64SchedC1Ultra.td
+1-1llvm/lib/Target/AArch64/AArch64SchedC1Premium.td
+26-23 files

LLVM/project 70519bcorc-rt/include/orc-rt-c/support Logging.h Compiler.h

[orc-rt] Drop the _C_ prefix from ORC_RT_C_FORMAT_PRINTF (#220592)

The macro is not C-specific. Rename it to ORC_RT_FORMAT_PRINTF and
update its two uses in Logging.h.
DeltaFile
+3-3orc-rt/include/orc-rt-c/support/Compiler.h
+2-2orc-rt/include/orc-rt-c/support/Logging.h
+5-52 files

LLVM/project aba5ec2llvm/lib/Target/NVPTX NVPTXTargetTransformInfo.cpp, llvm/test/Transforms/InstCombine/NVPTX nvvm-intrins.ll

[NVPTX] Fold abs into redux intrinsics

Fold llvm.fabs into the absolute-value variants of floating-point
redux min/max intrinsics during InstCombine.
DeltaFile
+37-1llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.cpp
+32-0llvm/test/Transforms/InstCombine/NVPTX/nvvm-intrins.ll
+69-12 files

LLVM/project 53b30bfllvm/lib/Target/AMDGPU SOPInstructions.td

[AMDGPU] Use named operands in SOP1_Real. NFC (#220705)
DeltaFile
+14-13llvm/lib/Target/AMDGPU/SOPInstructions.td
+14-131 files

FreeBSD/ports 89b89ecemulators/py-unicorn distinfo Makefile, emulators/py-unicorn/files patch-pyproject.toml patch-setup.py

emulators/py-unicorn: update to 2.1.4
DeltaFile
+11-11emulators/py-unicorn/Makefile
+0-16emulators/py-unicorn/files/patch-setup.py
+9-0emulators/py-unicorn/files/patch-pyproject.toml
+3-3emulators/py-unicorn/distinfo
+23-304 files

LLVM/project 81bf35dflang/lib/Optimizer/Transforms/CUDA CUFAllocDelay.cpp, flang/test/Transforms/CUF cuf-alloc-delay.fir

[flang][cuda] Delay descriptor alloc when addressed reused on host/device (#220534)

CSE can share one fir.coordinate_of between the host-association capture
store and a later fir.load. Treating that coordinate_of as a real use
made cuf-alloc-delay think the movable group depended on an operand at
the sink point, so the device descriptor stayed at function entry and
cudaMallocManaged ran before cudaSetDevice.

Count only users of the slot address that actually read it. Stores that
populate the tuple still sink with the allocation group.
DeltaFile
+38-1flang/test/Transforms/CUF/cuf-alloc-delay.fir
+11-11flang/lib/Optimizer/Transforms/CUDA/CUFAllocDelay.cpp
+49-122 files

FreeNAS/freenas 3f1ce33

Empty commit to create PR on github.

You should reset it
DeltaFile
+0-00 files

FreeNAS/freenas ad0683dtests/api2 test_s3_accesskey.py

ruff format

(cherry picked from commit 5688d9531b9a3f997e9a04e84cd83e5b81239f44)
DeltaFile
+3-10tests/api2/test_s3_accesskey.py
+3-101 files

FreeNAS/freenas 64c50dfsrc/middlewared/middlewared main.py, src/middlewared/middlewared/alembic/versions/26.0 2026-09-03_09-00_truenas_s3_accesskey.py

Add S3 access keys

An S3 access key is the SigV4 credential pair a client signs requests
to the TrueNAS S3 service with. It gets its own table and the new
s3.accesskey namespace rather than a place in the API key table, so
nothing in the TrueNAS API authentication path ever reads it and the
security sensitive api_key surface stays untouched.

A key belongs to a local or directory services account through the
same user_identifier linkage API keys use, resolved to a username at
query time, and needs no privilege roles because the S3 service runs
its requests as the account. The access key id and the secret are
generated unless supplied, both in the character sets the S3 service
config reader carries verbatim. The secret is stored recoverable
because SigV4 derives signing keys from it, and it stays readable to
administrators holding the new SHARING_S3_WRITE role while being
redacted for everyone else. A computed status folds the enabled flag,
expiry, a deleted account and a secret lost to a config restore
without the secret seed into one value, so the credentials file will

    [6 lines not shown]
DeltaFile
+288-0src/middlewared/middlewared/plugins/truenas_s3/accesskey_crud.py
+225-0tests/api2/test_s3_accesskey.py
+129-0src/middlewared/middlewared/api/v26_0_0/s3.py
+36-0src/middlewared/middlewared/alembic/versions/26.0/2026-09-03_09-00_truenas_s3_accesskey.py
+22-1src/middlewared/middlewared/utils/crypto.py
+8-0src/middlewared/middlewared/main.py
+708-15 files not shown
+723-111 files

FreeBSD/ports b3bbad0emulators/unicorn pkg-plist Makefile

emulators/unicorn: update to 2.1.4
DeltaFile
+3-3emulators/unicorn/distinfo
+1-2emulators/unicorn/Makefile
+1-0emulators/unicorn/pkg-plist
+5-53 files

LLVM/project 3b28702llvm/lib/Transforms/Vectorize VPlanTransforms.cpp

[VPlan] Allow non-live-in IV offsets when simplifying latch cond (NFC). (#220734)

simplifyBranchConditionForVFAndUF matches the canonical IV increment
plus an offset, which epilogue vectorization adds to resume the
canonical IV at the vector trip count of the main vector loop. Require
the offset to be defined outside the vector loop region instead of
requiring it to be a live-in; that is what makes it available in the
preheader..

This is NFC today, but prepares for modeling the full epilogue skeleton
in VPlan, which requires adding phi nodes in the preheader before
execute.
DeltaFile
+8-3llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+8-31 files

FreeBSD/ports b7621b9x11/florence pkg-plist distinfo, x11/florence/files extra-patch-freebsd-orb-super

x11/florence: Update to 0.7.2 and adopt

Switch from the stalled SourceForge 0.6.3 distfile to the FrauBSD
continuation on GitHub and take maintainership from ports@.

Drop PORTREVISION, fetch via USE_GITHUB.

Default-on FREEBSD_ORB option replaces the Super key glyph with the
FreeBSD orb (ports-only branding).

Reviewed by:    jrm
Differential Revision:  https://reviews.freebsd.org/D58428
DeltaFile
+27-25x11/florence/Makefile
+23-0x11/florence/files/extra-patch-freebsd-orb-super
+8-8x11/florence/pkg-descr
+3-2x11/florence/distinfo
+1-0x11/florence/pkg-plist
+62-355 files

OpenZFS/src b1fac4btests/unit .gitignore Makefile.am

unit: add nvpair test suite

Exercises add and lookup for all types, iteration, removal, replacement,
merge & copy, pack & unpack with both encodings, formatting and
infallibile wrappers.

Sponsored-by: TrueNAS
Reviewed-by: Chris Longros <chris.longros at gmail.com>
Reviewed-by: Brian Behlendorf <behlendorf1 at llnl.gov>
Signed-off-by: Rob Norris <rob.norris at truenas.com>
Closes #19006
DeltaFile
+1,829-0tests/unit/test_nvpair.c
+20-1tests/unit/Makefile.am
+1-0tests/unit/.gitignore
+1,850-13 files

OpenZFS/src bf96cd1tests/unit unit.h

unit: add null/notnull helpers

Sponsored-by: TrueNAS
Reviewed-by: Chris Longros <chris.longros at gmail.com>
Reviewed-by: Brian Behlendorf <behlendorf1 at llnl.gov>
Signed-off-by: Rob Norris <rob.norris at truenas.com>
Closes #19006
DeltaFile
+4-0tests/unit/unit.h
+4-01 files

LLVM/project 3dcc5b3llvm/test/Transforms/LoopVersioning preserved-analyses.ll

[LoopVersioning] Add missing verify-analysis-invalidation=false to test. (#220735)

Add -verify-analysis-invalidation=false to test added in
https://github.com/llvm/llvm-project/pull/220537 to fix expensive check
failures due to extra verification passes.
DeltaFile
+1-1llvm/test/Transforms/LoopVersioning/preserved-analyses.ll
+1-11 files

LLVM/project 32e83ealldb/source/Plugins/Platform/WebAssembly PlatformWasmProperties.td PlatformWasm.h, lldb/unittests/Platform CMakeLists.txt PlatformWasmTest.cpp

[lldb] Pass Wasm runtime-args before the port argument (#220700)

A runtime that dispatches on a leading subcommand, such as WasmKit's
`wasmkit run`, could not be driven directly: runtime-args landed after
the port argument, so the subcommand did too and the runtime rejected
it. Naming the subcommand required a wrapper script. Move runtime-args
ahead of the port argument so the setting can carry it.

Extract the command line assembly into PlatformWasm::MakeRuntimeCommand
so the ordering is covered by unit tests, and clarify that port-arg has
to carry its value in the same argument.
DeltaFile
+98-0lldb/unittests/Platform/PlatformWasmTest.cpp
+37-23lldb/source/Plugins/Platform/WebAssembly/PlatformWasm.cpp
+10-0lldb/source/Plugins/Platform/WebAssembly/PlatformWasm.h
+5-2lldb/source/Plugins/Platform/WebAssembly/PlatformWasmProperties.td
+5-0llvm/docs/ReleaseNotes.md
+2-0lldb/unittests/Platform/CMakeLists.txt
+157-252 files not shown
+158-288 files

OpenZFS/src 2455d65tests/unit unit.c unit.h

unit: make unit_eq() etc type-aware

Previously, unit_eq() and friends were naively routed to
munit_assert_uint64(), regardless of the actual types involved. This
meant that on failure, the error message would report eg a small
negative number as a huge unsigned one, and also plain doesn't work for
types that don't have an implicit conversion to uint64_t, like double.

Here we add a type-aware replacement that generates comparison and
failure reporting functions for the wanted types, then uses _Generic to
dispatch to the correct one.

Sponsored-by: TrueNAS
Reviewed-by: Chris Longros <chris.longros at gmail.com>
Reviewed-by: Brian Behlendorf <behlendorf1 at llnl.gov>
Signed-off-by: Rob Norris <rob.norris at truenas.com>
Closes #19006
DeltaFile
+78-11tests/unit/unit.h
+40-0tests/unit/unit.c
+118-112 files

LLVM/project 80c5684llvm/include/llvm/IR Module.h, llvm/unittests/IR ModuleTest.cpp

[llvm] Use ValueMap for ValueToGUIDMap (#220682)

ValueToGUIDMap currently uses a DenseMap which does not properly track
the deletion of Values, leaving dangling pointers in the map.

This change fixes this by using ValueMap. FollowRAUW is set to false to
match the current behavior of DenseMap.

This bug was discovered by a sanity test for deterministic compilation
where, depending on the allocator state, a newly allocated Value could
re-use the address of a previously deleted one, incorrectly inheriting
the GUID.
DeltaFile
+24-0llvm/unittests/IR/ModuleTest.cpp
+8-2llvm/include/llvm/IR/Module.h
+32-22 files

OpenZFS/src 7f0d8d3module/os/freebsd/zfs zfs_vnops_os.c zfs_znode_os.c, module/os/linux/zfs zfs_vnops_os.c zfs_znode_os.c

Inherit the project ID for every object type

zfs_mknode() only assigned a project ID to regular files and
directories, so a symlink, device node, FIFO or socket created inside a
directory with ZFS_PROJINHERIT set was left at ZFS_DEFAULT_PROJID. The
cross-project checks in zfs_rename() and zfs_link() compare the object's
project ID against the directory's, so such an object is treated as
foreign to the very directory holding it, and cannot be renamed or
linked there at all -- "ln -sfn", which creates the new symlink under a
temporary name and renames it into place, fails with EXDEV.

ext4 and XFS store a project ID on every inode type and so do not have
this problem. Do the same, and quota-check new symlinks and rename
whiteouts against the inherited ID rather than the default one, so their
space is accounted to the project that owns them.

This changes accounting for newly created objects: symlinks, device
nodes and FIFOs now consume the project's quota where they previously
consumed none, so on a dataset already at its project quota, creating

    [12 lines not shown]
DeltaFile
+21-15module/os/linux/zfs/zfs_znode_os.c
+21-15module/os/freebsd/zfs/zfs_znode_os.c
+5-10module/os/linux/zfs/zfs_vnops_os.c
+2-3module/os/freebsd/zfs/zfs_vnops_os.c
+49-434 files

OpenZFS/src 5943327module/os/freebsd/zfs zfs_vnops_os.c, module/os/linux/zfs zfs_vnops_os.c

Allow renames within a single directory under project inheritance

A rename that keeps the object in the directory it already lives in
cannot move it between projects, so refusing it with EXDEV is never
right. Objects created before the previous commit carry no project ID of
their own, which makes this reachable on existing pools: a symlink in a
project directory cannot be renamed even to another name beside itself,
and "ln -sfn" over an existing path fails.

zfs_link() keeps its unconditional check. It has no source directory to
compare against -- a hard link names an object that may live anywhere --
so there is no equivalent "the object is already here" case to exempt.
Linking a pre-existing symlink, device node or FIFO into the project
directory that already holds it therefore still fails with EXDEV, until
the object is given a project ID of its own.

Reviewed-by: Brian Behlendorf <behlendorf1 at llnl.gov>
Signed-off-by: Matt Turner <mattst88 at gmail.com>
Closes #18932
DeltaFile
+9-1module/os/linux/zfs/zfs_vnops_os.c
+9-1module/os/freebsd/zfs/zfs_vnops_os.c
+18-22 files

OpenZFS/src 2cf1bd2tests/runfiles linux.run, tests/zfs-tests/tests Makefile.am

ZTS: check project ID inheritance and renames within a project directory

Covers both of the preceding changes. For the inheritance: a new symlink
and a new FIFO each add an object to the containing directory's project,
which only happens once non-regular files inherit a project ID, and a
symlink can then be renamed into a different directory carrying the same
project ID, which rename(2) permits only when the two project IDs match.

For the rename exemption: a regular file and a symlink are created
before the directory is tagged, so they carry no project ID of their
own, as every symlink on an existing pool does. Renaming each of them
within that directory afterwards fails with EXDEV unless the
cross-project check exempts renames whose source and target directories
are the same. The same renames are then repeated for objects created
after the tagging, along with replacing a symlink with "ln -sfn", and
again in an inheriting subdirectory.

A rename that does cross into a different project is still refused.


    [7 lines not shown]
DeltaFile
+139-0tests/zfs-tests/tests/functional/projectquota/projectid_004_pos.ksh
+1-0tests/zfs-tests/tests/Makefile.am
+1-0tests/runfiles/linux.run
+141-03 files

LLVM/project 71a85eflibclc/clc/lib/generic/math clc_remquo_stret.inc

[libclc] Fix remainder calculation in clc_remquo for subnormals (#217925)

The remainder t was previously computed using:

    __CLC_GENTYPE t = __clc_mad(y, -__CLC_CONVERT_GENTYPE(qsgn), x);

Multiplying y by -qsgn (+-1.0) introduces an unnecessary intermediate
multiplication step. On platforms or execution modes where subnormals
are flushed to zero computing `y * -qsgn` can prematurely flush a
subnormal `y` to zero, resulting in `0.0 + x = x` instead of computing
the subtraction `x - y` (or `x + y`).

Replace `__clc_mad` with a direct addition/subtraction based on the sign
of the quotient:

    __CLC_GENTYPE t = qsgn > 0 ? (x - y) : (x + y);

This avoids multiplication by +-1.0, eliminates unwanted subnormal
flushing on intermediate products in FTZ modes, and computes the exact
remainder.
DeltaFile
+1-1libclc/clc/lib/generic/math/clc_remquo_stret.inc
+1-11 files

LLVM/project ac5fb45llvm/lib/Target/RISCV RISCVISelLowering.cpp, llvm/test/CodeGen/RISCV/rvv convert-from-arbitrary-fp.ll fixed-vector-convert-from-arbitrary-fp.ll

[RISCV] Lower CONVERT_FROM_ARBITRARY_FP of Float8E5M2 with Zvfofp8min
DeltaFile
+486-0llvm/test/CodeGen/RISCV/rvv/fixed-vector-convert-from-arbitrary-fp.ll
+54-0llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+24-0llvm/test/CodeGen/RISCV/rvv/convert-from-arbitrary-fp.ll
+564-03 files

LLVM/project 1ab6947llvm/lib/CodeGen/SelectionDAG TargetLowering.cpp, llvm/test/CodeGen/RISCV convert-from-arbitrary-fp.ll

[SelectionDAG] Do not use illegal type when expanding `CONVERT_FROM_ARBITRARY_FP` (#219597)

During `CONVERT_FROM_ARBITRARY_FP`'s expansion, it'll try to create
intermediate integer values with the same width as the floating point
result. However, that integer type might not be legal, and would cause
problem when dealing with scalar version of `CONVERT_FROM_ARBITRARY_FP`.

For example, in the attached LIT tests, it'll generate something like
```
t58: f32 = convert_from_arbitrary_fp t57, TargetConstant:i32<7>
```
after type legalization. While f32 is a legal type, its integer
counterpart with the same width, i32, is not a legal type in RV64.

This patch fixes such problem by using the legal type for those
intermediate values, if the legal type is wider.
DeltaFile
+137-0llvm/test/CodeGen/RISCV/rvv/fixed-vector-convert-from-arbitrary-fp.ll
+69-0llvm/test/CodeGen/RISCV/convert-from-arbitrary-fp.ll
+42-9llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
+248-93 files

LLVM/project 54c6e0ellvm/include/llvm/TargetParser AMDGPUTargetParser.h, llvm/lib/Target/AMDGPU GCNSubtarget.cpp

[AMDGPU] Add getLocalMemorySize to TargetParser

Add getLocalMemorySize and getAddressableLocalMemorySize, both taking a
GPUKind or a Triple::SubArchType, so the LDS a work-group gets can be
queried from a GPU name alone without an MCSubtargetInfo. The first
returns the physical block available in the current mode, the second
caps it at what one work-group can address, mirroring the IsaInfo pair.

The number of SIMDs a work-group runs on is a per-kernel mode rather
than a property of the GPU, so it stays a parameter. GCNSubtarget
initializes its cached sizes from the new entry points. There is no
functional change.

Change-Id: Ib71428b66032a231ed491d6294122b359abfe7e2
Co-Authored-By: Claude Opus 5 (1M context) <noreply at anthropic.com>
DeltaFile
+56-0llvm/unittests/TargetParser/TargetParserTest.cpp
+30-0llvm/lib/TargetParser/AMDGPUTargetParser.cpp
+13-0llvm/include/llvm/TargetParser/AMDGPUTargetParser.h
+4-3llvm/lib/Target/AMDGPU/GCNSubtarget.cpp
+103-34 files

LLVM/project 4fbc7d8mlir/lib/Dialect/OpenACC/IR OpenACC.cpp, mlir/test/Dialect/OpenACC invalid.mlir

[mlir][OpenACC] Reject unsupported routine bind attributes (#220710)

Require each routine bind item to be a symbol reference or string
attribute. Other successfully parsed attributes left the kind
discriminator uninitialized and were silently dropped.

Found by Coverity.

Assisted-by: Codex
DeltaFile
+7-3mlir/lib/Dialect/OpenACC/IR/OpenACC.cpp
+8-0mlir/test/Dialect/OpenACC/invalid.mlir
+15-32 files

LLVM/project 54f8aa7offload/liboffload/include OffloadImpl.hpp, offload/liboffload/src OffloadImpl.cpp

[Offload] Address static analyzer hits (#220725)

Address uninitialized variable and unreachable code.
DeltaFile
+0-10offload/liboffload/src/OffloadImpl.cpp
+1-1offload/liboffload/include/OffloadImpl.hpp
+1-112 files

FreeBSD/ports c5b31ffdevel/apache-ant Makefile distinfo

devel/apache-ant: Update to 1.10.17

Ant 1.10.17 fixes a regression in the programmatic use of Ant and can be
used with Java runtime version 8 and higher.

PR:             298130
Submitted by:   Pedro F. Giffuni
DeltaFile
+7-7devel/apache-ant/distinfo
+1-2devel/apache-ant/Makefile
+8-92 files

LLVM/project fc1ab1fclang-tools-extra/include-cleaner/unittests AnalysisTest.cpp, clang/include/clang/Tooling/Inclusions HeaderIncludes.h

[clang][include cleaner] Fix MainHeader insertion issue (#212852)

When doing multiple header insertions (like from include cleaner) there
was an issue with MainHeaders inserted in the wrong location.
HeaderIncludes now supports a bulk insertion where it sorts the
insertions appropriately before inserting them to make sure that the
MainHeader ends up in the correct location.

Format.cpp has been updated to use the bulk insertion method correctly.
Tests added to verify.
DeltaFile
+121-0clang/unittests/Tooling/HeaderIncludesTest.cpp
+80-4clang/lib/Tooling/Inclusions/HeaderIncludes.cpp
+79-2clang-tools-extra/include-cleaner/unittests/AnalysisTest.cpp
+39-4clang/include/clang/Tooling/Inclusions/HeaderIncludes.h
+33-0clang/unittests/Format/CleanupTest.cpp
+12-13clang/lib/Format/Format.cpp
+364-236 files

LLVM/project 96cb9c4mlir/include/mlir/Conversion/ArithCommon AttrToLLVMConverter.h, mlir/lib/Conversion/XeVMToLLVM XeVMToLLVM.cpp

[mlir][LLVM][GPU] Migrate to explicit split inherent/discardable attribute APIs access (#218921)

Use discardable attribute APIs and typed operation accessors throughout
the LLVM and GPU dialect families, their conversions, translations, and
tests.

Assisted-by: Codex
DeltaFile
+55-0mlir/unittests/Dialect/LLVMIR/LLVMAttrsTest.cpp
+17-36mlir/include/mlir/Conversion/ArithCommon/AttrToLLVMConverter.h
+26-18mlir/lib/Dialect/GPU/IR/GPUDialect.cpp
+40-0mlir/test/Conversion/ArithToLLVM/attribute-storage.mlir
+25-9mlir/lib/Conversion/XeVMToLLVM/XeVMToLLVM.cpp
+17-12mlir/lib/Dialect/LLVMIR/IR/LLVMDialect.cpp
+180-7558 files not shown
+488-25264 files