LLVM/project deb6854llvm/lib/Target/NVPTX NVPTXAsmPrinter.cpp NVPTXAsmPrinter.h, llvm/test/CodeGen/NVPTX globals_init.ll

[NVPTX] Pad non-power-of-2 vectors in structs properly. (#201246)

A non-power-of-2 vector inside of a struct is padded up to its alloc
size.

But when the NVPTX asm printer emits bytes for such a struct, it
currently skips this tail padding, thus emitting an incorrect struct.
DeltaFile
+7-2llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
+9-0llvm/test/CodeGen/NVPTX/globals_init.ll
+3-0llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h
+19-23 files

LLVM/project 67a641cmlir/include/mlir/Dialect/OpenACC OpenACCCGOps.td, mlir/lib/Dialect/OpenACC/IR OpenACCCG.cpp OpenACC.cpp

[mlir][acc] Specialize compute region target during ACCComputeLowering (#201386)

During ACCComputeLowering, when an acc compute region (such as
acc.parallel) is split into in acc.kernel_environment and
acc.compute_region, all wait and async operands are transferred over.
This includes the multiple lists that are used to manage device_type
specific aspects eg:
`acc parallel async device_type(nvidia) async(2)`
This ends up as
`acc.parallel async([#acc.device_type<none>], %c2_i32 : i32
[#acc.device_type<nvidia>])`

And similarly, acc.kernel_environment inherited both async aspects.
However, during ACCComputeLowering, the pass knows its device_type
target. Thus it can directly create a single async (because only
async(2) applies when device_type is nvidia): `acc.kernel_environment
async(%c2_i32 : i32)`

This MR simplifies the operation to not hold all of the multiple lists

    [2 lines not shown]
DeltaFile
+207-0mlir/test/Dialect/OpenACC/acc-compute-lowering-compute-async-wait.mlir
+91-46mlir/lib/Dialect/OpenACC/IR/OpenACCCG.cpp
+17-18mlir/include/mlir/Dialect/OpenACC/OpenACCCGOps.td
+9-5mlir/lib/Dialect/OpenACC/IR/OpenACC.cpp
+5-5mlir/test/Dialect/OpenACC/canonicalize.mlir
+1-1mlir/lib/Dialect/OpenACC/Transforms/ACCComputeLowering.cpp
+330-756 files

LLVM/project 309ace5llvm/lib/Target/RISCV RISCVInstrInfo.cpp

[RISCV] Remove unnecessary explicit template parameter on has_single_bit (#201421)

I think this code was extracted into a function and the Amount was not a
uint32_t when it was in the original location.
DeltaFile
+3-3llvm/lib/Target/RISCV/RISCVInstrInfo.cpp
+3-31 files

LLVM/project 3d3302allvm/docs DeveloperPolicy.md

Massage the whitespace further, keep the old wrapping in more bullet lists
DeltaFile
+168-168llvm/docs/DeveloperPolicy.md
+168-1681 files

LLVM/project 9816052llvm/lib/Target/NVPTX NVPTXAsmPrinter.cpp, llvm/test/CodeGen/NVPTX global-ordering.ll

[NVPTX] Handle symbol-relative integer initializers in aggregates (#201220)

A symbol-relative integer applies an offset outside the ptrtoint, e.g.

    @g = addrspace(1) global i8 0
    @s = addrspace(1) global { i64, i64 }
           { i64 add (i64 ptrtoint (ptr addrspace(1) @g to i64), i64 4),
             i64 7 }

I'm not sure this is an important feature, but it's explicitly
implemented and works for scalars; the bug is that it hits
llvm_unreachable if you use it inside an aggregate.

While we're here, we also add support for Sub in addition to Add.
DeltaFile
+15-0llvm/test/CodeGen/NVPTX/global-ordering.ll
+11-1llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
+26-12 files

LLVM/project b207fd6lldb CMakeLists.txt, lldb/source/Host/common PythonRuntimeLoader.cpp

[lldb] Use the right MinGW name for the Python DLLs (#201325)

In MinGW mode, the Python DLLs have different names than they have in
MSVC mode; they are named `libpython<major>.<minor>.dll` (a "lib" prefix
and a dot between major and minor) and `libpython3.dll`.

This avoids a warning on startup after
142ad481b6254104a51da7d636ad9e3f30518a32 and total failures to start up
after 3eb13f8db39ed42827122489c830c414cb6660e3.
DeltaFile
+7-3lldb/source/Host/common/PythonRuntimeLoader.cpp
+7-2lldb/CMakeLists.txt
+14-52 files

LLVM/project 0a4f19eclang/lib/Format UnwrappedLineParser.cpp, clang/unittests/Format FormatTestObjC.cpp

[clang-format][Objective-C] Fix assertion crash on stray '-'/'+' in @interfa… (#199104)

Before calling `parseObjCMethod()`, it now checks whether the next token
is a `(` or an identifier; if not, it simply skips ahead, thereby
preventing the assertion failure and subsequent crash.
Fixes #199075
DeltaFile
+16-0clang/unittests/Format/FormatTestObjC.cpp
+2-1clang/lib/Format/UnwrappedLineParser.cpp
+18-12 files

FreeBSD/src 8bf4902usr.bin/diff pr.c

diff: Correct fd 0 case on pipe

After git commit c8d40bf8ecc60cc15e3904410db62065ea681fdc, if fd 0 was
not open, it is left with CLOEXEC set and therefore fails. This is an
unlikely situation, but fixing it reduces the size of the code (by using
posix_spawn_file_actions_adddup2's special case if the two file
descriptor numbers are the same).

At the same time, check the error code from
posix_spawn_file_actions_adddup2.

Reviewed by:    bapt
Differential Revision:  https://reviews.freebsd.org/D56910
DeltaFile
+3-2usr.bin/diff/pr.c
+3-21 files

LLVM/project d201822llvm/docs CMake.md

Apply suggestion manually
DeltaFile
+2-4llvm/docs/CMake.md
+2-41 files

FreeBSD/src 248dd56usr.bin/xinstall install.1

install.1: Convert link flags to a table

The five link flags get lost in prose.

Reviewed by:    ziaee
Sponsored by:   The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D57418
DeltaFile
+13-10usr.bin/xinstall/install.1
+13-101 files

FreeBSD/doc c0b74d7website/content/ru/releng _index.adoc

website/ru: Update releng/_index.adoc

Update to EN aa570f12f85107e9de1051b8a342924a766d2600
DeltaFile
+10-9website/content/ru/releng/_index.adoc
+10-91 files

FreeBSD/ports 64c711adevel/py-b2 Makefile distinfo

devel/py-b2: Update to 4.7.0

Changes since 4.6.0:

 - Reject unsafe remote filenames in the Download command.

 - Drop support for Python 3.9 and PyPy 3.9.

Reported by:    github
DeltaFile
+6-4devel/py-b2/Makefile
+3-3devel/py-b2/distinfo
+9-72 files

LLVM/project 3c9afa9llvm/docs ProjectGovernance.rst index.rst

[Docs] Project governance documentation (#197108)

This page largely covers the same information as proposal LP-0004 and
also includes information on current area team and project council
composition.
DeltaFile
+253-0llvm/docs/ProjectGovernance.rst
+2-0llvm/docs/index.rst
+255-02 files

FreeBSD/ports 5604d65devel/py-b2sdk distinfo Makefile

devel/py-b2sdk: Update to 2.12.0

Update dependencies.

Changes since 2.10.4:

 - Handle null case when encoding / decoding content_sha1 in
   BaseFileVersion.

 - Fix SqliteAccountInfo to explicitly close temporary sqlite
   connections used during setup.

 - Declare official support for Python 3.14.

 - Introduce a reusable validator to ensure remote B2 file names
   are safe to use as local paths.

 - Drop support for Python 3.9 and PyPy 3.9.


    [3 lines not shown]
DeltaFile
+3-3devel/py-b2sdk/distinfo
+2-2devel/py-b2sdk/Makefile
+5-52 files

LLVM/project fb649b4compiler-rt/cmake/Modules AddCompilerRT.cmake

[compiler-rt][cmake][msvc] Install PDBs for shared libraries (#201224)

Following up on similar PRs in the past to address PDBs not being copied
for install targets:
* https://github.com/llvm/llvm-project/pull/126961
* https://github.com/llvm/llvm-project/pull/126680
* https://github.com/llvm/llvm-project/pull/120683
DeltaFile
+3-0compiler-rt/cmake/Modules/AddCompilerRT.cmake
+3-01 files

FreeBSD/src 545cef1sys/dev/ena ena.h

ena: Update driver version to v2.8.3

Features:
* Report RX overrun errors via sysctl hw stats

Bug Fixes:
* Budget rx descriptors, not packets, to fix jumbo frame throughput

Minor Changes:
* Adjust ena_[rt]x_cleanup to return bool

MFC after: 2 weeks
Sponsored by: Amazon, Inc.
Differential Revision: https://reviews.freebsd.org/D56641

(cherry picked from commit af7911d3b732b8e0d4254c5d0bf60d74ced89157)
DeltaFile
+1-1sys/dev/ena/ena.h
+1-11 files

FreeBSD/src 109ee0asys/dev/ena ena_datapath.c ena.h

ena: Budget rx descriptors, not packets

We had ENA_RX_BUDGET = 256 in order to allow up to 256 received
packets to be processed before we do other cleanups (handling tx
packets and, critically, refilling the rx buffer ring).  Since the
ring holds 1024 buffers by default, this was fine for normal packets:
We refill the ring when it falls below 7/8 full, and even with a large
burst of incoming packets allowing it to fall by another 1/4 before we
consider refilling the ring still leaves it at 7/8 - 1/4 = 5/8 full.

With jumbos, the story is different: A 9k jumbo (as is used by default
within the EC2 network) consumes 3 descriptors, so a single rx cleanup
pass can consume 3/4 of the default-sized rx ring; if the rx buffer
ring wasn't completely full before a packet burst arrives, this puts
us perilously close to running out of rx buffers.

This precise failure mode has been observed on some EC2 instance types
within a Cluster Placement Group, resulting in the nominal 10 Gbps
single-flow throughput between instances dropping to ~100 Mbps as a

    [21 lines not shown]
DeltaFile
+10-3sys/dev/ena/ena_datapath.c
+2-2sys/dev/ena/ena.h
+12-52 files

FreeBSD/src 94659fcsys/dev/ena ena_datapath.c

ena: Adjust ena_[rt]x_cleanup to return bool

The ena_[rt]x_cleanup functions are limited internally to a maximum
number of packets; this ensures that TX doesn't starve RX (or vice
versa) and also attempts to ensure that we get a chance to refill
the RX buffer ring before the device runs out of buffers and starts
dropping packets.

Historically these functions have returned the number of packets which
they processed which ena_cleanup compares to their respective budgets
to decide whether to reinvoke them.  This is unnecessary complication;
since the precise number of packets processed is never used, adjust
the APIs of those functions to return a bool indicating if they want
to be reinvoked (aka if they hit their limits).

Since ena_tx_cleanup now only uses work_done if diagnostics are
enabled (ena_log_io macros to nothing otherwise) eliminate that
variable and pass its value (ENA_TX_BUDGET - budget) to ena_log_io
directly.

    [9 lines not shown]
DeltaFile
+12-14sys/dev/ena/ena_datapath.c
+12-141 files

FreeBSD/src 77876ebsys/dev/ena ena.c ena.h

ena: Report RX overrun errors

Extract rx_overruns from the keep alive descriptor reported by
the device and expose it via sysctl hw stats.

RX overrun errors occur when a packet arrives but there are not
enough free buffers in the RX ring to receive it.

MFC after: 2 weeks
Sponsored by: Amazon, Inc.
Differential Revision: https://reviews.freebsd.org/D56640

(cherry picked from commit e3f4a63af63bea70bc86b6c790b14aa5ee99fcd0)
DeltaFile
+4-0sys/dev/ena/ena.c
+2-0sys/dev/ena/ena.h
+2-0sys/dev/ena/ena_sysctl.c
+8-03 files

FreeBSD/src b49021busr.bin/xinstall install.1

install.1: Document options incompatible with -s

Reported by:    des
Reviewed by:    ziaee
Sponsored by:   The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D57409
DeltaFile
+5-1usr.bin/xinstall/install.1
+5-11 files

NetBSD/pkgsrc LseGkSTdoc CHANGES-2026

   doc: Updated pkgtools/pkglint to 23.21.0
VersionDeltaFile
1.3485+2-1doc/CHANGES-2026
+2-11 files

FreeBSD/ports 7c6a5b8misc/mate-user-guide Makefile distinfo

misc/mate-user-guide: switch to GitHub release asset

Minor versions of 1.28.x are no longer published to the MATE mirror
and are only available on GitHub. Use USE_GITHUB=nodefault with a
release tarball instead of the auto-generated one, as recommended
by the porter's handbook.
DeltaFile
+7-6misc/mate-user-guide/Makefile
+3-3misc/mate-user-guide/distinfo
+10-92 files

NetBSD/pkgsrc J2z5qtxpkgtools/pkglint distinfo Makefile

   pkgtools/pkglint: update to 23.21.0

   Changes since 23.20.0 from 2026-01-31:

   Warn about removed files that are still in CVS.

   Allow the note about the "!=" assignment operator to be suppressed using
   the standard rationale. Previously, the comment needed to be on the same
   line, the line above didn't work.

   Only allow ${RUN} at the beginning of a shell execution line, as that
   variable expands to a "@".

   Explain how to suppress diagnostics.

   Allow the error about omf-scrollkeeper.mk to be suppressed.
VersionDeltaFile
1.42+4-4pkgtools/pkglint/distinfo
1.811+2-3pkgtools/pkglint/Makefile
+6-72 files

LLVM/project cca1738llvm/lib/Transforms/Scalar LoopInterchange.cpp, llvm/test/Transforms/LoopInterchange atomic-memory-ordering.ll invoke.ll

[LoopInterchange] Identify unsafe instructions for interchange (#201402)

In LoopInterchange, all instructions in the loops are traversed and
checked during the legality phase, and the pass bails out if it finds an
instruction that is unsafe to interchange. However, previously it only
handled call instructions and ignored all others, leaving several kinds
of instruction that should have been detected but were not.
This patch fixes the issue by restructuring the legality check, in
particular replacing instruction‑specific handling with calling general
Instruction APIs.

Fixes #200913.
DeltaFile
+14-36llvm/test/Transforms/LoopInterchange/atomic-memory-ordering.ll
+21-18llvm/lib/Transforms/Scalar/LoopInterchange.cpp
+5-15llvm/test/Transforms/LoopInterchange/invoke.ll
+2-2llvm/test/Transforms/LoopInterchange/call-instructions-remarks.ll
+42-714 files

OpenBSD/ports bee3QyBsysutils/broot distinfo Makefile

   Update broot to 1.57.0.
VersionDeltaFile
1.42+2-2sysutils/broot/distinfo
1.48+1-1sysutils/broot/Makefile
+3-32 files

OpenBSD/ports MTYcViex11/gnustep/gmastermind Makefile, x11/gnustep/gmastermind/patches patch-Views_m patch-Controller_m

   address clang22 build breakage
VersionDeltaFile
1.1+40-0x11/gnustep/gmastermind/patches/patch-Views_m
1.1+13-0x11/gnustep/gmastermind/patches/patch-Controller_m
1.22+1-1x11/gnustep/gmastermind/Makefile
+54-13 files

LLVM/project 0c9f16cflang/lib/Lower/OpenMP OpenMP.cpp, flang/test/Lower/OpenMP metadirective-user.f90

Fix match_any dynamic user condition ranking

A dynamic condition in extension(match_any) can be false even when another static
trait already makes the variant applicable. Before this change, lowering still
ranked the condition as true in that situation, so `condition(score(N): flag)`
could make the variant win even when flag is false.

The previous change separated static applicability from guarded ranking for
dynamic conditions. This fix adds the match_any-specific handling:

```
  if staticVMI does not match:
    try conditionTrueVMI, because the runtime condition itself may satisfy match_any

  if staticVMI already matches and this is match_any:
    add guarded candidate: flag true, with user_condition_true and score
    add unguarded candidate: flag false, with only static traits

  otherwise:

    [6 lines not shown]
DeltaFile
+81-26flang/lib/Lower/OpenMP/OpenMP.cpp
+68-0flang/test/Lower/OpenMP/metadirective-user.f90
+149-262 files

FreeBSD/ports 5443d45www/lua-stream-nginx-module pkg-plist Makefile

www/lua-stream-nginx-module: clean up port

Install only the files required to build the module.
Remove tests, CI metadata, and other upstream development files.

Sponsored by:   Netzkommune GmbH
DeltaFile
+0-164www/lua-stream-nginx-module/pkg-plist
+4-2www/lua-stream-nginx-module/Makefile
+4-1662 files

LLVM/project 3d830a9flang/lib/Lower OpenACC.cpp, flang/test/Lower/OpenACC acc-cache.f90

[flang][OpenACC] Re-declare cached array sections with lower bounds only (#201223)

When acc.cache yields a box, rebind the symbol with a fir.shift (lower
bounds, no extents) instead of a fir.shape_shift, so the rebox preserves
the materialized descriptor's extents and strides. Add lowering tests.

Assisted by Claude
DeltaFile
+58-0flang/test/Lower/OpenACC/acc-cache.f90
+22-3flang/lib/Lower/OpenACC.cpp
+80-32 files

OpenBSD/src FVB8OY6usr.bin/tmux format.c tmux.1

   Change run-shell expansion to just be #{1} etc not #1 which interferes
   with colours.
VersionDeltaFile
1.372+2-9usr.bin/tmux/format.c
1.1062+1-4usr.bin/tmux/tmux.1
+3-132 files