LLVM/project 2ca0902llvm/lib/CodeGen/GlobalISel IRTranslator.cpp

[GlobalISel] Avoid double DenseMap lookups in ValueToVRegInfo (NFC) (#221741)

Improves CTMark geomean -0.06% on aarch64-O0-g.

https://llvm-compile-time-tracker.com/compare.php?from=97cbc1e404b980edc58bfbcabb6f1c61793b624b&to=fbf62152c51f2327cb2f4a382df90b3f345a8866&stat=instructions:u

Assisted-by: codex
DeltaFile
+10-23llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp
+10-231 files

LLVM/project 842f7afllvm/lib/Target/AArch64 AArch64PredicateAsCounterLoopRewrites.cpp

Format
DeltaFile
+1-1llvm/lib/Target/AArch64/AArch64PredicateAsCounterLoopRewrites.cpp
+1-11 files

FreeNAS/freenas ebed781src/middlewared/middlewared/plugins account.py, src/middlewared/middlewared/plugins/filesystem_ perm_check.py

Stricter user SSH public key validation to match OpenSSH behavior
DeltaFile
+154-0tests/api2/test_account_ssh_key.py
+120-0src/middlewared/middlewared/plugins/account.py
+46-11src/middlewared/middlewared/plugins/filesystem_/perm_check.py
+320-113 files

LLVM/project cb180d5llvm/cmake/modules FindLibXml2.cmake

[cmake] FindLibXml2: keep user-provided LIBXML2_DEFINITIONS (#221294)

LLVM's `FindLibXml2.cmake` (added in #166867) unconditionally does
`set(LIBXML2_DEFINITIONS ${PC_LIBXML_CFLAGS_OTHER})` and puts
`PC_LIBXML_CFLAGS_OTHER` on the imported targets. CMake's own
`FindLibXml2` module only takes pkg-config's flags when the library it
found is the one pkg-config describes; otherwise it keeps whatever
`LIBXML2_DEFINITIONS` the user passed and exposes it through
`INTERFACE_COMPILE_OPTIONS`.

This matters when cross-compiling against a static libxml2 on Windows.
Passing `-DLIBXML2_DEFINITIONS=-DLIBXML_STATIC
-DLIBXML2_LIBRARIES=.../libxml2s.lib` worked with LLVM 22 (CMake's
module): the define reached both the `xmlReadMemory` configure check and
the consumers of `LibXml2::LibXml2`. With LLVM 23 it is silently
dropped, `xmlexports.h` declares the API `__declspec(dllimport)`, the
check fails to link against the static library and
`LLVM_ENABLE_LIBXML2=FORCE_ON` aborts with `Failed to configure
libxml2`. (pkg-config on the Linux host finds the host's libxml2, so

    [20 lines not shown]
DeltaFile
+12-3llvm/cmake/modules/FindLibXml2.cmake
+12-31 files

Illumos/gate ecd9ba3usr/src/cmd/cmd-inet/sbin/dhcpagent util.c states.c, usr/src/lib/libdhcputil/common dhcp_inittab.c

11990 DHCP client support for "Classless Static Route" option
Reviewed by: Andy Fiddaman <illumos at fiddaman.net>
Reviewed by: Gordon Ross <gordon.w.ross at gmail.com>
Reviewed by: C Fraire <cfraire at me.com>
Approved by: Robert Mustacchi <rm at fingolfin.org>
DeltaFile
+354-11usr/src/lib/libdhcputil/common/dhcp_inittab.c
+279-39usr/src/cmd/cmd-inet/sbin/dhcpagent/bound.c
+234-0usr/src/test/util-tests/tests/libdhcputil/libdhcputil.c
+137-28usr/src/cmd/cmd-inet/sbin/dhcpagent/states.c
+77-0usr/src/test/util-tests/tests/libdhcputil/Makefile
+49-25usr/src/cmd/cmd-inet/sbin/dhcpagent/util.c
+1,130-10321 files not shown
+1,269-13827 files

LLVM/project 35fe7e1libc/src/__support/printf_core float_dec_converter_limited.h vasprintf_internal.h, libc/src/time/strftime_core composite_converter.h

[libc] Update printf_core::Writer to template on character type. (#220669)

This is motivated by working toward `swprintf`.

The primary goal is to enable a `CharT` template type parameter on
`printf_core::Writer`. This requires refactoring how the "overflow
write" logic is set up to get around the limitation on function template
partial specialization.

Key changes to `printf_core::Writer` and friends:
* Separate the overflow write logic from `WriteBuffer` into an
`OverflowWriter` template where specializations handle dispatch, and
remove the `WriteBuffer` subclasses.
* Rename from `WriteMode` to `OverflowMode` to try and shorten the
enumerators with minimal loss to clarity, and reduce the number of modes
to only two: `DROP_OVERFLOW` and `CALLBACK`.
* The number of dynamic function calls for flushing and resizing use
cases stays the same by templating the callback on a `WriteSink`.


    [3 lines not shown]
DeltaFile
+150-147libc/src/__support/printf_core/writer.h
+50-58libc/test/src/__support/printf_core/writer_test.cpp
+24-31libc/src/__support/printf_core/float_dec_converter.h
+22-20libc/src/__support/printf_core/vasprintf_internal.h
+18-18libc/src/__support/printf_core/float_dec_converter_limited.h
+16-16libc/src/time/strftime_core/composite_converter.h
+280-29036 files not shown
+418-41242 files

LLVM/project cd81f2dllvm/lib/Target/AArch64 AArch64PredicateAsCounterLoopRewrites.cpp, llvm/test/CodeGen/AArch64 predicate-as-counter-loop-rewrites.ll

Fixups
DeltaFile
+35-54llvm/lib/Target/AArch64/AArch64PredicateAsCounterLoopRewrites.cpp
+18-16llvm/test/CodeGen/AArch64/predicate-as-counter-loop-rewrites.ll
+53-702 files

LLVM/project ffb1792llvm/lib/CodeGen/SelectionDAG LegalizeDAG.cpp

[ConstantTime] Move the CT_SELECT expansion into a helper

The CT_SELECT case in ExpandNode was around 180 lines. Move it to
SelectionDAGLegalize::ExpandCTSELECT and name the operands, so the case is
three lines. Pure code motion: emitted assembly is unchanged for every RUN
line of the existing ct.select codegen tests.

Also use a temporary for the promoted SELECT so the call fits on one line
instead of wrapping after the assignment.

Co-Authored-By: Claude Opus 5 <noreply at anthropic.com>
DeltaFile
+193-185llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
+193-1851 files

LLVM/project 8c8aa74mlir/include/mlir/Dialect/LLVMIR LLVMIntrinsicOps.td, mlir/test/Target/LLVMIR llvmir-intrinsics.mlir

[mlir][LLVM] Add pdep and pext intrinsics (#220768)

Assisted-by: grok-4.6

Signed-off-by: Letu Ren <fantasquex at gmail.com>
DeltaFile
+22-0mlir/test/Target/LLVMIR/Import/intrinsic.ll
+18-0mlir/test/Target/LLVMIR/llvmir-intrinsics.mlir
+2-0mlir/include/mlir/Dialect/LLVMIR/LLVMIntrinsicOps.td
+42-03 files

LLVM/project a760450mlir/include/mlir/Dialect/LLVMIR ROCDLDialect.h CMakeLists.txt, mlir/lib/Dialect/LLVMIR CMakeLists.txt

[MLIR][ROCDL] Shard generated operation definitions (NFC) (#221729)

ROCDL generated operation definitions is amongst the slowest MLIR
translation unit. Generate eight definition shards, compile them as
separate sources, and use the generated sharded registration hook while
keeping custom parser and printer helpers in one implementation unit.

Assisted-by: Codex
DeltaFile
+22-0mlir/lib/Dialect/LLVMIR/IR/ROCDLOps.h
+16-0mlir/lib/Dialect/LLVMIR/IR/ROCDLOps.cpp
+5-9mlir/lib/Dialect/LLVMIR/IR/ROCDLDialect.cpp
+12-0mlir/lib/Dialect/LLVMIR/CMakeLists.txt
+8-1mlir/include/mlir/Dialect/LLVMIR/CMakeLists.txt
+2-2mlir/include/mlir/Dialect/LLVMIR/ROCDLDialect.h
+65-126 files

FreeBSD/ports f02f739security Makefile, security/vulnx pkg-descr distinfo

security/vulnx: New port: CLI for exploring vulnerability data
DeltaFile
+21-0security/vulnx/Makefile
+5-0security/vulnx/pkg-descr
+5-0security/vulnx/distinfo
+1-0security/Makefile
+32-04 files

FreeBSD/ports 9e87cf4audio Makefile, audio/elevenlabs-cli pkg-descr Makefile

audio/elevenlabs-cli: New port: Command-line interface for the ElevenLabs platform

The keyring crate's "vendored" feature makes libdbus-sys build a bundled
copy of D-Bus; files/patch-Cargo.toml drops it so the system library is
used instead. OPENSSL_NO_VENDOR does the same for openssl-sys.

The CLI exposes the whole ElevenLabs API as subcommands, so the generated
shell completions are about 6MB. They are gated behind a default-off
COMPLETIONS option; the man page is always installed.
DeltaFile
+665-0audio/elevenlabs-cli/distinfo
+331-0audio/elevenlabs-cli/Makefile.crates
+54-0audio/elevenlabs-cli/Makefile
+11-0audio/elevenlabs-cli/files/patch-Cargo.toml
+7-0audio/elevenlabs-cli/pkg-descr
+1-0audio/Makefile
+1,069-06 files

LLVM/project 15359d3llvm/lib/Target/Hexagon HexagonConstPropagation.cpp, llvm/test/CodeGen/Hexagon const-prop-undef.mir

Hexagon: Fix constant propagation crash on a use with no reaching definition (#220297)
DeltaFile
+314-0llvm/test/CodeGen/Hexagon/const-prop-undef.mir
+16-1llvm/lib/Target/Hexagon/HexagonConstPropagation.cpp
+330-12 files

FreeBSD/ports 2e082aftextproc/livediff distinfo Makefile

textproc/livediff: Update to 3.3.0

Move CARGO_CRATES into a separate Makefile.crates.
DeltaFile
+385-0textproc/livediff/Makefile.crates
+1-364textproc/livediff/Makefile
+77-29textproc/livediff/distinfo
+463-3933 files

FreeBSD/ports 7d31837devel/glab-tui Makefile Makefile.crates

devel/glab-tui: Update to 0.9.1
DeltaFile
+87-5devel/glab-tui/distinfo
+42-1devel/glab-tui/Makefile.crates
+1-2devel/glab-tui/Makefile
+130-83 files

FreeBSD/ports c4b115asysutils/blockio Makefile distinfo

sysutils/blockio: Update to 1.2.0
DeltaFile
+5-5sysutils/blockio/distinfo
+1-1sysutils/blockio/Makefile
+6-62 files

FreeBSD/ports e27d0a3net/cliproxyapi Makefile distinfo

net/cliproxyapi: Update to 7.2.154
DeltaFile
+5-5net/cliproxyapi/distinfo
+1-1net/cliproxyapi/Makefile
+6-62 files

FreeBSD/ports 98a1e07net/croc Makefile distinfo

net/croc: Update to 11.5.0
DeltaFile
+5-5net/croc/distinfo
+1-1net/croc/Makefile
+6-62 files

FreeBSD/ports 83d6ec9databases/pgschema Makefile distinfo

databases/pgschema: Update to 1.13.0
DeltaFile
+5-5databases/pgschema/distinfo
+1-2databases/pgschema/Makefile
+6-72 files

LLVM/project c4d8bd1mlir/include/mlir/Dialect/LLVMIR LLVMOps.td, mlir/lib/Target/LLVMIR ModuleImport.cpp

[mlir][llvm] Add convergent attribute to llvm.inline_asm. (#221990)

Expose LLVM's convergent call-site attribute on the LLVM dialect
inline_asm op. This allows marking an inline asm block as convergent so
that divergence-aware passes do not move it relative to divergent
control flow.
DeltaFile
+13-0mlir/test/Target/LLVMIR/Import/instructions.ll
+5-0mlir/test/Target/LLVMIR/llvmir.mlir
+3-0mlir/test/Dialect/LLVMIR/roundtrip.mlir
+2-0mlir/lib/Target/LLVMIR/Dialect/LLVMIR/LLVMToLLVMIRTranslation.cpp
+2-0mlir/include/mlir/Dialect/LLVMIR/LLVMOps.td
+1-0mlir/lib/Target/LLVMIR/ModuleImport.cpp
+26-04 files not shown
+30-010 files

LLVM/project ab20aaaclang CMakeLists.txt, llvm CMakeLists.txt

[CIR][CMake] Configure MLIR as a dependency-only project

ClangIR requires MLIR, but enabling CIR currently requires users to list MLIR
explicitly in LLVM_ENABLE_PROJECTS. That also attaches all MLIR build, install,
unit-test, and lit targets to the corresponding LLVM aggregates.

When Clang is selected and CLANG_ENABLE_CIR is enabled, append MLIR to the
effective LLVM_ENABLE_PROJECTS list. The common project setup compares that
list with the cached user selection, so an explicit MLIR selection retains its
normal behavior while an implicit selection is configured with EXCLUDE_FROM_ALL.

This makes MLIR targets available for CIR dependency resolution without adding
MLIR's aggregate targets. Keep the existing standalone ClangIR restriction and
do not configure MLIR when CIR is disabled.

Validation:
- Configured Clang with CIR and implicit MLIR test support.
- Configured Clang and MLIR explicitly with CIR and tests enabled.
- Configured Clang without CIR and verified that MLIR remains disabled.

    [4 lines not shown]
DeltaFile
+6-0llvm/CMakeLists.txt
+2-2clang/CMakeLists.txt
+8-22 files

LLVM/project 7daa456clang CMakeLists.txt, llvm CMakeLists.txt

[CMake] Infer dependency-only projects from the cache

LLVM_ENABLE_PROJECTS historically treats projects enabled to satisfy another
project's dependency the same as projects selected by the user. Consequently,
implicit projects attach their complete build, install, and test suites to
LLVM's aggregate targets.

Keep the cache entry as the user-requested project roots and use the normal
LLVM_ENABLE_PROJECTS variable as the effective dependency closure. Projects in
the effective list but not the cache entry are configured with EXCLUDE_FROM_ALL.
Normalize the special all value before comparing the two sets.

This makes Flang's MLIR and Clang dependencies dependency-only without a second
project collection. It also applies the same rule to Clang when it is added for
LLDB. Forward the cached roots to cross-compilation and bootstrap configurations
so implicit projects do not become explicit in nested builds.

Let MLIR own its dependency-only test policy: configure test support libraries
for downstream consumers without creating MLIR unit tests or registering its

    [10 lines not shown]
DeltaFile
+19-7mlir/CMakeLists.txt
+18-4llvm/CMakeLists.txt
+12-2llvm/cmake/modules/AddLLVM.cmake
+4-1clang/CMakeLists.txt
+1-1llvm/cmake/modules/CrossCompile.cmake
+54-155 files

LLVM/project 31fd4dfllvm/lib/Target/ARM ARMInstrInfo.cpp ARMBaseInstrInfo.cpp, llvm/lib/Target/M68k M68kInstrInfo.cpp

CodeGen: Remove stale LiveVariables.h includes from ARM and M68k InstrInfo

Co-authored-by: Claude (Claude-Opus-4.8)
DeltaFile
+0-1llvm/lib/Target/M68k/M68kInstrInfo.cpp
+0-1llvm/lib/Target/ARM/ARMInstrInfo.cpp
+0-1llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
+0-33 files

LLVM/project 52d922amlir/include/mlir/Dialect/SPIRV/IR CMakeLists.txt, mlir/lib/Dialect/SPIRV/IR SPIRVDialect.cpp CMakeLists.txt

[MLIR][spirv] Shard generated operation definitions (NFC) (#221811)

Generate SPIR-V operation definitions in eight shards and use the
generated registration hook. Keep parser, printer, and verification
helpers in the existing implementation TU and expose them through a
private header.

Assisted-by: Codex
DeltaFile
+43-0mlir/lib/Dialect/SPIRV/IR/SPIRVOpDefinition.h
+18-22mlir/lib/Dialect/SPIRV/IR/SPIRVOpDefinition.cpp
+17-0mlir/lib/Dialect/SPIRV/IR/SPIRVOpDefinitions.cpp
+15-0mlir/lib/Dialect/SPIRV/IR/CMakeLists.txt
+8-1mlir/include/mlir/Dialect/SPIRV/IR/CMakeLists.txt
+1-5mlir/lib/Dialect/SPIRV/IR/SPIRVDialect.cpp
+102-281 files not shown
+103-287 files

LLVM/project 93a9429llvm/include/llvm/DTLTO DTLTO.h, llvm/include/llvm/LTO LTO.h

Comments
DeltaFile
+6-9llvm/include/llvm/LTO/LTO.h
+2-10llvm/lib/LTO/LTO.cpp
+1-3llvm/lib/LTO/LTOBackend.cpp
+1-1llvm/include/llvm/DTLTO/DTLTO.h
+10-234 files

LLVM/project 1be7d4bllvm/lib/Target/AMDGPU/AsmParser AMDGPUAsmParser.cpp, llvm/test/MC/AMDGPU misaligned-vgpr-tuples-err.s

[AMDGPU] Route no-modifier reg-or-inline AsmParser operands through HwMode predicate

Convert the reg-or-inline operands with no modifiers (MFMA VGPR/AGPR
sources, VCSrc, v_pk_mov_b32, VOP scalar f64) from the fixed-class
isRegOrInlineNoMods to the HwMode-aware isRegOrInlineNoModsByHwMode, so an
odd-aligned tuple is rejected at the offending operand column instead of by
the validateVGPRAlign catch-all.

Co-Authored-By: Claude <noreply at anthropic.com>
DeltaFile
+53-46llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
+7-7llvm/test/MC/AMDGPU/misaligned-vgpr-tuples-err.s
+60-532 files

FreeBSD/ports 0fda10cnet/rustconn Makefile.crates Makefile

net/rustconn: Update to 0.21.8

ChangeLog:

1. https://github.com/totoshko88/RustConn/releases/tag/v0.21.8

Reported by:    "github-actions[bot]" <notifications at github.com>
DeltaFile
+5-5net/rustconn/distinfo
+2-2net/rustconn/Makefile
+1-1net/rustconn/Makefile.crates
+8-83 files

LLVM/project cb0e500llvm/test/CodeGen/SPIRV/hlsl-intrinsics sinh_mat.ll sqrt_mat.ll

[SPIRV] Add matrix type legalization for many float global opcodes (#220782)

fixes #220723

The issue in #220723 is that the global opcodes can not deduce the
element type when the input is a shuffle vector. This is the same issue
as #213783. All we have to do to fix this is to have deduceTypeFromUses
in the SPIRVPostLegalizer know that we need to look up the type from the
results register for these opcodes.

The secondary issue is that there were no matrix tests for any of these
global opcodes so I added them. I did not follow the template started by
the atan2 tests because those are overkill and testing way to much stuff
not related to opcode legalization.

Assisted on the tests by MAI-Code-1.1-Flash
DeltaFile
+72-0llvm/test/CodeGen/SPIRV/hlsl-intrinsics/log10_mat.ll
+66-0llvm/test/CodeGen/SPIRV/hlsl-intrinsics/sinh_mat.ll
+66-0llvm/test/CodeGen/SPIRV/hlsl-intrinsics/sqrt_mat.ll
+66-0llvm/test/CodeGen/SPIRV/hlsl-intrinsics/trunc_mat.ll
+66-0llvm/test/CodeGen/SPIRV/hlsl-intrinsics/tanh_mat.ll
+66-0llvm/test/CodeGen/SPIRV/hlsl-intrinsics/tan_mat.ll
+402-014 files not shown
+1,279-020 files

NetBSD/pkgsrc jlNO6EIdoc TODO CHANGES-2026

   Updated textproc/py-pdf, print/py-pspdfutils
VersionDeltaFile
1.5939+3-1doc/CHANGES-2026
1.27875+1-2doc/TODO
+4-32 files

NetBSD/pkgsrc LlUa9mdprint/py-pspdfutils Makefile distinfo

   py-pspdfutils: updated to 3.3.17

   3.3.17
   This release fixes a bug in psresize which made the --height option ineffective.
VersionDeltaFile
1.21+4-4print/py-pspdfutils/distinfo
1.44+3-4print/py-pspdfutils/Makefile
+7-82 files