LLVM/project 2dfd20dllvm/lib/Target/AMDGPU AMDGPURegBankLegalizeHelper.cpp, llvm/test/CodeGen/AMDGPU/GlobalISel unmerge-sgpr-s16.mir

AMDGPU/GlobalISel: Fix sgpr s16 unmerge lowering in regbanklegalize

Used to fail EXPENSIVE_CHECKS because of type mismatch.
DeltaFile
+4-4llvm/test/CodeGen/AMDGPU/GlobalISel/unmerge-sgpr-s16.mir
+5-3llvm/lib/Target/AMDGPU/AMDGPURegBankLegalizeHelper.cpp
+9-72 files

LLVM/project a6c926bclang/lib/Analysis ThreadSafety.cpp, clang/test/SemaCXX warn-thread-safety-analysis.cpp

[Thread Safety Analysis] Fix a bug of context saving in alias-analysis (#178825)

The commit b4c98fcbe1504841203e610c351a3227f36c92a4 introduces
alias-analysis and conservatively invalidates variable definitions at
function calls. For each invalidated argument, it creates and pushes a
context. So if there are multiple arguments being invalidated, there are
more than one context being pushed. However, the analysis expects one
context at the program point of a call, causing context mismatch. This
issue could lead to false negatives.
For example,
```
    MyLock->Lock();               // 'MyLock' holds the lock
    Lock_t *Ptr = MyLock;      // 'Ptr' aliases with 'MyLock'
    // Before the fix, two contexts are saved and pushed at the call below, causing context mismatch later.
    escapeAliasMultiple(&Irrelevant, &Ptr);  
    Ptr->Unlock();                   // 'Ptr' may no longer hold the lock but the analyzer missed it due to context mismatch
```
This commit fixes the issue.


    [2 lines not shown]
DeltaFile
+10-0clang/test/SemaCXX/warn-thread-safety-analysis.cpp
+4-3clang/lib/Analysis/ThreadSafety.cpp
+14-32 files

LLVM/project 4b4c32cllvm/utils/gn/secondary/compiler-rt/lib/builtins sources.gni

[gn] port e1f69ee8e847
DeltaFile
+3-0llvm/utils/gn/secondary/compiler-rt/lib/builtins/sources.gni
+3-01 files

LLVM/project 72d86a5llvm/lib/Target/AMDGPU AMDGPURegBankLegalizeHelper.cpp, llvm/test/CodeGen/AMDGPU/GlobalISel unmerge-sgpr-s16.mir

AMDGPU/GlobalISel: Fix sgpr s16 unmerge lowering in regbanklegalize

Used to fail EXPENSIVE_CHECKS because of type mismatch.
DeltaFile
+5-3llvm/lib/Target/AMDGPU/AMDGPURegBankLegalizeHelper.cpp
+4-4llvm/test/CodeGen/AMDGPU/GlobalISel/unmerge-sgpr-s16.mir
+9-72 files

LLVM/project 6716acdllvm/test/TableGen TargetLibraryInfo.td, llvm/utils/TableGen/Basic TargetLibraryInfoEmitter.cpp

[NFC][TableGen] Adopt IfDefEmitter in TargetLibraryInfoEmitter (#179388)

DeltaFile
+29-34llvm/utils/TableGen/Basic/TargetLibraryInfoEmitter.cpp
+7-7llvm/test/TableGen/TargetLibraryInfo.td
+36-412 files

LLVM/project e4c7ef2llvm/utils/TableGen X86MnemonicTables.cpp

[NFC][TableGen] Adopt CodeGenHelpers in X86MnemonicEmitter (#179324)

Additionally, cleanup the code a bit to use nested namespace definition
and emit it per code section, and emit spaces instead of tabs.
DeltaFile
+24-24llvm/utils/TableGen/X86MnemonicTables.cpp
+24-241 files

LLVM/project 078f6bdllvm/include/llvm/TableGen CodeGenHelpers.h, llvm/test/TableGen bare-minimum-psets.td pset-enum.td

[NFC][TableGen] Adopt CodeGenHelpers in RegInfoEmitter (#179017)

- Change `NamespaceEmitter` to allow emitting anonymous namespaces.
- Adopt IfDef and namespace emitters in RegInfoEmitter.
DeltaFile
+68-93llvm/utils/TableGen/RegisterInfoEmitter.cpp
+11-0llvm/include/llvm/TableGen/CodeGenHelpers.h
+3-3llvm/test/TableGen/bare-minimum-psets.td
+2-2llvm/test/TableGen/pset-enum.td
+84-984 files

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

[SelectionDAGISel] Separate the operand numbers in OPC_EmitNode/MorphNodeTo into their own table. (#178722)

The operand lists for these opcode require 1 byte per operand and are
usually small values that fit in 3-4 bits. This makes their storage
inefficient. In addition, many EmitNode/MorphNodeTo in the isel table
will use the same list of operand numbers.

This patch proposes to separate the operand lists into their own table
where they can be de-duplicated. The OPC_EmitNode/MorphNodeTo in the
main table will only store an index into this smaller table.

This is a reduced version of a suggestion from this very old FIXME.
https://github.com/llvm/llvm-project/blob/d8d4096c0be0a6a3248c8deae96608913a85debf/llvm/utils/TableGen/DAGISelMatcherGen.cpp#L1070

For RISC-V this reduces the main table from 1437353 bytes to 1276015
bytes plus a 929 byte operand list table. A savings of about 11%.

For X86 this reduces the main table from 719237 bytes to 623612 bytes
plus a 1042 byte operand list table. A savings of about 11%.

I expect further savings could be had by moving more bytes over.
DeltaFile
+57-6llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
+17-8llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
+6-2llvm/test/TableGen/CPtrWildcard.td
+7-0llvm/test/TableGen/RegClassByHwMode.td
+3-3llvm/test/TableGen/dag-isel-regclass-emit-enum.td
+1-1llvm/include/llvm/CodeGen/SelectionDAGISel.h
+91-206 files

LLVM/project 22c8344libc/src/__support ctype_utils.h, libc/src/__support/math common_constants.h range_reduction_double_common.h

[libc] Address size bloat issues (#179398)

This refactoring addresses bloat by removing static function specifiers.
DeltaFile
+17-17libc/src/__support/math/common_constants.h
+13-15libc/src/__support/ctype_utils.h
+2-2libc/src/__support/math/range_reduction_double_common.h
+1-1libc/src/__support/math/atan2.h
+1-1libc/src/__support/math/cos.h
+1-1libc/src/__support/math/sin.h
+35-376 files

LLVM/project 792f7b0llvm/lib/Transforms/Vectorize VPlanTransforms.cpp VPlanPatternMatch.h, llvm/test/Transforms/LoopVectorize/AArch64 partial-reduce-fdot-product.ll

[VPlan] Refine exit select check in transformtoPartialReduction.

Make sure we find the actual select for the exit users and only use it
for the final link in the chain. This fixes a miscompile after
90b3712d8a20efa2cbaadc177da576e485dce038.
DeltaFile
+54-0llvm/test/Transforms/LoopVectorize/AArch64/partial-reduce-fdot-product.ll
+10-6llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+4-0llvm/lib/Transforms/Vectorize/VPlanPatternMatch.h
+68-63 files

FreeBSD/ports d27150esecurity/arti distinfo Makefile.crates

security/arti: Update to 2.0.0
DeltaFile
+213-197security/arti/distinfo
+105-97security/arti/Makefile.crates
+2-3security/arti/Makefile
+320-2973 files

LLVM/project 19fab95llvm/lib/Target/AMDGPU AMDGPURegBankLegalizeHelper.cpp, llvm/test/CodeGen/AMDGPU/GlobalISel unmerge-sgpr-s16.mir

AMDGPU/GlobalISel: Fix sgpr s16 unmerge lowering in regbanklegalize

Used to fail EXPENSIVE_CHECKS because of type mismatch.
DeltaFile
+5-3llvm/lib/Target/AMDGPU/AMDGPURegBankLegalizeHelper.cpp
+4-4llvm/test/CodeGen/AMDGPU/GlobalISel/unmerge-sgpr-s16.mir
+9-72 files

LLVM/project d510c4cllvm/lib/Transforms/Vectorize VPlanCFG.h, llvm/unittests/Transforms/Vectorize VPlanTest.cpp

[VPlan] Generalize `VPAllSuccessorsIterator` to support predecessors (#178724)

To be used in Mel's https://github.com/llvm/llvm-project/pull/173265.

---------

Co-authored-by: Florian Hahn <flo at fhahn.com>
Co-authored-by: Luke Lau <luke_lau at icloud.com>
DeltaFile
+103-61llvm/lib/Transforms/Vectorize/VPlanCFG.h
+33-2llvm/unittests/Transforms/Vectorize/VPlanTest.cpp
+136-632 files

NetBSD/pkgsrc xk3e3gndoc CHANGES-2026

   doc: Updated www/hugo to 0.155.2
VersionDeltaFile
1.889+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc 0TS3Vpbwww/hugo distinfo Makefile

   hugo: Update to 0.155.2

   upstream changes:
   -----------------
   v0.155.2
   Note that the bug fix below is for the two new dimensions introduced in v0.153.0 (version and role), multiple languages worked fine. Also, changes to the first version and role also worked, which had me head-scratching for a while. Oh, well, enjoy.
     * Fix template change detection for multi-version sites 0f1c7d1 @bep #14461
     * resources/image: Add some image decode/encode debug logging 6bd2bde @bep #14337 #14460
VersionDeltaFile
1.54+4-4www/hugo/distinfo
1.135+2-2www/hugo/Makefile
+6-62 files

NetBSD/pkgsrc-wip 502b067dovecot24 COMMIT_MSG

dovecot24: Add COMMIT_MSG with attribution
DeltaFile
+4-0dovecot24/COMMIT_MSG
+4-01 files

NetBSD/pkgsrc-wip d239331dovecot24 TODO

dovecot24: Add TODO items
DeltaFile
+21-0dovecot24/TODO
+21-01 files

LLVM/project 3db2fd8clang/lib/CIR/CodeGen CIRGenCall.cpp, clang/test/CIR/CodeGen alloc-size.c

[CIR] Implement 'allocsize' function/call attribute lowering (#179342)

The alloc_size attribute takes the argument number(normalized to the
    index!) of the element size and count, for things like 'malloc' or
'calloc'.

This ends up being slightly more complicated than others, as this has
data that we have to decide on a format for. LLVM chooses to pack both
of these 32 bit values into a single i64, but unpacks it for the purpose
of input/output. The second value, the number of elements, is optional.

This patch uses a DenseI32ArrayAttr to store them for the LLVMIR
dialect, which gets us the packed nature, but doesn't require us doing
any work to unpack it.
DeltaFile
+79-0clang/test/CIR/CodeGen/alloc-size.c
+52-0mlir/test/Target/LLVMIR/llvmir.mlir
+24-0mlir/test/Target/LLVMIR/Import/instructions.ll
+21-0mlir/lib/Target/LLVMIR/ModuleImport.cpp
+14-5clang/lib/CIR/CodeGen/CIRGenCall.cpp
+18-0mlir/lib/Target/LLVMIR/ModuleTranslation.cpp
+208-511 files not shown
+263-1617 files

NetBSD/src gHrTDGcdoc CHANGES-11.0

   182
VersionDeltaFile
1.1.2.75+64-1doc/CHANGES-11.0
+64-11 files

NetBSD/src xJf92BKlib/libc Makefile.inc, sys/arch/evbarm/conf MMNET_GENERIC MPCSA_GENERIC

   Apply patch (requested by martin in ticket #182):
   Remove "options DIAGNOSTIC" and "options DEBUG" from all kernels
   and _DIAGNOSTIC from libc.
VersionDeltaFile
1.22.4.1+6-2lib/libc/Makefile.inc
1.207.8.1+4-4sys/arch/pmax/conf/GENERIC
1.56.4.1+4-4sys/arch/evbarm/conf/MMNET_GENERIC
1.77.4.1+4-4sys/arch/evbarm/conf/MPCSA_GENERIC
1.34.4.1+4-4sys/arch/mvmeppc/conf/GENERIC
1.30.8.1+4-4sys/arch/usermode/conf/GENERIC.common
+26-2252 files not shown
+150-14658 files

FreeBSD/ports d766b80devel/hs-spago distinfo Makefile, devel/spago Makefile pkg-descr

devel/hs-spago: Update to 1.0.3 and move to devel/spago

PR:             272064
DeltaFile
+0-481devel/hs-spago/distinfo
+0-215devel/hs-spago/Makefile
+29-0devel/spago/Makefile
+3-0devel/spago/pkg-descr
+0-3devel/hs-spago/pkg-descr
+3-0devel/spago/distinfo
+35-6991 files not shown
+36-6997 files

NetBSD/src e06hMWetests/usr.bin/xlint/lint1 expr_sizeof.c, usr.bin/xlint/lint1 decl.c lint1.h

   lint: fix _Alignas in declarations

   Most workarounds for disabling static_assert declarations in lint mode
   are no longer needed.
VersionDeltaFile
1.20+3-8tests/usr.bin/xlint/lint1/expr_sizeof.c
1.425+6-4usr.bin/xlint/lint1/decl.c
1.238+3-1usr.bin/xlint/lint1/lint1.h
+12-133 files

FreeBSD/ports 4d5a836net-p2p/libtorrent distinfo Makefile, net-p2p/rtorrent distinfo Makefile

net-p2p/{lib,r}torrent: Roll back to 0.16.5

Due to instability of 0.16.6, roll back to 0.16.5 stable.
As a temporary measure as upstream is working on a release fix, let's
roll back with a portrevision bump.

PR:             292914
Reported by:    glebius
Reviewed by:    glebius, novel
MFH:            2026Q1
See also:       https://github.com/rakshasa/rtorrent/issues/1689

(cherry picked from commit 73e88b9f23d4986b5862933ff0d07f9ebf0aeee7)
DeltaFile
+3-3net-p2p/libtorrent/distinfo
+3-3net-p2p/rtorrent/distinfo
+3-1net-p2p/libtorrent/Makefile
+3-1net-p2p/rtorrent/Makefile
+2-2net-p2p/libtorrent/pkg-plist
+14-105 files

FreeBSD/ports 73e88b9net-p2p/libtorrent distinfo pkg-plist, net-p2p/rtorrent distinfo Makefile

net-p2p/{lib,r}torrent: Roll back to 0.16.5

Due to instability of 0.16.6, roll back to 0.16.5 stable.
As a temporary measure as upstream is working on a release fix, let's
roll back with a portrevision bump.

PR:             292914
Reported by:    glebius
Reviewed by:    glebius, novel
MFH:            2026Q1
See also:       https://github.com/rakshasa/rtorrent/issues/1689
DeltaFile
+3-3net-p2p/rtorrent/distinfo
+3-3net-p2p/libtorrent/distinfo
+2-2net-p2p/libtorrent/pkg-plist
+3-1net-p2p/libtorrent/Makefile
+3-1net-p2p/rtorrent/Makefile
+14-105 files

FreeBSD/ports 42d0e40devel/tvision distinfo Makefile

devel/tvision: Update to g20260111

Changelog: https://github.com/magiblot/tvision/compare/df6424f...85aaeca

Approved by:    eduardo (mentor, implicit)
MFH:            2026Q1

(cherry picked from commit a9ad56f5b328818b0b345b2c6a098ca74e343a98)
DeltaFile
+3-3devel/tvision/distinfo
+2-2devel/tvision/Makefile
+5-52 files

FreeBSD/ports a9ad56fdevel/tvision distinfo Makefile

devel/tvision: Update to g20260111

Changelog: https://github.com/magiblot/tvision/compare/df6424f...85aaeca

Approved by:    eduardo (mentor, implicit)
MFH:            2026Q1
DeltaFile
+3-3devel/tvision/distinfo
+2-2devel/tvision/Makefile
+5-52 files

NetBSD/pkgsrc jqkZcy1doc CHANGES-2026

   Updated lang/python314, lang/py314-html-docs
VersionDeltaFile
1.888+3-1doc/CHANGES-2026
+3-11 files

LLVM/project 414ec6allvm/lib/Target/AMDGPU AMDGPURegBankLegalizeHelper.cpp, llvm/test/CodeGen/AMDGPU/GlobalISel unmerge-sgpr-s16.mir

AMDGPU/GlobalISel: Fix sgpr s16 unmerge lowering in regbanklegalize

Used to fail EXPENSIVE_CHECKS because of type mismatch.
DeltaFile
+5-3llvm/lib/Target/AMDGPU/AMDGPURegBankLegalizeHelper.cpp
+4-4llvm/test/CodeGen/AMDGPU/GlobalISel/unmerge-sgpr-s16.mir
+9-72 files

NetBSD/pkgsrc B9AWSoqlang/py314-html-docs distinfo PLIST, lang/python314 PLIST distinfo

   python314 py314-html-docs: updated to 3.14.3

   Python 3.14.3

   Windows
   gh-128067: Fix a bug in PyREPL on Windows where output without a trailing newline was overwritten by the next prompt.
   Tools/Demos
   gh-142095: Make gdb ‘py-bt’ command use frame from thread local state when available. Patch by Sam Gross and Victor Stinner.
   Tests
   gh-144415: The Android testbed now distinguishes between stdout/stderr messages which were triggered by a newline, and those triggered by a manual call to flush. This fixes logging of progress indicators and similar content.
   gh-143460: Skip tests relying on infinite recusion if stack size is unlimited.
   gh-65784: Add support for parametrized resource wantobjects in regrtests, which allows to run Tkinter tests with the specified value of tkinter.wantobjects, for example -u wantobjects=0.
   gh-143553: Add support for parametrized resources, such as -u xpickle=2.7.
   gh-142836: Accommodated Solaris in test_pdb.test_script_target_anonymous_pipe.
   bpo-31391: Forward-port test_xpickle from Python 2 to Python 3 and add the resource back to test’s command line.
   Security
   gh-144125: BytesGenerator will now refuse to serialize (write) headers that are unsafely folded or delimited; see verify_generated_headers. (Contributed by Bas Bloemsaat and Petr Viktorin in gh-121650).
   gh-143935: Fixed a bug in the folding of comments when flattening an email message using a modern email policy. Comments consisting of a very long sequence of non-foldable characters could trigger a forced line wrap that omitted the required leading space on the continuation line, causing the remainder of the comment to be interpreted as a new header field. This enabled header injection with carefully crafted inputs.
   gh-143925: Reject control characters in data: URL media types.

    [114 lines not shown]
VersionDeltaFile
1.3+17-1lang/python314/PLIST
1.7+4-4lang/python314/distinfo
1.4+4-4lang/py314-html-docs/distinfo
1.3+3-3lang/py314-html-docs/PLIST
1.4+2-2lang/python314/dist.mk
1.4+2-2lang/py314-html-docs/Makefile
+32-161 files not shown
+33-187 files

LLVM/project 9590f1eclang/include/clang/CIR/Dialect/IR CIROps.td CIRTypes.td, clang/lib/CIR/Dialect/IR CIRDialect.cpp

[CIR] Add CIR types and operations for flattened EH and cleanup (#178496)

This adds the CIR dialect definitions for the new types and operations
that will be needed to perform CFG flattening on the high-level CIR
representation of exception handlng and cleanups. Tests are added for
the dialect printing, parsing, and verification.

This does not include any code to flatten the CFG or otherwise generate
the new operations or to lower them into other forms. That support will
be added in later changes.
DeltaFile
+256-0clang/include/clang/CIR/Dialect/IR/CIROps.td
+225-0clang/test/CIR/IR/eh-flat.cir
+148-0clang/test/CIR/IR/invalid-eh-flat.cir
+142-0clang/lib/CIR/Dialect/IR/CIRDialect.cpp
+42-1clang/include/clang/CIR/Dialect/IR/CIRTypes.td
+813-15 files