FreeBSD/ports a540ac4sysutils/khelpcenter Makefile

sysutils/khelpcenter: Update COMMENT and WWW

KHelpCenter is no longer shipped with KDE Plasma.
DeltaFile
+2-2sysutils/khelpcenter/Makefile
+2-21 files

FreeBSD/ports c100f11x11-wm/plasma6-kwin-x11 Makefile

x11-wm/plasma6-kwin-x11: Deprecate

Future KDE Plasma 6.8 release will be Wayland-exclusive.

https://blogs.kde.org/2025/11/26/going-all-in-on-a-wayland-future/
DeltaFile
+4-0x11-wm/plasma6-kwin-x11/Makefile
+4-01 files

LLVM/project 7bd1a45llvm/include/llvm/Transforms/Utils LoopUtils.h

Add LLVM_ABI marker
DeltaFile
+3-4llvm/include/llvm/Transforms/Utils/LoopUtils.h
+3-41 files

LLVM/project 4bad916libcxx/src/support/win32 locale_win32.cpp

remove locale:: qualification and remove & from __locale_guard
DeltaFile
+3-3libcxx/src/support/win32/locale_win32.cpp
+3-31 files

LLVM/project d86a3c5llvm/utils/gn/secondary/compiler-rt/lib/ubsan BUILD.gn

