LLVM/project 20ce456llvm/lib/CodeGen/SelectionDAG LegalizeVectorTypes.cpp, llvm/test/CodeGen/RISCV/rvv fixed-vectors-expandload-int.ll fixed-vectors-compressstore-int.ll

[LegalizeTypes][RISCV] Don't widen expandload or compresstore with VP_LOAD/VP_STORE. (#193294)

We don't support expanding/compressing VP_LOAD/VP_STORE yet.

This probably crashes on scalable vectors, but that's better than
a silent miscompile.

Fixes #193277.
DeltaFile
+18-0llvm/test/CodeGen/RISCV/rvv/fixed-vectors-expandload-int.ll
+16-0llvm/test/CodeGen/RISCV/rvv/fixed-vectors-compressstore-int.ll
+2-2llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
+36-23 files

LLVM/project 6688763libc/test lit.site.cfg.py.in, libc/utils/libctest format.py

[libc] Improve lit test discovery and execution (#192993)

Updated LibcTest to support cross-compilation and custom test
directories:

* Passed localConfig to _isTestExecutable to check for emulator.
* Skipped host execution permission check if emulator is set.
* Supported tests in libc.test.shared and libc.test.utils.
* Handled fallback if @BINARY@ is missing in test command template.
* Removed UnitTest from excludes in lit site config.
DeltaFile
+17-4libc/utils/libctest/format.py
+2-2libc/test/lit.site.cfg.py.in
+19-62 files

LLVM/project 27cc833cross-project-tests CMakeLists.txt

[cross-project-tests] Add llvm-modextract as a dependency (#193296)

cross-project-tests/dtlto/multimodule.test uses it

Some precommit tests are failing because of this missing dependency,
e.g. https://github.com/llvm/llvm-project/actions/runs/24729694507
DeltaFile
+1-0cross-project-tests/CMakeLists.txt
+1-01 files

LLVM/project 0bbd61a.github/workflows/containers/github-action-ci Dockerfile, .github/workflows/containers/github-action-ci-windows Dockerfile

[Github] Bump Github Runner Version to 2.334.0 (#193318)

Release notes imply this probably shouldn't impact us. Update the runner
version in the containers so that we do not run past the support
horizon.
DeltaFile
+1-1.github/workflows/containers/github-action-ci-windows/Dockerfile
+1-1.github/workflows/containers/github-action-ci/Dockerfile
+2-22 files

LLVM/project 22c296cllvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll amdgcn.bitcast.512bit.ll, llvm/test/CodeGen/RISCV/rvv vfadd-vp.ll vitofp-sdnode.ll

Merge remote-tracking branch 'origin/main' into users/ziqingluo/PR-172429193-2-split-3

 Conflicts:
        clang/lib/ScalableStaticAnalysisFramework/Analyses/SSAFAnalysesCommon.cpp
        clang/lib/ScalableStaticAnalysisFramework/Analyses/SSAFAnalysesCommon.h
        clang/lib/ScalableStaticAnalysisFramework/Analyses/UnsafeBufferUsage/UnsafeBufferUsageExtractor.cpp
DeltaFile
+4,805-4,811llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+1,871-1,882llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+764-1,425llvm/test/CodeGen/RISCV/rvv/vfadd-vp.ll
+837-855llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.256bit.ll
+1,139-456llvm/test/CodeGen/AMDGPU/llvm.amdgcn.intersect_ray.ll
+878-428llvm/test/CodeGen/RISCV/rvv/vitofp-sdnode.ll
+10,294-9,857744 files not shown
+41,648-20,397750 files

LLVM/project 99e4f6alldb/include/lldb/Target StackFrame.h, lldb/source/API SBFrame.cpp

[lldb] Add synthetic variable support to Get*VariableList. (#181501)


This patch adds a new flag to the lldb_private::StackFrame API to get variable lists: `include_synthetic_vars`.  This allows ScriptedFrame (and other future synthetic frames) to construct 'fake' variables and return them in the VariableList, so that commands like `fr v` and `SBFrame::GetVariables` can show them to the user as requested.

This patch includes all changes necessary to call the API the new way - I tried to use my best judgement on when to include synthetic variables or not and leave comments explaining the decision.

As a consequence of producing synthetic variables, this patch means that ScriptedFrame can produce Variable objects with ValueType that contains a ValueTypeExtendedMask in a high bit. This necessarily complicates some of the switch/case handling in places where we would expect to find such variables, and this patch makes best effort to address all such cases as well. From experience, they tend to show up whenever we're dealing with checking if a Variable is in a specified scope, which means we basically have to check the high bit against some user input saying "yes/no synthetic variables".
DeltaFile
+42-11lldb/source/API/SBFrame.cpp
+44-8lldb/source/Plugins/Process/scripted/ScriptedFrame.cpp
+31-11lldb/source/Commands/CommandObjectFrame.cpp
+27-8lldb/test/API/functionalities/scripted_frame_provider/TestScriptedFrameProvider.py
+16-2lldb/source/Target/StackFrame.cpp
+16-0lldb/include/lldb/Target/StackFrame.h
+176-407 files not shown
+217-5613 files

FreeBSD/ports d1594f9sysutils/rsyslog8 distinfo Makefile

sysutils/rsyslog8: update to 8.2604.0

Changes:        https://github.com/rsyslog/rsyslog/blob/v8.2604.0/ChangeLog
Reported by:    repology
DeltaFile
+3-3sysutils/rsyslog8/distinfo
+1-2sysutils/rsyslog8/Makefile
+4-52 files

NetBSD/pkgsrc Q4y4YkPfonts/harfbuzz-icu Makefile

   harfbuzz-icu: disable docs, doesn't happen in shared Makefile.common
   any longer
VersionDeltaFile
1.34+2-1fonts/harfbuzz-icu/Makefile
+2-11 files

LLVM/project e7b1037clang/lib/CIR/CodeGen CIRGenBuiltinAArch64.cpp, clang/test/CodeGen/AArch64 neon-misc.c

[CIR] add pairwise-addition-and-widen support (#191845)

Part of https://github.com/llvm/llvm-project/issues/185382
DeltaFile
+355-0clang/test/CodeGen/AArch64/neon/vpaddl.c
+0-308clang/test/CodeGen/AArch64/neon-misc.c
+46-7clang/lib/CIR/CodeGen/CIRGenBuiltinAArch64.cpp
+401-3153 files

NetBSD/pkgsrc LX6Fr3gfonts Makefile

   fonts/Makefile: + harfbuzz-docs
VersionDeltaFile
1.459+2-1fonts/Makefile
+2-11 files

NetBSD/pkgsrc uVx8ymZfonts/harfbuzz PLIST options.mk

   harfbuzz: remove doc option

   This is now a separate harfbuzz-doc package.
VersionDeltaFile
1.94+1-208fonts/harfbuzz/PLIST
1.20+3-12fonts/harfbuzz/options.mk
1.159+3-1fonts/harfbuzz/Makefile
1.83+2-1fonts/harfbuzz/Makefile.common
+9-2224 files

NetBSD/pkgsrc kvDNIo4doc CHANGES-2026

   doc: Added fonts/harfbuzz-docs version 14.2.0
VersionDeltaFile
1.2518+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc 1tzW8Jafonts/harfbuzz-docs PLIST Makefile

   fonts/harfbuzz-docs: import harfbuzz-docs-14.2.0

   HarfBuzz is an OpenType text shaping engine.

   This package contains its API documentation.
VersionDeltaFile
1.1+208-0fonts/harfbuzz-docs/PLIST
1.1+24-0fonts/harfbuzz-docs/Makefile
1.1+3-0fonts/harfbuzz-docs/DESCR
+235-03 files

LLVM/project c417539clang/include/clang/AST ASTContext.h, clang/lib/AST ASTContext.cpp ItaniumMangle.cpp

[clang] implement CWG2064: ignore value dependence for decltype

The 'decltype' for a value-dependent (but non-type-dependent) should be known,
so this patch makes them non-opaque instead.

This patch also implements what's neceessary to allow overloading
on pure differences in instantiation dependence, making `std::void_t`
usable for SFINAE purposes.

This also readds a few test cases from da98651, which was a previous attempt
at resolving CWG2064.

Fixes #8740
Fixes #61818
Fixes #190388
DeltaFile
+906-175clang/lib/AST/ASTContext.cpp
+326-12clang/test/SemaTemplate/instantiation-dependence.cpp
+176-96clang/lib/AST/ItaniumMangle.cpp
+76-68clang/lib/AST/Type.cpp
+76-48clang/lib/Sema/SemaTemplate.cpp
+93-16clang/include/clang/AST/ASTContext.h
+1,653-41584 files not shown
+2,437-78290 files

LLVM/project b117508clang/include/clang/Analysis/Analyses/LifetimeSafety Loans.h, clang/include/clang/Basic DiagnosticGroups.td

[LifetimeSafety] Add support for `new`/`delete` (#192504)

This PR extends LifetimeSafety to also support heap allocations via
`new`/`delete`.

# Contents


* Adds a new warning that is emitted on use-after-free.

* Renames `reportUseAfterFree` to `reportUseAfterScope` due to the old
name being misleading (warnings are still called `use_after_scope`).

* Adds a new `AccessPath::Kind` value `NewAllocation` that is used for
loans issued from `new` allocations.

* Adds `VisitCXXNewExpr` and `VisitCXXDeleteExpr`, which handle loan
issuance / origin propagation for `new` / `delete`.


    [6 lines not shown]
DeltaFile
+230-0clang/test/Sema/warn-lifetime-safety.cpp
+50-0clang/test/Sema/warn-lifetime-safety-suggestions.cpp
+32-0clang/lib/Analysis/LifetimeSafety/FactsGenerator.cpp
+21-10clang/lib/Sema/SemaLifetimeSafety.h
+12-5clang/include/clang/Analysis/Analyses/LifetimeSafety/Loans.h
+10-2clang/include/clang/Basic/DiagnosticGroups.td
+355-177 files not shown
+375-2313 files

LLVM/project 7318bc7clang/include/clang/Basic BuiltinsAMDGPU.td, clang/test/CodeGenOpenCL builtins-amdgcn-gfx1250-tensor-load-store.cl

[Clang][AMDGPU] Use unsigned for D# (#193310)

The descriptor should be unsigned in the first place. Before we moved to
`_ExtVector`, everything just relied on implicit type conversion, so
this was never caught. CLR's implementation of D# uses unsigned as well.

Fixes ROCM-23449.
DeltaFile
+8-6clang/test/CodeGenOpenCL/builtins-amdgcn-gfx1250-tensor-load-store.cl
+2-2clang/include/clang/Basic/BuiltinsAMDGPU.td
+3-1clang/test/SemaOpenCL/builtins-amdgcn-error-gfx1250-param.cl
+13-93 files

LLVM/project 21dcb13flang/include/flang/Optimizer/OpenACC/Support FIROpenACCOpsInterfaces.h, flang/lib/Optimizer/OpenACC/Support FIROpenACCOpsInterfaces.cpp

[flang][acc] Update fir.convert rematerialization handling (#193301)

As of https://github.com/llvm/llvm-project/pull/184218 fir.convert was
being treated as a rematerialization candidate always. However, the
primary problem intended to be solved were improper classification of
pointers due to being casted to integers. Thus use optionally
implemented interface instead to only handle this scenario.
DeltaFile
+44-0flang/test/Fir/OpenACC/offload-livein-value-canonicalization.fir
+15-0mlir/include/mlir/Dialect/OpenACC/OpenACCOpsInterfaces.td
+11-1flang/include/flang/Optimizer/OpenACC/Support/FIROpenACCOpsInterfaces.h
+11-0flang/lib/Optimizer/OpenACC/Support/FIROpenACCOpsInterfaces.cpp
+2-3mlir/lib/Dialect/OpenACC/Transforms/OffloadLiveInValueCanonicalization.cpp
+83-45 files

LLVM/project 346480ellvm/test/CodeGen/AArch64 hadd-combine-scalar.ll hadd-combine.ll

[AArch64] Add more scalar testing for hadd patterns. NFC (#193313)

These are mostly taken from hadd-combine.ll, testing scalar instead of
vector
and checking a few extra variants.
DeltaFile
+868-0llvm/test/CodeGen/AArch64/hadd-combine-scalar.ll
+0-26llvm/test/CodeGen/AArch64/hadd-combine.ll
+0-13llvm/test/CodeGen/AArch64/arm64-vhadd.ll
+868-393 files

LLVM/project e8131c7clang/lib/ScalableStaticAnalysisFramework/Analyses SSAFAnalysesCommon.cpp

add #include <set>
DeltaFile
+1-0clang/lib/ScalableStaticAnalysisFramework/Analyses/SSAFAnalysesCommon.cpp
+1-01 files

LLVM/project 24464f6llvm/lib/Target/RISCV/GISel RISCVLegalizerInfo.cpp, llvm/test/CodeGen/RISCV/GlobalISel memcpy-inline.ll legalizer-info-validation.mir

[RISCV][GlobalISel] Lower G_MEMCPY_INLINE (#192671)

Before this, MIR that contained G_MEMCPY_INLINE has failed in the
lagalization stage.

This patch calls `lower` on G_MEMCPY_INLINE.
DeltaFile
+97-0llvm/test/CodeGen/RISCV/GlobalISel/memcpy-inline.ll
+48-0llvm/test/CodeGen/RISCV/GlobalISel/legalizer/legalize-memcpy-inline.mir
+2-2llvm/test/CodeGen/RISCV/GlobalISel/legalizer-info-validation.mir
+2-0llvm/lib/Target/RISCV/GISel/RISCVLegalizerInfo.cpp
+149-24 files

NetBSD/pkgsrc aafGqzwdoc pkgsrc.html pkgsrc.txt

   doc/pkgsrc.*: regen
VersionDeltaFile
1.393+5-3doc/pkgsrc.html
1.391+3-2doc/pkgsrc.txt
+8-52 files

NetBSD/pkgsrc c4PlFxLdoc/guide/files fixes.xml

   doc: improve rust section in guide
VersionDeltaFile
1.206+6-4doc/guide/files/fixes.xml
+6-41 files

LLVM/project f943777llvm/lib/Transforms/IPO AttributorAttributes.cpp

[Attributor] Use trivial no side effects check in isAssumedSideEffectFree (#193303)

This PR should not change any tests, which is the goal here. To use
`mayHaveSideEffects` is a shortcut to avoid expensive checks by pulling
in different kind of dependences.

That said, this PR doesn't really need a test.
DeltaFile
+3-0llvm/lib/Transforms/IPO/AttributorAttributes.cpp
+3-01 files

LLVM/project 760bc12llvm/lib/Passes PassBuilderPipelines.cpp, llvm/test/Other new-pm-defaults.ll new-pm-thinlto-postlink-defaults.ll

Reapply "[JTS][Passes] Enable JTS By Default" (#193300)

Reverts llvm/llvm-project#192894

Remaining issues should be fixed by
6a9ed459ce228cc0d8982bf1a8cad39f7c020ce4.
DeltaFile
+1-5llvm/test/Other/new-pm-defaults.ll
+2-2llvm/lib/Passes/PassBuilderPipelines.cpp
+1-0llvm/test/Other/new-pm-thinlto-postlink-defaults.ll
+1-0llvm/test/Other/new-pm-thinlto-postlink-pgo-defaults.ll
+1-0llvm/test/Other/new-pm-thinlto-postlink-samplepgo-defaults.ll
+1-0llvm/test/Other/new-pm-thinlto-prelink-pgo-defaults.ll
+7-72 files not shown
+9-78 files

LLVM/project f1baa17libc/include wchar.yaml, libc/src/wchar wcsxfrm.cpp wcsxfrm.h

[libc] Add wcsxfrm (#191692)

This patch adds wcsxfrm to LLVM libc.

It includes:
- wchar.yaml declaration
- implementation and header
- CMake wiring
- entrypoint registration
- unit tests

The current implementation provides C/POSIX-style behavior and does not
yet add locale-aware collation support.

Tested with:
- ninja libc.test.src.wchar.wcsxfrm_test

Notes:
- local full check-libc was blocked by unrelated pre-existing timeout

    [6 lines not shown]
DeltaFile
+100-0libc/test/src/wchar/wcsxfrm_test.cpp
+54-0libc/src/wchar/wcsxfrm.cpp
+24-0libc/src/wchar/wcsxfrm.h
+13-0libc/src/wchar/CMakeLists.txt
+10-0libc/test/src/wchar/CMakeLists.txt
+8-0libc/include/wchar.yaml
+209-01 files not shown
+210-07 files

LLVM/project a4538a3clang/include/clang/ScalableStaticAnalysisFramework/Analyses/EntityPointerLevel EntityPointerLevelFormat.h, clang/lib/ScalableStaticAnalysisFramework/Analyses SSAFAnalysesCommon.h SSAFAnalysesCommon.cpp

[NFC][SSAF] Extract common code in Analyses to a shared file (#191932)

Created SSAFAnalysesCommon.h for the SSAF analyses implementation.

---------

Co-authored-by: Balázs Benics <benicsbalazs at gmail.com>
DeltaFile
+47-0clang/lib/ScalableStaticAnalysisFramework/Analyses/SSAFAnalysesCommon.h
+7-25clang/lib/ScalableStaticAnalysisFramework/Analyses/EntityPointerLevel/EntityPointerLevel.cpp
+17-0clang/lib/ScalableStaticAnalysisFramework/Analyses/SSAFAnalysesCommon.cpp
+2-10clang/lib/ScalableStaticAnalysisFramework/Analyses/UnsafeBufferUsage/UnsafeBufferUsageExtractor.cpp
+0-10clang/include/clang/ScalableStaticAnalysisFramework/Analyses/EntityPointerLevel/EntityPointerLevelFormat.h
+1-0clang/lib/ScalableStaticAnalysisFramework/Analyses/CMakeLists.txt
+74-451 files not shown
+75-457 files

FreeBSD/src e9d3512share/man/man4 ix.4, sys/dev/ixgbe ixgbe_e610.c ixgbe_fw_logging.c

ix(4): Add support for firmware logging for E610 adapters

This is part 3 of the support for the new Intel Ethernet E610
family of devices

The ix driver now enables firmware logging on Intel E610 devices
for debugging with Customer Support. Logs are enabled by default
and generated in binary format that requires decoding by support
teams. The collected data is firmware and hardware related for
debugging purposes only.

When the driver loads, it creates a fw_log sysctl node under the
debug section. Events are organized into categories (modules) for
targeted logging, and users can adjust verbosity levels as needed.

This adds sysctl support for the firmware logging feature and
updates the ix(4) manual page with documentation.

Signed-off-by: Yogesh Bhosale <yogesh.bhosale at intel.com>

    [8 lines not shown]
DeltaFile
+486-0sys/dev/ixgbe/ixgbe_e610.c
+467-0sys/dev/ixgbe/ixgbe_fw_logging.c
+36-0sys/dev/ixgbe/ixgbe_osdep.c
+33-1share/man/man4/ix.4
+18-4sys/dev/ixgbe/if_ix.c
+13-0sys/dev/ixgbe/ixgbe_e610.h
+1,053-56 files not shown
+1,066-512 files

OpenBSD/src RzBXIQtsys/arch/octeon/dev if_cnmac.c

   sys/cnmac: support SoftLRO

   This work based on previous work of Janne Johansson

   OK: visa@
VersionDeltaFile
1.87+27-2sys/arch/octeon/dev/if_cnmac.c
+27-21 files

LLVM/project 8edf404clang/include/clang/Basic BuiltinsAMDGPU.td, clang/test/CodeGenOpenCL builtins-amdgcn-gfx1250-tensor-load-store.cl

[Clang][AMDGPU] Use unsigned for D#

The descriptor should be unsigned in the first place. Before we moved to
`_ExtVector`, everything just relied on implicit type conversion, so this was
never caught. CLR's implementation of D# uses unsigned as well.
DeltaFile
+8-6clang/test/CodeGenOpenCL/builtins-amdgcn-gfx1250-tensor-load-store.cl
+2-2clang/include/clang/Basic/BuiltinsAMDGPU.td
+3-1clang/test/SemaOpenCL/builtins-amdgcn-error-gfx1250-param.cl
+13-93 files

OpenBSD/ports Mo3fJJFaudio/csound Makefile

   disable pipewire

   ok naddy@
VersionDeltaFile
1.6+1-0audio/csound/Makefile
+1-01 files