LLVM/project 303afa0lldb/source/Plugins/SymbolFile/DWARF DWARFASTParserClang.cpp DWARFASTParserClang.h, lldb/test/API/lang/cpp/non-type-template-param-member-ptr main.cpp TestCppNonTypeTemplateParamPtrToMember.py

[lldb][DWARFASTParserClang] Handle pointer-to-member-data non-type template (#187598)

## Description

### Problem
MakeAPValue in DWARFASTParserClang.cpp did not handle
pointer-to-member-data non-type template parameters (e.g., template <int
S::*P>), causing LLDB to produce incorrect results or crash.

DWARF encodes pointer-to-member-data NTTPs as
`DW_TAG_template_value_parameter` with a `DW_AT_const_value`
representing the byte offset of the member within the containing struct.
MakeAPValue is responsible for converting this value into a clang
APValue, but it only handled integer/enum and floating-point types. For
pointer-to-member types, it returned `std::nullopt`.

This caused the caller (ParseTemplateDIE) to fall back to creating a
type-only TemplateArgument (kind=Type) instead of a value-carrying one.
When two specializations differ only by which member they point to

    [209 lines not shown]
DeltaFile
+94-11lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
+16-0lldb/test/API/lang/cpp/non-type-template-param-member-ptr/main.cpp
+14-0lldb/test/API/lang/cpp/non-type-template-param-member-ptr/TestCppNonTypeTemplateParamPtrToMember.py
+7-0lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.h
+3-0lldb/test/API/lang/cpp/non-type-template-param-member-ptr/Makefile
+134-115 files

LLVM/project 2fafeb0bolt/include/bolt/Profile DataAggregator.h DataReader.h, bolt/lib/Profile DataAggregator.cpp

[BOLT] Support buildid in pre-aggregated profile (#186931)

Sample addresses belonging to external DSOs (buildid doesn't match the
current file) are treated as external (0).

Buildid for the main binary is expected to be omitted.

Test Plan:
added pre-aggregated-perf-buildid.test
DeltaFile
+55-0bolt/test/X86/pre-aggregated-perf-buildid.test
+18-0bolt/lib/Profile/DataAggregator.cpp
+9-0bolt/test/X86/Inputs/pre-aggregated-buildid.txt
+4-0bolt/include/bolt/Profile/DataAggregator.h
+1-1bolt/include/bolt/Profile/DataReader.h
+87-15 files

LLVM/project 2e247a1bolt/include/bolt/Profile DataAggregator.h, bolt/lib/Profile DataAggregator.cpp

Revert "[BOLT] Support buildid in pre-aggregated profile"

Accidentally pushed unreviewed version.

This reverts commit fce6895804e596f18765c4db0f76931dac8df9f8.
DeltaFile
+3-96bolt/lib/Profile/DataAggregator.cpp
+0-9bolt/include/bolt/Profile/DataAggregator.h
+3-1052 files

LLVM/project 2975451lldb/packages/Python/lldbsuite/test lldbtest.py

[lldb] Mark lldbtest.build() parameters as keyword-only (#188327)

This reinforces what is already true in the codebase: all uses of
`build()` use keyword arguments.

With this change, it will be an error to call `build` using positional
arguments:

```
TypeError: build() takes 1 positional argument but 2 were given
```
DeltaFile
+1-0lldb/packages/Python/lldbsuite/test/lldbtest.py
+1-01 files

LLVM/project fce6895bolt/include/bolt/Profile DataAggregator.h, bolt/lib/Profile DataAggregator.cpp

[BOLT] Support buildid in pre-aggregated profile

Sample addresses belonging to external DSOs (buildid doesn't match the
current file) are treated as external (0).

Buildid for the main binary is expected to be omitted.

Test Plan: added pre-aggregated-perf-buildid.test

Reviewers:
paschalis-mpeis, maksfb, yavtuk, ayermolo, yozhu, rafaelauler, yota9

Reviewed By: paschalis-mpeis

Pull Request: https://github.com/llvm/llvm-project/pull/186931
DeltaFile
+96-3bolt/lib/Profile/DataAggregator.cpp
+9-0bolt/include/bolt/Profile/DataAggregator.h
+105-32 files

LLVM/project 31b17c4bolt/docs profiles.md index.rst

[BOLT] Add profile format documentation (#186685)

Create bolt/docs/profiles.md documenting all accepted profile formats:
perf.data, fdata, YAML, and pre-aggregated. Covers collection methods,
format syntax, examples, and known limitations.

Add reference from bolt/docs/index.rst.
DeltaFile
+212-0bolt/docs/profiles.md
+6-0bolt/docs/index.rst
+218-02 files

FreeBSD/src 769a6f8sys/netinet tcp_usrreq.c

tcp_usrreq: Only allocate TFO counter when required

During tcp_usr_listen(), only allocate TFO counter when required.

Reviewed by: tuexen, glebius
Differential Revision: https://reviews.freebsd.org/D56067
DeltaFile
+8-8sys/netinet/tcp_usrreq.c
+8-81 files

FreeBSD/ports 6825e6ex11/xcursorgen Makefile

x11/xcursorgen: Concise description

Substitute file for theme, remove "a collection of" to eliminate jarring
line wrapping at reference console width, and improve search keywords.

Differential Revision:  https://reviews.freebsd.org/D55699
DeltaFile
+2-1x11/xcursorgen/Makefile
+2-11 files

LLVM/project de0c366llvm/lib/Target/SPIRV SPIRVCtorDtorLowering.cpp SPIRVCtorDtorLowering.h, llvm/test/CodeGen/SPIRV ctor-dtor-lowering.ll ctor-dtor-lowering-ir.ll

[llvm][SPIRV] Add pass to lower Ctors/Dtors for SPIRV (#187509)

This PR adds a new SPIRV pass that generates a kernel named
"spirv$device$init" that iterates the pointers in the table pointed by
__init_array_start and __init_array_end and executes them. It also
generates symbols for each constructor with the form
__init_array_object_NAME_PRIORITY.

These symbols will be used by the Level Zero plugin in the liboffload
runtime (with the support introduced by #187510) to generate the
aforementioned table as spirv-link cannot create the table itself.

It also does the same thing for destructors, with the kernel name being
"spirv$device$fini", the table pointers __fini_array_start and
__fini_array_end, and the generated symbols prefix __fini_array_object.

The code was mostly generated by Claude 4.5 and has been reviewed by me
to the best of my ability.
DeltaFile
+253-0llvm/lib/Target/SPIRV/SPIRVCtorDtorLowering.cpp
+48-0llvm/test/CodeGen/SPIRV/ctor-dtor-lowering.ll
+45-0llvm/test/CodeGen/SPIRV/ctor-dtor-lowering-ir.ll
+36-0llvm/test/CodeGen/SPIRV/ctor-dtor-no-openmp-ir.ll
+27-0llvm/lib/Target/SPIRV/SPIRVCtorDtorLowering.h
+2-0llvm/test/CodeGen/SPIRV/llc-pipeline.ll
+411-03 files not shown
+416-09 files

LLVM/project 6a045c2llvm/include/llvm/CodeGenTypes LowLevelType.h, llvm/lib/CodeGen LowLevelTypeUtils.cpp

Revert "[GlobalISel][LLT] Introduce FPInfo for LLT (Enable bfloat, ppc128float and others in GlobalISel) (#155107)" (#188344)

This reverts commit b1aa6a45060bb9f89efded9e694503d6b4626a4a and commit
ce44d63e0d14039f1e8f68e6b7c4672457cabd4e.

This fails the build with some older gcc:

llvm/include/llvm/CodeGenTypes/LowLevelType.h:501:35: error: call to
non-constexpr function ‘static llvm::LLT llvm::LLT::integer(unsigned
int)’
     return integer(getSizeInBits());
                                   ^
DeltaFile
+132-389llvm/include/llvm/CodeGenTypes/LowLevelType.h
+73-160llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp
+0-135llvm/unittests/CodeGen/GlobalISel/IRTranslatorBF16Test.cpp
+35-77llvm/lib/CodeGen/MIRParser/MIParser.cpp
+39-64llvm/utils/TableGen/Common/GlobalISel/GlobalISelMatchTable.cpp
+25-69llvm/lib/CodeGen/LowLevelTypeUtils.cpp
+304-89447 files not shown
+457-1,27453 files

NetBSD/src cRdHk6pshare/man/man7 sysctl.7, sys/net nd.c nd.h

   Add sysctl icmp6.nd6_gctimer to control the duration stale neighbors will be kept
   for, before being garbage collected, in seconds. (Timo Buhrmester)
VersionDeltaFile
1.259+9-2sys/netinet6/icmp6.c
1.9+4-6sys/net/nd.c
1.170+6-2share/man/man7/sysctl.7
1.285+3-2sys/netinet6/nd6.c
1.62+2-1sys/netinet/icmp6.h
1.4+2-1sys/net/nd.h
+26-146 files

FreeBSD/src cd05c88. ObsoleteFiles.inc, tests/sys/netinet tcp_socket.c tcp_implied_connect.c

tests/netinet: add test for getsockname() on a disconnected TCP socket

Stack it into existing file that exercises an other corner case of our
TCP and rename the file to a more generic name.
DeltaFile
+113-0tests/sys/netinet/tcp_socket.c
+0-80tests/sys/netinet/tcp_implied_connect.c
+3-0ObsoleteFiles.inc
+1-1tests/sys/netinet/Makefile
+117-814 files

LLVM/project 6b12809clang/test/InstallAPI extra-exclude-headers.test hiddens.test

[InstallAPI] [Tests] Avoid checking compiler output for 'error' (#188307)

We have two tests that use FileCheck for diagnostics and which try to
check that the output contains no compiler errors by checking for the
string 'error'. The issue with this approach is that this also causes
those tests to fail if the *path* contains the word 'error', which can
happen e.g. if the branch name contains the word 'error'.

Instead, we now check for `error:` since that string is much less likely
to appear in a path.
DeltaFile
+1-1clang/test/InstallAPI/extra-exclude-headers.test
+1-1clang/test/InstallAPI/hiddens.test
+2-22 files

LLVM/project 674cb9elldb/source/Plugins/Process/gdb-remote GDBRemoteCommunicationClient.cpp

[lldb] Fix immediately-destroyed ScopedTimeout in KillProcess (#188333)

The ScopedTimeout was created as a temporary, causing it to be destroyed
immediately and the timeout to have no effect. Give it a name so it
lives until the end of the function scope.
DeltaFile
+1-1lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
+1-11 files

LLVM/project 642bde7llvm/lib/Transforms/Vectorize SLPVectorizer.cpp, llvm/test/Transforms/SLPVectorizer order-reduction-infinite-loop.ll

[SLP] Fix infinite loop in ordered reduction worklist processing (#188342)

The ordered reduction support introduced in 94e366ef2060 can cause an
infinite loop when processing complex reduction chains. The worklist
algorithm re-adds instructions from PossibleOrderedReductionOps when
switching to ordered mode, but doesn't track which instructions have
already been processed. This allows instructions to be re-added and
processed multiple times, creating cycles.

Add a Visited set to track processed instructions and skip any that
have already been handled, preventing the infinite loop.
DeltaFile
+126-0llvm/test/Transforms/SLPVectorizer/order-reduction-infinite-loop.ll
+3-0llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
+129-02 files

LLVM/project 56b5f19clang/include/clang/Basic HLSLIntrinsics.td, clang/test/TableGen hlsl-intrinsics.td

Merge branch 'main' into users/vitalybuka/spr/compiler-rt-suppress-unused-variable-report-in-emutls
DeltaFile
+590-0clang/utils/TableGen/HLSLEmitter.cpp
+469-0clang/test/TableGen/hlsl-intrinsics.td
+320-0clang/include/clang/Basic/HLSLIntrinsics.td
+217-78llvm/lib/Target/WebAssembly/WebAssemblyFastISel.cpp
+54-92llvm/test/CodeGen/WebAssembly/load-ext.ll
+73-4llvm/tools/llvm-lipo/llvm-lipo.cpp
+1,723-17433 files not shown
+2,307-21739 files

LLVM/project fe28635llvm/lib/Transforms/Scalar JumpThreading.cpp, llvm/test/Transforms/JumpThreading update-bpi-bfi-unfold-select.ll

[JT] `tryToUnfoldSelectInCurrBB` should update BFI & BPI if present (#188097)

Issue #187545
DeltaFile
+58-0llvm/test/Transforms/JumpThreading/update-bpi-bfi-unfold-select.ll
+31-0llvm/lib/Transforms/Scalar/JumpThreading.cpp
+89-02 files

LLVM/project e3c6244llvm/include/llvm/ExecutionEngine/Orc EPCGenericJITLinkMemoryManager.h, llvm/lib/ExecutionEngine/Orc EPCGenericJITLinkMemoryManager.cpp

[ORC] Add EPCGenericJITLinkMemoryManager::Create named constructor. (#188191)

Create takes a JITDylib and a SymbolNames struct, looks up the
implementation symbol addresses in the given JITDylib, and uses them to
construct an EPCGenericJITLinkMemoryManager instance. This makes it
easier for ORC clients to construct the memory manager from named
symbols (e.g. in a bootstrap JITDylib) rather than raw addresses.
DeltaFile
+62-0llvm/unittests/ExecutionEngine/Orc/EPCGenericJITLinkMemoryManagerTest.cpp
+19-0llvm/lib/ExecutionEngine/Orc/EPCGenericJITLinkMemoryManager.cpp
+15-1llvm/include/llvm/ExecutionEngine/Orc/EPCGenericJITLinkMemoryManager.h
+96-13 files

LLVM/project aff1488llvm/lib/Target/AMDGPU/AsmParser AMDGPUAsmParser.cpp, llvm/test/MC/AMDGPU gfx1250_asm_wmma_w32.s gfx1250_asm_wmma_w32_err.s

[AMDGPU] Disable neg_lo[0:1] and neg_hi[0:1] on gfx1251 WMMA, MC part
DeltaFile
+10-45llvm/test/MC/AMDGPU/gfx1250_asm_wmma_w32.s
+10-31llvm/test/MC/Disassembler/AMDGPU/gfx1250_dasm_wmma_w32.txt
+30-0llvm/test/MC/AMDGPU/gfx1250_asm_wmma_w32_err.s
+6-0llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
+56-764 files

LLVM/project 13b2ee2clang/include/clang/AST ExternalASTSource.h

[clang][AST] Fix LazyGenerationalUpdatePtr NumLowBitsAvailable on 32-bit (#188318)

The `PointerLikeTypeTraits` for `LazyGenerationalUpdatePtr` claimed
`PointerLikeTypeTraits<T>::NumLowBitsAvailable - 1` spare low bits. This
assumed that the inner `PointerUnion<T, LazyData*>` has `T_bits - 1`
spare bits, which is only true when `alignof(LazyData) >= alignof(*T)`.

On 32-bit systems, `LazyData` (containing pointers and `uint32_t`) has
`alignof = 4`, giving `LazyData*` only 2 low bits. With `T = Decl*` (3
bits due to `alignas(8)`), the inner `PointerUnion` has `min(3,2) - 1 =
1` spare bit, but the PLTT claimed `3 - 1 = 2`.

Historically, the formula was correct when introduced in 053f6c6c9e4d --
at that time `Decl` had no alignment annotation, so `T_bits ==
LazyData*_bits` on all platforms. It became outdated when 771721cb35f3
added `LLVM_ALIGNAS(8)` to `Decl`, raising `Decl*` to 3 bits on 32-bit
while `LazyData*` stayed at 2. The old `PointerIntPair`-based
`PointerUnion::doCast` happened to mask with `minLowBitsAvailable()`
(tolerant of overclaims), so this was never exposed until the

    [5 lines not shown]
DeltaFile
+1-3clang/include/clang/AST/ExternalASTSource.h
+1-31 files

LLVM/project 11bc6e8llvm/lib/CodeGen/SelectionDAG SelectionDAG.cpp, llvm/test/CodeGen/AMDGPU llvm.exp10.ll llvm.exp.ll

[SelectionDAG] Add known bit for `ISD::FABS` (#188335)

Absolute value always clears the sign bit, so make that knowh to
selectionDAG's `computeKnownBits`.
DeltaFile
+5-0llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+1-1llvm/test/CodeGen/AMDGPU/llvm.exp10.ll
+1-1llvm/test/CodeGen/AMDGPU/llvm.exp.ll
+7-23 files

LLVM/project 8007a41flang/lib/Lower/OpenMP OpenMP.cpp ClauseProcessor.cpp, flang/test/Lower/OpenMP linear_modifier.f90 distribute-parallel-do-simd.f90

Fix implicit val for OpenMP >= 52 and don't rely on static variables in processLinear

- Emit val for implicit linear clause if openmp version >= 52
- Turn `typeAttrs` and `linearModAttrs` from static to local to
avoid confusions about cleaning stale value
DeltaFile
+20-20flang/test/Lower/OpenMP/linear_modifier.f90
+16-8flang/test/Lower/OpenMP/distribute-parallel-do-simd.f90
+14-7flang/test/Lower/OpenMP/composite_simd_linear.f90
+15-6flang/lib/Lower/OpenMP/OpenMP.cpp
+8-4flang/test/Lower/OpenMP/wsloop-linear.f90
+2-7flang/lib/Lower/OpenMP/ClauseProcessor.cpp
+75-526 files

FreeBSD/ports 5588918databases/mysql80-client pkg-plist Makefile

databases/mysql80-client: install the man pages

PR:             279234
Approved by:    maintainer (maintainer timeout)
DeltaFile
+16-16databases/mysql80-client/pkg-plist
+1-1databases/mysql80-client/Makefile
+17-172 files

FreeBSD/ports 845e91ewww/tomcat-native2 Makefile distinfo

www/tomcat-native2: Update to 2.0.14

MFH:            2026Q1
Changelog:      https://tomcat.apache.org/native-doc/miscellaneous/changelog.html#2.0.14

(cherry picked from commit 239d04ea1800994f26b9ff134d0ff4c79406f66e)
DeltaFile
+5-5www/tomcat-native2/Makefile
+3-3www/tomcat-native2/distinfo
+8-82 files

FreeBSD/ports adbb3b6www/tomcat-native Makefile distinfo

www/tomcat-native: Update to 1.3.7

MFH:            2026Q1
Changelog:      https://tomcat.apache.org/native-1.3-doc/miscellaneous/changelog.html#1.3.7

(cherry picked from commit c52bedad78c51deefe4df28cab44f3d2dd2d26e4)
DeltaFile
+8-7www/tomcat-native/Makefile
+3-3www/tomcat-native/distinfo
+11-102 files

LLVM/project 88de828flang/lib/Lower/OpenMP OpenMP.cpp ClauseProcessor.cpp, flang/test/Lower/OpenMP distribute-parallel-do-simd.f90 composite_simd_linear.f90

Fix implicit val for OpenMP >= 52 and don't rely on static variables in processLinear

- Emit val for implicit linear clause if openmp version >= 52
- Turn `typeAttrs` and `linearModAttrs` from static to local to
avoid confusions about cleaning stale value
DeltaFile
+16-8flang/test/Lower/OpenMP/distribute-parallel-do-simd.f90
+14-7flang/test/Lower/OpenMP/composite_simd_linear.f90
+15-6flang/lib/Lower/OpenMP/OpenMP.cpp
+8-4flang/test/Lower/OpenMP/wsloop-linear.f90
+2-7flang/lib/Lower/OpenMP/ClauseProcessor.cpp
+2-2flang/test/Lower/OpenMP/linear_modifier.f90
+57-346 files

FreeBSD/ports 239d04ewww/tomcat-native2 Makefile distinfo

www/tomcat-native2: Update to 2.0.14

MFH:            2026Q1
Changelog:      https://tomcat.apache.org/native-doc/miscellaneous/changelog.html#2.0.14
DeltaFile
+5-6www/tomcat-native2/Makefile
+3-3www/tomcat-native2/distinfo
+8-92 files

FreeBSD/ports c52bedawww/tomcat-native Makefile distinfo

www/tomcat-native: Update to 1.3.7

MFH:            2026Q1
Changelog:      https://tomcat.apache.org/native-1.3-doc/miscellaneous/changelog.html#1.3.7
DeltaFile
+8-8www/tomcat-native/Makefile
+3-3www/tomcat-native/distinfo
+11-112 files

FreeBSD/ports cefe7aedevel Makefile, devel/py-array-api-strict Makefile pkg-descr

devel/py-array-api-strict: add

To be used as TEST_DEPENDS
DeltaFile
+32-0devel/py-array-api-strict/Makefile
+14-0devel/py-array-api-strict/pkg-descr
+3-0devel/py-array-api-strict/distinfo
+1-0devel/Makefile
+50-04 files

LLVM/project 4e290b3libc/src/string/memory_utils utils.h

[libc][strings] Refactor load_aligned for cleaner endianness handling (#186360)

Replace the explicit `if constexpr` branching for big and little
endianness with compile-time calculated shift constants `VAL_SHIFT` and
`NEXT_SHIFT`. This simplifies the logic and reduces code duplication,
relying on the compiler to constant-fold the zero shifts into no-ops.
DeltaFile
+11-12libc/src/string/memory_utils/utils.h
+11-121 files