Fix BUILD file. (#225731)

CMakeList.txt was updated in
https://github.com/llvm/llvm-project/pull/225495
DeltaFile
+1-0llvm/utils/gn/secondary/compiler-rt/lib/ubsan/BUILD.gn
+1-01 files

LLVM/project 898bafallvm/lib/Target/AArch64 AArch64FastISel.cpp, llvm/lib/Target/AArch64/GISel AArch64CallLowering.cpp

[AArch64][GISel][FastISel] Fix Windows "sret inreg". (#225190)

5dc8aeb26d2896c65cbea0d3b87f090241444bb6 added a special case to
SelectionDAG ISel for "sret inreg" parameters: they are copied to x0 on
return. There was a review comment suggesting that GISel and FastISel
also needed fixes, but through some mixup the followup never happened.

Fixes #225060

(cherry picked from commit 8890be35705834c5af8e21424d7900639be03180)
DeltaFile
+556-96llvm/test/CodeGen/AArch64/arm64-windows-calls.ll
+49-13llvm/test/CodeGen/AArch64/arm64-windows-tailcall.ll
+8-3llvm/lib/Target/AArch64/GISel/AArch64CallLowering.cpp
+3-0llvm/lib/Target/AArch64/AArch64FastISel.cpp
+616-1124 files

LLVM/project 8646466llvm/lib/CodeGen/SelectionDAG DAGCombiner.cpp

[DAGCombiner] Restrict combineOrOfSetCCToUSUBOCarry to ZeroOrOneBooleanContent. (#224759)

We need to ensure the carry in matches boolean contents. We are checking
MaskedValueIsZero which is only valid for ZeroOrOneBooleanContent.

We could check ComputeNumSignBits for ZeroOrNegativeOneBooleanContent,
but no in tree target supports USUBO_CARRY and
ZeroOrNegativeOneBooleanContent.

This was an oversight in #223396 due to incorrect documentation for
USUBO_CARRY. I will fix that in a separate patch.

(cherry picked from commit 51d290508d4dd980c3ba03bcc873926c41c6e591)
DeltaFile
+6-3llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+6-31 files

LLVM/project 557e1d6llvm/lib/CodeGen/SelectionDAG DAGCombiner.cpp, llvm/test/CodeGen/AArch64 cgp-usubo.ll

[DAGCombiner] Require a 0/1 carry-in when rebuilding a borrow chain (#223396)

combineOrOfSetCCToUSUBOCarry (aae871ba1224) rewrites

  carry_out = (A <u B) | ((A == B) & carry_in)

to USUBO_CARRY(A, B, carry_in), accepting any value as carry_in.

USUBO_CARRY's third operand is specified as "1 if and only if there is
an incoming carry/borrow", so 0 and 1 are its only meaningful values.
Unlike SADDO_CARRY/SSUBO_CARRY it does not fall back to
getBooleanContents for wider types. The matched `and` is bitwise against
a 0/1 setcc, so only bit 0 of carry_in reaches carry_out and nothing
else constrains it; a carry_in with any other bit set is outside the
operand's contract and miscompiles.

Require carry_in to be known 0/1. Check known bits rather than look for
an `and carry_in, 1`: only bit 0 is demanded inside the `and`, so such a
mask is usually folded away before this combine runs. An i1 carry_in,

    [6 lines not shown]
DeltaFile
+90-0llvm/test/CodeGen/X86/subcarry.ll
+19-0llvm/test/CodeGen/AArch64/cgp-usubo.ll
+7-0llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+116-03 files

LLVM/project 615ef6cllvm/utils/release github-upload-release.py

github-upload-release: Create draft releases (#209876)

https://discourse.llvm.org/t/rfc-enabling-immutable-releases-v2/91180
(cherry picked from commit acd9cda52648d3acd68096697eba217226875930)
DeltaFile
+3-1llvm/utils/release/github-upload-release.py
+3-11 files

LLVM/project 2437391lld/ELF Relocations.cpp SyntheticSections.h, lld/test/ELF x86-64-gotpc-relax-too-far-relr.s

[lld] Don't drop RELR relocations for late-added GOT entries (#211911)

In #208959 we started dropping RELR relocations for late-added GOT
entries when reverting x86-64 GOTPCRELX relaxations in
X86_64::relaxOnce.

There is a separate unrelaxation bug where if the object files didn't
have any relocations of a certain type, we'd prune .relr.dyn (or even
.rela.dyn). Will be addressed separately.

Assisted-by: Gemini
(cherry picked from commit 5565740f2367093b89481ba7371adf820971977d)
DeltaFile
+26-0lld/test/ELF/x86-64-gotpc-relax-too-far-relr.s
+6-2lld/ELF/SyntheticSections.h
+2-2lld/ELF/Relocations.cpp
+34-43 files

LLVM/project dd45ed8mlir/include/mlir/IR OpImplementation.h, mlir/lib/IR AsmPrinter.cpp

[mlir] Reduce generated assembly printer compile time

Use fixed arrays for statically elided attributes and combine leading spaces
with literals. Move common operand printing out of generated call sites and
emit sliced operand getters to reduce optimizer work in large printers.

For omp.target, optimized print IR drops from 3,893 to 2,667 instructions.
The printing benchmark is 2.1% slower; check-mlir passes.

Assisted-by: Codex
DeltaFile
+32-9mlir/tools/mlir-tblgen/OpFormatGen.cpp
+15-8mlir/test/mlir-tblgen/op-format.td
+18-0mlir/include/mlir/IR/OpImplementation.h
+7-2mlir/tools/mlir-tblgen/OpDefinitionsGen.cpp
+9-0mlir/lib/IR/AsmPrinter.cpp
+2-0mlir/test/mlir-tblgen/op-decl-and-defs.td
+83-196 files

LLVM/project 141a976clang/test/OpenMP teams_distribute_parallel_for_simd_messages.cpp teams_distribute_parallel_for_simd_loop_messages.cpp, llvm/include/llvm/Frontend/OpenMP OMP.td

Revert "[clang][OpenMP] ORDERED clause is allowed on FOR in 4.5+ (#22… (#225669)

…5106)"

This reverts commit b0d31f40189dbdcf8b62e2c6ef79b039c5202aba.

This missed the restriction that ORDERED is not allowed when DISTRIBUTE
is a constituent construct.
DeltaFile
+0-6llvm/include/llvm/Frontend/OpenMP/OMP.td
+1-1clang/test/OpenMP/teams_distribute_parallel_for_simd_messages.cpp
+1-1clang/test/OpenMP/teams_distribute_parallel_for_simd_loop_messages.cpp
+1-1clang/test/OpenMP/teams_distribute_parallel_for_messages.cpp
+1-1clang/test/OpenMP/teams_distribute_parallel_for_loop_messages.cpp
+1-1clang/test/OpenMP/target_teams_distribute_parallel_for_simd_messages.cpp
+5-114 files not shown
+9-1510 files

LLVM/project bbcba32llvm/lib/Target/AMDGPU SIInstrInfo.cpp, llvm/test/CodeGen/AMDGPU si-instr-info-correct-implicit-operands.ll sdiv64.ll

AMDGPU: Mark dead carry-out when rewriting scalar carry op to VALU

If an operation is expanded with a dead scc def, the resultant vcc def will
also be dead, so preserve the dead flag. Reduces implicit reliance on
LiveVariables recomputing dead flags later.

Co-authored-by: Claude (Opus 4.8) <noreply at anthropic.com>
DeltaFile
+116-0llvm/test/CodeGen/AMDGPU/move-scalar-carry-to-valu-dead-vcc.mir
+11-0llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
+4-6llvm/test/CodeGen/AMDGPU/sdiv64.ll
+1-1llvm/test/CodeGen/AMDGPU/si-instr-info-correct-implicit-operands.ll
+132-74 files

LLVM/project 4cc9bdallvm/test/CodeGen/ARM machine-outliner-stack-fixup-thumb.mir

Update CodeGen/ARM/machine-outliner-stack-fixup-thumb.mir
DeltaFile
+1-1llvm/test/CodeGen/ARM/machine-outliner-stack-fixup-thumb.mir
+1-11 files

LLVM/project 1947fd7llvm/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

FreeBSD/ports a4cf632www/immich/files immich-admin.in

www/immich: Fix immich-admin for any login shell

su -m runs the command in the caller's login shell, so the wrapper
broke wherever root does not use a POSIX shell.  chroot(8) drops the
privileges without a shell in between and passes the arguments to
execve(2) unchanged.

Reported by:    mfechner
Sponsored by:   Netzkommune GmbH
DeltaFile
+5-2www/immich/files/immich-admin.in
+5-21 files

NetBSD/pkgsrc-wip 19bb2b7tuicr Makefile cargo-depends.mk

Update devel/tuicr to v.0.26
DeltaFile
+117-114tuicr/distinfo
+38-37tuicr/cargo-depends.mk
+1-1tuicr/Makefile
+156-1523 files

LLVM/project 869e02fllvm/lib/Target/AArch64 AArch64TargetTransformInfo.cpp, llvm/test/Analysis/CostModel/AArch64 free-widening-casts.ll

[AArch64] Allow cost-free cast absorption into widening instructions with multiple users (#210460)

Extend getCastInstrCost to recognize cast absorption into widening
instructions (uaddl, saddw, urhadd, etc.) when the cast has multiple
users, not just one.

Previously, the check only looked at a single user (`I->hasOneUser()`),
so a zext/sext feeding more than one widening-eligible instruction was
always costed as non-free, even when every user could individually
absorb it.

This also affected codegen: `optimizeExtendOrTruncateConversion` in
`AArch64ISelLowering.cpp` decides whether to lower a double-widening
zext via tbl shuffles based on whether `getCastInstrCost` reports the
cast as free. With multi-user casts always costed as non-free, this
took the tbl-lowering path in cases where every user could actually
absorb the cast for free, generating unnecessary tbl instructions.

Compiler Explorer:

    [14 lines not shown]
DeltaFile
+187-427llvm/test/Transforms/SLPVectorizer/AArch64/multiple_reduction.ll
+153-0llvm/test/CodeGen/AArch64/zext-to-tbl.ll
+57-34llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
+54-0llvm/test/Analysis/CostModel/AArch64/free-widening-casts.ll
+451-4614 files

LLVM/project 1d1284dllvm/lib/Transforms/Utils Local.cpp

[SimplifyCFG] Fix typos in comments (NFC) (#225649)
DeltaFile
+11-11llvm/lib/Transforms/Utils/Local.cpp
+11-111 files

LLVM/project 945b912llvm/include/llvm/Analysis ScalarEvolution.h

[SCEV] Drop `LLVM_ABI` annotation from header-defined `getSCEVAtExit` (NFC) (#225732)

ids-check was previously failing.
DeltaFile
+2-2llvm/include/llvm/Analysis/ScalarEvolution.h
+2-21 files

LLVM/project 03fb798llvm/lib/Transforms/Vectorize VPlanValue.h VPlanTransforms.h

[VPlan] Add missing exports to symbols used in tests (#225491)
DeltaFile
+7-4llvm/lib/Transforms/Vectorize/VPlan.h
+4-4llvm/lib/Transforms/Vectorize/VPlanUtils.h
+2-1llvm/lib/Transforms/Vectorize/VPlanDominatorTree.h
+1-1llvm/lib/Transforms/Vectorize/VPlanValue.h
+1-1llvm/lib/Transforms/Vectorize/VPlanTransforms.h
+15-115 files

NetBSD/pkgsrc-wip 234cc40Codewhale Makefile cargo-depends.mk

Update misc/Codewhale to v.0.9.13
DeltaFile
+99-42Codewhale/distinfo
+32-13Codewhale/cargo-depends.mk
+1-1Codewhale/Makefile
+132-563 files

FreeBSD/src 72bb9ebbin/pwd pwd.c

pwd(1): De-obfuscate, style(9)

In getcwd_logical(), test for a '.' or '..' component in one of the most
straightforward and intelligible ways possible.

In particular, this removes a superfluous re-test of the the component's
first character being '.' when the first one did not pass and, more
importantly, prevents the second test from relying on a side-effect in
the first.

While here, for better clarity, replace the loop that searches for '/'
with a simple call to strchrnul().

Add high-level comments about what is going on.

While here, test explicitly that pointed 'char' values are not 0 ('\0')
(style(9)).

While here, separate the successive steps of getcwd_logical() with blank

    [9 lines not shown]
DeltaFile
+14-7bin/pwd/pwd.c
+14-71 files

LLVM/project 2b14a19.github/workflows ids-check.yml

workflows/ids-check: Only run when llvm/ files are changed (#225458)

There is no reason to run this for changes to other projects/runtimes.
DeltaFile
+4-0.github/workflows/ids-check.yml
+4-01 files

FreeBSD/ports 324d776sysutils/plasma6-powerdevil Makefile, sysutils/plasma6-powerdevil/files patch-daemon_powerdevilcore.cpp

sysutils/plasma6-powerdevil: Backport upstream fix for KDE BUG 518513

to avoid low battery alerts for unknown percentages.
DeltaFile
+22-0sysutils/plasma6-powerdevil/files/patch-daemon_powerdevilcore.cpp
+1-0sysutils/plasma6-powerdevil/Makefile
+23-02 files

LLVM/project b05fbd4compiler-rt/lib/ubsan ubsan_loop_detect.cpp CMakeLists.txt, compiler-rt/test/ubsan/TestCases/Misc/Posix trap_loop_detect.cpp

[compiler-rt][ubsan] Fix ubsan_loop_detect sigaction setup and dynamic symbol list (#225495)

`__ubsan_install_trap_loop_detection` passed an un-initted ` sigaction`
to `sigaction(SIGPROF, ...)`, with garbage in `sa_flags` and `sa_mask`
(such as setting `SA_RESETHAND`, blocking `SIGILL`, and omitting
`SA_SIGINFO`).
This PR fixes it by zero-initialising sigaction 

Two other drive-by cleanups:
- set `SA_SIGINFO | SA_RESTART` because ITIMER_PROF fires SIGPROF
periodically. Without SA_RESTART, any blocking syscall (read, write,
waitpid, etc.) interrupted by a periodic SIGPROF tick would spuriously
fail with EINTR instead of transparently resuming after SigprofHandler
returns.
- pass `EXTRA ubsan.syms.extra` to
`add_sanitizer_rt_symbols(clang_rt.ubsan_loop_detect ...)` in
`CMakeLists.txt` so `libclang_rt.ubsan_loop_detect.a.syms` is not
generated as an empty `{ };` dynamic list (which causes a syntax error
with GNU `ld.bfd`).
DeltaFile
+51-0compiler-rt/test/ubsan/TestCases/Misc/Posix/trap_loop_detect.cpp
+2-1compiler-rt/lib/ubsan/ubsan_loop_detect.cpp
+2-1compiler-rt/lib/ubsan/CMakeLists.txt
+55-23 files

LLVM/project 9f5238dorc-rt/test/unit CMakeLists.txt

[orc-rt] Drop redundant DEFINE_SYMBOL ORC_RT_TEST_DLL_EXPORTS (#225685)

ORC_RT_TEST_DLL_EXPORTS was already defined in the previous block.
DeltaFile
+0-3orc-rt/test/unit/CMakeLists.txt
+0-31 files

LLVM/project 60b069fmlir/include/mlir/Dialect/Tosa/IR TosaComplianceData.h.inc, mlir/test/Dialect/Tosa tosa-validation-version-1p0-invalid.mlir ops.mlir

[mlir][tosa] Add MXFP support for REVERSE (#225058)

Accept the six block-scaled MX types in TOSA 1.1 draft compliance
checks. Preserve REVERSE on constant value splats whose block scales can
differ; reversing a unit dimension remains a no-op.

Cover supported types, version and extension requirements, invalid
shapes and axes, and block-scaled canonicalization.

Signed-off-by: Peng Sun <peng.sun at arm.com>
DeltaFile
+48-0mlir/test/Dialect/Tosa/tosa-validation-version-1p1-valid.mlir
+32-0mlir/test/Dialect/Tosa/verifier.mlir
+25-1mlir/include/mlir/Dialect/Tosa/IR/TosaComplianceData.h.inc
+22-0mlir/test/Dialect/Tosa/canonicalize.mlir
+8-0mlir/test/Dialect/Tosa/tosa-validation-version-1p0-invalid.mlir
+8-0mlir/test/Dialect/Tosa/ops.mlir
+143-12 files not shown
+153-18 files

NetBSD/pkgsrc g4eafqldoc CHANGES-2026

   doc: Updated cad/klayout to 0.30.12
VersionDeltaFile
1.6260+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc OOZDajycad/klayout Makefile distinfo

   (cad/klayout) Updated 0.30.10 to 0.30.12

   0.30.12          (2026-08-26):
   * Bugfix: %GITHUB%/issues/2434 Application crashes with Ruby PCell

   0.30.11          (2026-08-23):
   * Bugfix: %GITHUB%/issues/2362 Range checks of integers in Python API and correct string deserialization of MIN_INT
   * Bugfix: %GITHUB%/issues/2369 Skipping cell name in OASIS error messages or warning unless inside a cell
   * Enhancement: %GITHUB%/issues/2374 LEF/DEF Import - skip duplicate Macros feature
   * Enhancement: %GITHUB%/issues/2407 Visualize "Select" and "Partial" via selection box style
   * Bugfix: %GITHUB%/issues/2416 Two-layer DRC check without merged first input produces separation violations that 0.30.9 does not reportbug
   * Enhancement: %GITHUB%/issues/2417 Better error message in LVS "name" function
   * Bugfix: %GITHUB%/issues/2419 Arc disappears when zoomed in and all anchor points are outside the viewportbug
   * Bugfix: %GITHUB%/issues/2423 DRC regression (separation check)
   * Bugfix: %GITHUB%/issues/2429 Internal error on triangulation
   * Bugfix: DXF - avoiding generating duplicates of zero layer during DXF read/write spin.
   * Bugfix: PCellDeclarationHelper documentation for Python was not visible in Assistant
   * Enhancement: Text markers can now be configured to have a filled text box
   * Bugfix: Python does not generate "long long" Variant types when not required

    [16 lines not shown]
VersionDeltaFile
1.54+4-4cad/klayout/distinfo
1.110+2-3cad/klayout/Makefile
+6-72 files