LLVM/project 8145c05clang/lib/AST/ByteCode EvaluationResult.h Program.cpp

[clang][bytecode] Add DeclOrExpr (#213686)

And replace the previous usages of llvm::PointerUnion with this new
struct. This is currently just a refactoring but we'll later need to
have a proper type for the previos typedef so we can pass it to emit*
functions.
DeltaFile
+65-0clang/lib/AST/ByteCode/DeclOrExpr.h
+15-17clang/lib/AST/ByteCode/Descriptor.h
+11-11clang/lib/AST/ByteCode/Descriptor.cpp
+10-10clang/lib/AST/ByteCode/Compiler.cpp
+8-8clang/lib/AST/ByteCode/Program.cpp
+5-7clang/lib/AST/ByteCode/EvaluationResult.h
+114-534 files not shown
+128-6510 files

LLVM/project 136b116llvm/lib/Target/AMDGPU AMDGPUReserveWWMRegs.cpp SIRegisterInfo.cpp

[NFC][AMDGPU] Rename some variable names to follow convention better

This is a follow-up of #213491.
DeltaFile
+5-5llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h
+4-5llvm/lib/Target/AMDGPU/SILowerSGPRSpills.cpp
+4-4llvm/lib/Target/AMDGPU/SIRegisterInfo.cpp
+2-2llvm/lib/Target/AMDGPU/AMDGPUReserveWWMRegs.cpp
+15-164 files

LLVM/project ac19ad6llvm/lib/Target/AMDGPU SILowerSGPRSpills.cpp, llvm/test/CodeGen/AMDGPU wwm-regalloc-error.ll sgpr-spill-vmem-large-frame.mir

[AMDGPU] Support partial and empty WWM pools for SGPR spills (#213491)

SGPR lane spilling currently treats the WWM VGPR pool as all-or-nothing.
This can fail compilation when the requested pool cannot be formed, even
though scratch spilling or a smaller spillable pool could make progress.

This PR lets ordinary SGPR spills fall back to scratch when the pool is
empty and lets WWM register allocation use a nonempty partial pool. It
keeps the full-pool requirement for strict WWM/WQM and explicit
spill-carrier preallocation.

The no-pool fallback is recorded in SIMachineFunctionInfo so frame
lowering can provide enough emergency scavenging slots. The state is
also serialized to preserve the behavior across MIR round trips.

Fixes LCOMPILER-2542.
DeltaFile
+219-0llvm/test/CodeGen/AMDGPU/wwm-regalloc-memory-fallback.ll
+95-49llvm/lib/Target/AMDGPU/SILowerSGPRSpills.cpp
+101-0llvm/test/CodeGen/AMDGPU/wwm-regalloc-preallocation-guard.mir
+50-0llvm/test/CodeGen/AMDGPU/wwm-regalloc-partial-pool.mir
+48-0llvm/test/CodeGen/AMDGPU/sgpr-spill-vmem-large-frame.mir
+0-29llvm/test/CodeGen/AMDGPU/wwm-regalloc-error.ll
+513-7812 files not shown
+563-8718 files

FreeBSD/ports 00c4a04math/qalculate-qt Makefile distinfo

math/qalculate-qt: Update to 5.12.0

https://github.com/Qalculate/qalculate-qt/releases/tag/v5.12.0
DeltaFile
+3-3math/qalculate-qt/distinfo
+1-1math/qalculate-qt/Makefile
+4-42 files

FreeBSD/ports 7257868math/qalculate-gtk Makefile distinfo

math/qalculate-gtk: Update to 5.12.0

https://github.com/Qalculate/qalculate-gtk/releases/tag/v5.12.0
DeltaFile
+3-3math/qalculate-gtk/distinfo
+1-1math/qalculate-gtk/Makefile
+4-42 files

FreeBSD/ports 5db0efcmath/libqalculate pkg-plist Makefile

math/libqalculate: Update to 5.12.0

https://github.com/Qalculate/libqalculate/releases/tag/v5.12.0
DeltaFile
+3-3math/libqalculate/distinfo
+1-1math/libqalculate/pkg-plist
+1-1math/libqalculate/Makefile
+5-53 files

LLVM/project 6b3f5c7llvm/lib/Target/AMDGPU AMDGPUISelLowering.cpp SIISelLowering.cpp, llvm/test/CodeGen/AMDGPU uaddsat.ll

[AMDGPU] Lower uniform uaddsat.i16 to SALU instructions

Promote uniform i16 uadd.sat to i32 in promoteUniformOpToI32 so it
lowers to SALU (s_add_i32 + s_min_u32) instead of VALU + readfirstlane.
The saturating add on zero-extended operands reduces to
umin(add(lhs, rhs), 0xffff).

Co-authored-by: Cursor <cursoragent at cursor.com>
DeltaFile
+64-60llvm/test/CodeGen/AMDGPU/uaddsat.ll
+10-2llvm/lib/Target/AMDGPU/SIISelLowering.cpp
+1-0llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
+75-623 files

LLVM/project c63286cllvm/test/CodeGen/AMDGPU uaddsat.ll

[AMDGPU] Add tests for uniform uaddsat.i16 (NFC)

Precommit tests covering uniform (SALU) uadd.sat for i16 and vector
i16 (v2i16, v3i16, v4i16) using the amdgpu_ps calling convention so
results are returned in SGPRs. These currently lower to VALU
(v_add_u16 clamp / v_pk_add_u16 clamp + v_readfirstlane).

Co-authored-by: Cursor <cursoragent at cursor.com>
DeltaFile
+239-0llvm/test/CodeGen/AMDGPU/uaddsat.ll
+239-01 files

FreeBSD/ports dc326a6misc/shimmy Makefile Makefile.crates, misc/shimmy/files patch-Cargo.lock

misc/shimmy: Update to 2.4.2

Changelog: https://github.com/Michael-A-Kuykendall/shimmy/blob/v2.4.2/CHANGELOG.md

Reported by:    GitHub (watch releases)
DeltaFile
+45-22misc/shimmy/files/patch-Cargo.lock
+27-27misc/shimmy/distinfo
+12-12misc/shimmy/Makefile.crates
+1-1misc/shimmy/Makefile
+85-624 files

LLVM/project ff6d537llvm/lib/Target/RISCV RISCVISelLowering.cpp, llvm/test/CodeGen/RISCV fp128.ll

[RISCV] Pick correct lround libcall for fp128 (#213220)

**LROUND** with an i32 result on rv64 chose the libcall as `f64 ?
LROUND_F64 : LROUND_F32`, so **fp128** fell through to the f32 libcall
(lroundf) and lost precision. Use `RTLIB::getLROUND`, which maps
**fp128** to lroundl.
DeltaFile
+127-0llvm/test/CodeGen/RISCV/fp128.ll
+2-2llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+129-22 files

LLVM/project 8f82ba2clang/include/clang/Basic TargetID.h, clang/lib/Basic TargetID.cpp

Revert "clang: Use TargetID parsing from AMDGPUTargetParser" (#213824)

Reverts llvm/llvm-project#209845

verified by local reverting

unblock bots: 
https://lab.llvm.org/buildbot/#/builders/234/builds/1391
https://lab.llvm.org/buildbot/#/builders/10/builds/33193
DeltaFile
+165-29clang/lib/Basic/TargetID.cpp
+47-45clang/lib/Driver/ToolChains/AMDGPU.cpp
+42-39clang/lib/Driver/OffloadBundler.cpp
+34-10clang/include/clang/Basic/TargetID.h
+18-25clang/lib/Basic/Targets/AMDGPU.cpp
+14-18clang/lib/Basic/Targets/AMDGPU.h
+320-1667 files not shown
+356-22413 files

OpenBSD/src K0Yn3rWregress/usr.bin/ssh Makefile

   disable pubkey-priority test until I can fix it to not pick up the
   user's keys from ~/.ssh
VersionDeltaFile
1.146+1-2regress/usr.bin/ssh/Makefile
+1-21 files

FreeBSD/src 495826fstand/efi/libefi efinet.c, stand/i386/libi386 pxe.c

stand: add ARCH and MSZ into DHCP requests

It should give DHCP servers more information for proper responses.
DeltaFile
+58-17stand/libsa/bootp.c
+18-0stand/efi/libefi/efinet.c
+7-0stand/libsa/bootp.h
+3-0stand/i386/libi386/pxe.c
+86-174 files

FreeBSD/ports 6d379c7devel/sentry-cli Makefile Makefile.crates

devel/sentry-cli: Update to 3.6.1

While here, claim maintainership after three consecutive maintainer
timeouts.

Changelog: https://github.com/getsentry/sentry-cli/blob/3.6.1/CHANGELOG.md

PR:             296941
Approved by:    lcook (former maintainer, timeout 2 weeks)
DeltaFile
+141-169devel/sentry-cli/distinfo
+69-83devel/sentry-cli/Makefile.crates
+2-3devel/sentry-cli/Makefile
+212-2553 files

NetBSD/pkgsrc pkzhMMBdoc CHANGES-2026

   Updated textproc/p5-PDF-Reuse-Barcode
VersionDeltaFile
1.4958+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc aabIQFNtextproc/p5-PDF-Reuse-Barcode Makefile distinfo

   Update to 0.11

   Upstream changes:
   0.11 Wed Jul 29 2026
        Bug fixes to the 0.10 "textsize" work and one older defect:
        - The bars are now raised as the text grows, so a large textsize no
          longer prints the human readable text over the bottom of the
          barcode. Previously anything above about 12 point overprinted,
          which is a scanning failure rather than a cosmetic one. GitHub #8.
        - The background extension strips are drawn at the height the
          background box was actually drawn at, rather than one unit short.
          GitHub #8.
        - $qrcode is reset between barcodes, so a barcode drawn after a
          QRcode in the same process no longer renders down the QRcode path.
          GitHub #6.
        Output at the default textsize is unchanged.
   0.10 Wed Jul 29 2026
        Added "textsize" parameter to set the point size of the human readable
        text below the barcode. Defaults to 10, so existing output is unchanged.

    [3 lines not shown]
VersionDeltaFile
1.7+4-4textproc/p5-PDF-Reuse-Barcode/distinfo
1.23+2-3textproc/p5-PDF-Reuse-Barcode/Makefile
+6-72 files

NetBSD/pkgsrc ik8gawndevel/idiff distinfo, devel/idiff/patches patch-ab patch-Makefile

   Fixup for RELRO
VersionDeltaFile
1.1+19-0devel/idiff/patches/patch-Makefile
1.11+2-2devel/idiff/distinfo
1.2+1-1devel/idiff/patches/patch-ab
+22-33 files

FreeBSD/ports d1e0dd5editors/zed Makefile distinfo

editors/zed: Update to 1.13.2

Changelog: https://github.com/zed-industries/zed/releases/tag/v1.13.2

Reported by:    GitHub (watch releases)
DeltaFile
+3-3editors/zed/distinfo
+1-1editors/zed/Makefile
+4-42 files

LLVM/project eb50d87llvm/utils/lit/lit ShellEnvironment.py TestRunner.py, llvm/utils/lit/lit/builtin_commands diff.py

[lit] Run builtin cat / diff in-process instead of spawning (#208024)

cat and diff are the only two builtins that still spawn a subprocess:
every cat/diff on a RUN line spawns a fresh Python interpreter, which
dominates wall time given how small lit's typical inputs are. Run them
in-process instead.

The spawned-script path stays as a fallback for now. Removing it
entirely is a follow-up PR. Output is byte-identical to the spawn path
either way.
DeltaFile
+323-3llvm/utils/lit/lit/TestRunner.py
+65-0llvm/utils/lit/lit/ShellEnvironment.py
+4-14llvm/utils/lit/lit/builtin_commands/diff.py
+392-173 files

LLVM/project 04a123bclang/lib/CodeGen CGOpenMPRuntime.cpp, clang/test/OpenMP declare_mapper_codegen.cpp target_map_nested_ptr_member_mapper_codegen.cpp

[OpenMP][Clang] Enable `ATTACH`-style maps for mappers. (#210213)

This is a follow-up to #153683 to support OpenMP compliant
pointer-attachment
in `declare_mappers` via `ATTACH`-style maps.

In addition to enabling attach-style maps, we also need to propagate
information about
which map entries are for "pointee" data, i.e. have an "attach-ptr", and
thus occupy a different storage block than the base variable for which
the mapper is being generated. e.g.

```c

S sa[10];
#pragma omp declare_mapper (default: S s) map (s.x, s.p[0:10])

#pragma omp target_enter_data map(sa)
```

    [18 lines not shown]
DeltaFile
+196-160clang/test/OpenMP/target_map_nested_ptr_member_mapper_codegen.cpp
+68-60clang/test/OpenMP/declare_mapper_codegen.cpp
+68-15llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
+65-5clang/lib/CodeGen/CGOpenMPRuntime.cpp
+18-24offload/test/mapping/mapper_enter_data_always_present_ptee.c
+18-22offload/test/mapping/mapper_map_mbr_then_present_mbr_ptee.c
+433-28611 files not shown
+525-36117 files

NetBSD/pkgsrc pBtYEpZdoc TODO CHANGES-2026

   Updated databases/p5-Rose-DB to 0.788
VersionDeltaFile
1.27691+1-2doc/TODO
1.4957+2-1doc/CHANGES-2026
+3-32 files

NetBSD/pkgsrc CjlbpKGdatabases/p5-Rose-DB Makefile distinfo

   Update to 0.788

   Upstream changes:
   0.788 (07.17.2026) - John Siracusa <siracusa at gmail.com>
       * Fixed a bug in refine_dbi_foreign_key_info. (Patch by Bernd Bleßmann)
   0.787 (05.04.2026) - John Siracusa <siracusa at gmail.com>
       * Adjusted MySQL column auto-generation to better handle the
         explicit_defaults_for_timestamp server setting.
   0.786 (08.20.2024) - John Siracusa <siracusa at gmail.com>
       * Fixed a bug that could cause database passwords to appear in debugging
         output when $Rose::DB::Debug was set to a true value. Also added
         connection options to the debugging output.
   0.785 (02.28.2023) - John Siracusa <siracusa at gmail.com>
       * Added timestamps_are_inlined method to DBD::Pg. (Patch
         by Ferry Hendrikx.)
   0.784 (02.03.2023) - John Siracusa <siracusa at gmail.com>
       * Added support for PDBs (Pluggable Databases) to DBD::Oracle. (Patch
         by Ferry Hendrikx.)
       * Added support for "numeric" booleans to DBD::Oracle. (Patch by Ferry
         Hendrikx.)
VersionDeltaFile
1.20+4-4databases/p5-Rose-DB/distinfo
1.40+3-4databases/p5-Rose-DB/Makefile
+7-82 files

NetBSD/pkgsrc iwqGYnIdoc CHANGES-2026

   Updated textproc/p5-PDF-Reuse to 0.44
VersionDeltaFile
1.4956+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc zC8AAGQtextproc/p5-PDF-Reuse Makefile distinfo

   Update to 0.44

   Upstream changes:
   0.44 Wed Jul 29 2026
        - Embedded TrueType text is now searchable and copyable (GitHub #15,
          RT #123564). A /ToUnicode CMap is generated for each embedded font,
          covering only the glyphs actually used. Built here rather than via
          Text::PDF::TTFont0, whose ToUnicode support emits a malformed CMap
          (RT #123562, unfixed upstream).
        - Fix "Didn't find pages" when a source filename is reused within one
          session (GitHub #21, #22, RT #103758, RT #103768). %processed cached
          byte offsets keyed by filename and was never invalidated when the
          file behind that name was replaced, so the first file's offsets were
          applied to the second file's bytes.
        - CI now covers Linux, macOS and Windows again, with per-platform
          isolation so one failing cell no longer masks the others
          (GitHub #9, #10). Upstream workflow references are pinned to a SHA;
          see docs/ci-pin-maintenance.md.
VersionDeltaFile
1.8+4-4textproc/p5-PDF-Reuse/distinfo
1.26+2-3textproc/p5-PDF-Reuse/Makefile
+6-72 files

FreeBSD/src f70e466stand/efi/libefi efinet.c, stand/libsa bootp.c

stand: consume UEFI PXE Base Code cache to seed DHCP

Populate stand/libsa/bootp.c's bootp_response global from the UEFI PXE
Base Code Protocol's cached DhcpAck, so bootp() can enter RFC 2131
INIT-REBOOT and skip DISCOVER/OFFER instead of running a fresh DHCP
transaction after the firmware has already done one.
DeltaFile
+215-0stand/efi/libefi/efinet.c
+1-7stand/libsa/bootp.c
+216-72 files

NetBSD/pkgsrc ncjxCIOdoc CHANGES-2026

   Updated textproc/p5-Pod-POM-View-Restructured to 1.000004
VersionDeltaFile
1.4955+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc lELxK2Gtextproc/p5-Pod-POM-View-Restructured Makefile distinfo

   Update to 1.000004

   Upstream changes:
   Version 1.000004
           * Update link to CPAN search.
           * Update authors and copyrights.
VersionDeltaFile
1.2+4-4textproc/p5-Pod-POM-View-Restructured/distinfo
1.3+2-3textproc/p5-Pod-POM-View-Restructured/Makefile
+6-72 files

NetBSD/pkgsrc Fr3xhHzdoc CHANGES-2026

   Updated textproc/p5-podlators to 6.1.0
VersionDeltaFile
1.4954+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc VQrX1O2textproc/p5-podlators Makefile distinfo

   Update to 6.1.0

   Upstream changes:
   v6.1.0 - 2026-07-19
   - groff 1.24.0 broke use of the .IP macro for tag list formatting by
     removing the mandatory spacing between the tag and the paragraph. Work
     around this by using .TP for lists other than bullet or numbered
     lists. Be aware that groff 1.24 and later defaults to a minimum gap of
     two spaces between the tag and the paragraph for .TP instead of one
     space as in previous pod2man and groff releases. POD documents that want
     an indent just wide enough for tags to format on the same line as the
     paragraph may need to increase the indent level for the =over command by
     one to render as desired with those versions of groff.
   - Change the default fixed-width font from CW to CR. This avoids warnings
     with groff 1.24.0 or later at the cost of breaking troff output on
     Solaris 10. nroff output and troff output on Solaris 11 are
     unaffected. The pod2man option --fixed=CW will restore the previous
     behavior. Thanks to G. Branden Robinson for the analysis and assistance.
     (GitHub #43)

    [24 lines not shown]
VersionDeltaFile
1.18+4-4textproc/p5-podlators/distinfo
1.37+3-4textproc/p5-podlators/Makefile
+7-82 files

FreeBSD/src ff2bc64lib/libc/stdbit stdc_trailing_zeros.3 stdc_trailing_ones.3, share/man/man3 stdbit.3

manuals: Fix Fx and nearby mechanical typos

Fix compiler warnings related to the Fx macro, as well as all other
mechanical typos that were visible within one screenful of them. These
cause rendering glitches on various toolchains with various of the five
and a half decades of rich output formats and tooling manpages scale to.

The *x macro set specifies operating systems. These macros take the rest
of the line as an argument. Sometimes, a space was not used to separate
the argument of Fx and the trailing period. Another, FreeBSD Foundation
was misrepresented as an operating system version instead of an author.
Two more had other parts of the sentence supplied as an argument to Fx.

While I had those open, fix the other mechancial typos visible on those
specific screenfulls. Fix a list width glitch, correct section typo
AUTHOR to AUTHORS, and switch AUTHORS sections containing prose to
prose-mode so that they wrap freely when rendered.

PR:             297248

    [5 lines not shown]
DeltaFile
+6-3usr.bin/ipcrm/ipcrm.1
+3-2usr.bin/elfctl/elfctl.1
+2-2share/man/man3/stdbit.3
+2-2lib/libc/stdbit/stdc_trailing_zeros.3
+2-2lib/libc/stdbit/stdc_trailing_ones.3
+2-2lib/libc/stdbit/stdc_leading_zeros.3
+17-1317 files not shown
+48-4023 files