LLVM/project 71d63d6lldb/test/API/functionalities/inline-sourcefile Makefile

[lldb][test] Fix Makefile for TestInlineSourceFiles.py (#194078)

The test did not build hidden.o with a custom target triple when
specified. Use CFLAGS from Makefile.rules to fix.
DeltaFile
+1-1lldb/test/API/functionalities/inline-sourcefile/Makefile
+1-11 files

FreeNAS/freenas e145006src/freenas/usr/local/bin truenas-initrd.py

NAS-140745 / 27.0.0-BETA.1 / remove USB boot logic in truenas-initrd.py (#18771)

## Summary

Remove the USB boot-pool detection and
`ZFS_INITRD_POST_MODPROBE_SLEEP=15` workaround from `truenas-initrd.py`.
The code was added five years ago during SCALE alpha to address a single
user's boot failure and has sat untouched since, despite USB boot no
longer being a supported configuration on TrueNAS.

## History

The workaround was introduced in commit
[ead10f29e5](https://github.com/truenas/middleware/commit/ead10f29e58fc185062c1abb2418a53cecf4a216)
(2021-01-20) to address
[NAS-108931](https://ixsystems.atlassian.net/browse/NAS-108931) —
*"TrueNAS SCALE fails to boot from USB"* — reported against
SCALE-20.12-ALPHA. The reporter's USB boot disk was not enumerated by
the kernel in time for `zpool import boot-pool`, so the import failed

    [43 lines not shown]
DeltaFile
+4-57src/freenas/usr/local/bin/truenas-initrd.py
+4-571 files

LLVM/project cf4f678offload/plugins-nextgen/common/src PluginInterface.cpp

[Offload] Make kernel dynamic memory handling more generic (#194403)

Make sure we do not get unexpected NumThreads and NumBlocks values when
launching non-bare kernels, and generalize the computation of the
dynamic block memory allocation to handle multi-dimensional blocks.

The DynBlockMem fallback is never used in a non-bare context where
`NumBlocks[1]` and `NumBlocks[2]` are not 1 so the code was correct, but
this patch makes sure that assumption is made explicit, and also
future-proofs the code in case we decide to allow multi-dimensional
blocks for fallback dyn block mem in some path.
DeltaFile
+6-2offload/plugins-nextgen/common/src/PluginInterface.cpp
+6-21 files

FreeBSD/src 2fb7264share/man/man7 security.7, usr.bin/mdo mdo.1

mdo.1: Cross-reference with security.7

MFC after:      3 days
Reviewed by:    olce
Differential Revision:  https://reviews.freebsd.org/D56024

(cherry picked from commit e23f0deceac4fb77c14066d4a76074548ee75fc4)
DeltaFile
+3-2usr.bin/mdo/mdo.1
+2-1share/man/man7/security.7
+5-32 files

FreeBSD/src 050ee86share/man/man7 security.7, usr.bin/mdo mdo.1

mdo.1: Cross-reference with security.7

MFC after:      3 days
Reviewed by:    olce
Differential Revision:  https://reviews.freebsd.org/D56024

(cherry picked from commit e23f0deceac4fb77c14066d4a76074548ee75fc4)
DeltaFile
+3-2usr.bin/mdo/mdo.1
+2-1share/man/man7/security.7
+5-32 files

LLVM/project 916cd55clang/docs ReleaseNotes.rst, clang/include/clang/Parse Parser.h

[Clang] Avoid an extra `FunctionPrototypeScope` for lambda trailing requires-clauses (#194068)

`ParseTrailingRequiresClause` currently always creates a synthetic
`FunctionPrototypeScope`. This is needed for ordinary function
declarators
whose prototype scope has already ended, but it is wrong for lambda
trailing
requires-clauses because they are parsed while the lambda prototype
scope is
still active.

The extra counted scope gives parameters in nested requires-expressions
an
incorrect function scope depth. Split the synthetic prototype-scope
setup from
the trailing requires-clause parser so the lambda path can parse the
clause in
the existing prototype scope.

Fixes: #123854
Fixes: #100774
DeltaFile
+25-0clang/test/CodeGenCXX/mangle-requires.cpp
+14-5clang/lib/Parse/ParseDeclCXX.cpp
+2-2clang/lib/Parse/ParseDecl.cpp
+1-0clang/docs/ReleaseNotes.rst
+1-0clang/include/clang/Parse/Parser.h
+43-75 files

LLVM/project d071e4bclang/lib/CIR/Dialect/Transforms FlattenCFG.cpp, clang/test/CIR/CodeGen try-no-throwing-calls.cpp

[CIR] Fix eraseOp assertion in TryOp flattening with unreachable handlers (#193615)

When a try block has catch handlers but no throwing calls, the handler
regions are unreachable and the TryOp is erased. However, ops inside the
handler regions may reference values that were inlined from the try body
into the parent block, causing an assertion in `eraseOp` ("expected that
op has no uses").

This drops all defined value uses from handler regions before erasing
the TryOp.

Made with [Cursor](https://cursor.com)
DeltaFile
+37-0clang/test/CIR/CodeGen/try-no-throwing-calls.cpp
+7-3clang/lib/CIR/Dialect/Transforms/FlattenCFG.cpp
+44-32 files

LLVM/project 1b06544clang/include/clang/CIR/Dialect/IR CIROps.td, clang/lib/CIR/CodeGen CIRGenBuiltin.cpp

[CIR] Emit frexp, modf, and powi builtins as library calls (#193795)

`__builtin_frexpf`, `__builtin_modf`, `__builtin_powi`, and related
builtins were incorrectly falling through to the `__builtin_isnan`
handler in `emitBuiltinExpr`, which calls `createBoolToInt` /
`createIsFPClass`. This produced a `cir.cast` with an integer result
type when the actual return type is floating-point, failing CIR
verification.

Break out of the switch so these builtins fall through to the
`isLibFunction()` path, which emits them as regular library calls.

Made with [Cursor](https://cursor.com)
DeltaFile
+376-0clang/test/CIR/CodeGenBuiltins/builtin-float.c
+62-4clang/lib/CIR/CodeGen/CIRGenBuiltin.cpp
+52-0clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.cpp
+48-1clang/include/clang/CIR/Dialect/IR/CIROps.td
+14-0clang/lib/CIR/Dialect/IR/CIRDialect.cpp
+552-55 files

LLVM/project 35fffe0mlir/include/mlir/Dialect/SPIRV/IR SPIRVBase.td, mlir/lib/Dialect/SPIRV/IR SPIRVTypes.cpp

[mlir][spirv] Add missing capabilities for CoopMatrix in TypeExtensionVisitor (#193803)

This adds missing capabilities when CoopMatrix is used with bf16 and
fp8.

Assisted-by: Codex
DeltaFile
+39-0mlir/test/Dialect/SPIRV/Transforms/vce-deduction.mlir
+10-1mlir/lib/Dialect/SPIRV/IR/SPIRVTypes.cpp
+8-1mlir/include/mlir/Dialect/SPIRV/IR/SPIRVBase.td
+57-23 files

FreeBSD/src 4a56a9ashare/man/man7 tuning.7

tuning.7: Fix suds typo in manual pages

MFC after:              3 days
Fixes:                  fc32c802158f Add two new manual pages
Differential Revision:  https://reviews.freebsd.org/D55814

(cherry picked from commit f9160912415eef078c32317e02695bc0cc775d39)
DeltaFile
+2-2share/man/man7/tuning.7
+2-21 files

FreeBSD/src e1d544cshare/man/man7 tuning.7

tuning.7: Fix suds typo in manual pages

MFC after:              3 days
Fixes:                  fc32c802158f Add two new manual pages
Differential Revision:  https://reviews.freebsd.org/D55814

(cherry picked from commit f9160912415eef078c32317e02695bc0cc775d39)
DeltaFile
+2-2share/man/man7/tuning.7
+2-21 files

LLVM/project c309f17llvm/lib/Transforms/Vectorize VPlanRecipes.cpp

More conservative isSafeToSpeculativelyExecute
DeltaFile
+19-10llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
+19-101 files

LLVM/project 0e9ccc1llvm/test/Transforms/LoopVectorize extract-value-widen.ll

Update test after rebase
DeltaFile
+2-5llvm/test/Transforms/LoopVectorize/extract-value-widen.ll
+2-51 files

LLVM/project 65370d6llvm/lib/Transforms/Vectorize VPlanTransforms.cpp

Use `post_order` directly as `vp_post_order_shallow` has been removed
DeltaFile
+2-2llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+2-21 files

LLVM/project 9bb907bllvm/lib/Transforms/Vectorize VPlanRecipes.cpp VPlanTransforms.cpp

Add VPRecipeBase::isSafeToSpeculativelyExecute
DeltaFile
+16-0llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
+2-6llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+4-0llvm/lib/Transforms/Vectorize/VPlan.h
+22-63 files

LLVM/project 09a556ellvm/lib/Transforms/Vectorize VPlanTransforms.cpp

Update llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp

Co-authored-by: Ramkumar Ramachandra <artagnon at tenstorrent.com>
DeltaFile
+3-5llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+3-51 files

LLVM/project b9785fcllvm/lib/Transforms/Vectorize VPlanTransforms.cpp

use VPWidenIntOrFpInductionRecipe for canonical IV bailouts
DeltaFile
+1-1llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+1-11 files

LLVM/project e192fc2llvm/lib/Transforms/Vectorize VPlanTransforms.cpp

Addressing code review comments
DeltaFile
+21-22llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+21-221 files

LLVM/project 7722a1fllvm/lib/Transforms/Vectorize VPlanTransforms.cpp

Extend post_order's lifetime
DeltaFile
+5-3llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+5-31 files

LLVM/project c742b3cllvm/lib/Transforms/Vectorize VPlanTransforms.cpp

Minor stylistic cleanup
DeltaFile
+12-12llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+12-121 files

LLVM/project ada4b13llvm/lib/Transforms/Vectorize VPlanTransforms.cpp VPlanTransforms.h

Don't pass RecipeBuilder

Legacy calls `setRecipe` on all processed recipes but really queries `getRecipe`
for memory operations only, that we don't touch in the scalarization as that
happens after all memory recipes has been processed.
DeltaFile
+1-3llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+1-2llvm/lib/Transforms/Vectorize/VPlanTransforms.h
+1-1llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+3-63 files

LLVM/project 3850033llvm/lib/Transforms/Vectorize VPlanTransforms.cpp

Use `reverse`/`IsaPred`
DeltaFile
+2-4llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+2-41 files

LLVM/project ff7e66dllvm/lib/Transforms/Vectorize VPlanTransforms.cpp

Just use `vputils::onlyFirstLaneUsed`
DeltaFile
+1-7llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+1-71 files

LLVM/project 1c504b3llvm/lib/Transforms/Vectorize VPlanTransforms.cpp VPlanTransforms.h, llvm/test/Transforms/LoopVectorize/AArch64 binop-costs.ll

[VPlan] Scalarize to first-lane-only directly on VPlan

This is needed to enable subsequent https://github.com/llvm/llvm-project/pull/182595.

I don't think we can fully port all scalarization logic from the legacy
path to VPlan-based right now because that would require us to introduce
interleave groups much earlier in VPlan pipeline, and without that we
can't really `assert` this new decision matches the previous CM-based
one. And without those `assert`s it's really hard to ensure we properly
port all the previous logic.

As such, I decided just to implement something much simpler that would
be enough for #182595. However, we perform this transformation before
delegating to the old CM-based decision, so it **is** effective
immediately and taking precedence even for consecutive loads/stores
right away.

Depends on https://github.com/llvm/llvm-project/pull/182592 but is stacked on
top of https://github.com/llvm/llvm-project/pull/182594 to enable linear
stacking for https://github.com/llvm/llvm-project/pull/182595.
DeltaFile
+65-0llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+5-5llvm/test/Transforms/LoopVectorize/AArch64/binop-costs.ll
+6-0llvm/lib/Transforms/Vectorize/VPlanTransforms.h
+4-2llvm/test/Transforms/LoopVectorize/X86/funclet.ll
+2-2llvm/test/Transforms/LoopVectorize/X86/drop-poison-generating-flags.ll
+3-0llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+85-93 files not shown
+88-119 files

FreeBSD/src 464818eshare/man/man7 tuning.7

tuning.7: Fix suds typo in manual pages

MFC after:              3 days
Fixes:                  fc32c802158f Add two new manual pages
Differential Revision:  https://reviews.freebsd.org/D55814

(cherry picked from commit f9160912415eef078c32317e02695bc0cc775d39)
DeltaFile
+2-2share/man/man7/tuning.7
+2-21 files

LLVM/project 4d20831llvm/lib/Target/WebAssembly WebAssemblyISelLowering.cpp WebAssemblyInstrSIMD.td, llvm/test/CodeGen/WebAssembly f16-intrinsics.ll

[WebAssembly] Support f16x8.demote_f32x4_zero (#193564)

Add support for the f16x8.demote_f32x4_zero instruction. This
instruction converts a v4f32 vector to a v4f16 and pads the result with
zeros to fill the 128-bit register.

This enables efficient lowering of fptrunc operations from v4f32 to
v4f16 when the result is zero-extended or when only the low lanes are
needed. A DAG combine is included to recognize these patterns and fold
them into the new instruction.
DeltaFile
+49-18llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
+19-0llvm/test/CodeGen/WebAssembly/f16-intrinsics.ll
+2-1llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td
+70-193 files

FreeBSD/src a28bb57usr.sbin/mixer mixer.c mixer.8

mixer(8): Deprecate some unintuitive control values

This is a follow-up to cc7479d7dc9b ("mixer(8): Improve mute and recsrc
controls"). These deprecated values will be completely removed on
2026-06-15.

Sponsored by:   The FreeBSD Foundation
MFC after:      1 week
Reviewed by:    0mp
Pull Request:   https://ron-dev.freebsd.org/FreeBSD/src/pulls/21
DeltaFile
+31-17usr.sbin/mixer/mixer.c
+9-11usr.sbin/mixer/mixer.8
+40-282 files

LLVM/project e52e9e3mlir/test/Dialect/SPIRV/IR types.mlir

[mlir][spirv] Add CoopMatrix type tests for fp8 and bf16 element types (#193805)
DeltaFile
+12-0mlir/test/Dialect/SPIRV/IR/types.mlir
+12-01 files

LLVM/project 0b8f826llvm/lib/Target/PowerPC PPCISelLowering.cpp PPCInstrInfo.td

[PowerPC] Simplify implementation of atomis loads (#191044)

The code for atomic loads is verbose. There are 10 different operations
and 4 memory sizes to support, which means 40 pseudo instructions are
used, with all the details repeated. This PR changes the following:

- Use a loop over the operations and the sizes to create the pseudo
instruction
 - Adds the memory size as last operand to the pseudo instruction
- Updates the C++ code to take advantage of the memory size in the
pseudo instruction
DeltaFile
+75-83llvm/lib/Target/PowerPC/PPCISelLowering.cpp
+32-109llvm/lib/Target/PowerPC/PPCInstrInfo.td
+21-35llvm/lib/Target/PowerPC/PPCInstr64Bit.td
+0-2llvm/lib/Target/PowerPC/PPCISelLowering.h
+128-2294 files

FreeBSD/ports 928d7abgames/dustrac Makefile distinfo, games/dustrac/files patch-CMakeLists.txt

games/dustrac: update 2.1.1 → 2.2.0

PR:             294409
Tested by:      alven
DeltaFile
+8-9games/dustrac/Makefile
+5-11games/dustrac/files/patch-CMakeLists.txt
+3-3games/dustrac/distinfo
+16-233 files