LLVM/project b07aeecmlir/lib/Dialect/Arith/Transforms IntRangeOptimizations.cpp, mlir/test/Dialect/Arith int-range-opts-crash.mlir

[MLIR][IntRange] Materialize known constant values only when the value type is integer-like (#196133)

This patch came out of
https://discourse.llvm.org/t/request-for-advice-in-updating-intrange-optimziations/90685

In short, my out-of-tree dialect has region-bearing operations whose
return-like terminators semantically wrap an integer type in a
non-integer type when returning to the parent for control flow (also
this dialect that has no constant materializer). In this case,
`MaterializeKnownConstantValues` will attempt to construct integer
attributes using those non-integer types, which causes a stack trace and
prevents us from using int range optimizations on IR that contains these
ops.

This patch adds guards to the materialization step, so that if the value
that is inferred to be constant is not an integer (or shaped container
with an integer element type), no materialization is attempted.
DeltaFile
+24-0mlir/test/lib/Dialect/Test/TestOpDefs.cpp
+13-0mlir/test/Dialect/Arith/int-range-opts-crash.mlir
+11-1mlir/lib/Dialect/Arith/Transforms/IntRangeOptimizations.cpp
+11-0mlir/test/lib/Dialect/Test/TestOps.td
+59-14 files

LLVM/project 03c7594clang/lib/Driver/ToolChains SPIRV.cpp, clang/test/Driver sycl-link-spirv-target.cpp

[Driver] Forward -v to clang-sycl-linker in SPIRV toolchain (#196213)

The SPIRV linker job construction was not forwarding the -v (verbose)
flag to clang-sycl-linker when --sycl-link is used. This is limited to
the --sycl-link path because the default linker spir-link doesn't
support -v flag.
DeltaFile
+6-0clang/test/Driver/sycl-link-spirv-target.cpp
+2-0clang/lib/Driver/ToolChains/SPIRV.cpp
+8-02 files

LLVM/project 38bda74mlir/test/mlir-reduce reduction-tree.mlir simple-test.mlir, mlir/test/mlir-reduce/reduction-tree reduction-tree.mlir simple-test.mlir

[mlir][reduce] Separate scripts and tests into distinct directories (#196005)

This PR reorganizes the mlir-reduce component by separating reduction
scripts and their corresponding test cases into dedicated directories.
Part of https://github.com/llvm/llvm-project/pull/195997.
DeltaFile
+0-60mlir/test/mlir-reduce/reduction-tree.mlir
+60-0mlir/test/mlir-reduce/reduction-tree/reduction-tree.mlir
+0-19mlir/test/mlir-reduce/simple-test.mlir
+19-0mlir/test/mlir-reduce/reduction-tree/simple-test.mlir
+0-16mlir/test/mlir-reduce/failure-test.sh
+16-0mlir/test/mlir-reduce/script/failure-test.sh
+95-9510 files not shown
+126-12616 files

FreeBSD/src b2e4da0sbin/devd devd.cc

devd: Use PF_LOCAL instead of PF_INET

Avoid dependency on INET (IPv4) by using PF_LOCAL,
allowing media check to work on systems without INET support.

PR:             295045
Reviewed by:    kevans
MFC after:      1 week
DeltaFile
+1-1sbin/devd/devd.cc
+1-11 files

LLVM/project 6e601bcllvm/unittests/DWARFLinkerParallel CMakeLists.txt

[UnitTests] Remove duplicated libs. NFC (#196215)
DeltaFile
+0-1llvm/unittests/DWARFLinkerParallel/CMakeLists.txt
+0-11 files

LLVM/project 5cc7259clang/tools/clang-sycl-linker ClangSYCLLinker.cpp

[clang-sycl-linker][NFC] Improve clang-sycl-linker verbose output (#196212)

Print in-process operation messages (sycl-device-link, LLVM backend)
before execution rather than after, matching the behavior of
clang-linker-wrapper.
DeltaFile
+25-25clang/tools/clang-sycl-linker/ClangSYCLLinker.cpp
+25-251 files

DragonFlyBSD/src d826fe9sys/bus/u4b/controller xhci.c xhci.h

xhci - FreeBSD PR 251503, 262882

* No need to stop XHCI endpoints in disabled state.

* Some AMD XHCI implementations apparently assert a permanent
  internal failure if this happens.

* Always add and evaluate the slot context.

* Only drop BULK and INTERRUPT endpoints to reset data toggle,
  because for other endpoint types this is not critical.

FreeBSD-PR: 251503, 262882
DeltaFile
+138-13sys/bus/u4b/controller/xhci.c
+38-0sys/bus/u4b/controller/xhci.h
+176-132 files

DragonFlyBSD/src 5f1f285sys/bus/u4b/controller xhci.c

xhci - Add nissing cache flush from FreeBSD

* Bring in FreeBSD PR 237666

* Adds missing cache flush during initialization that can mess
  up the event ring pointer.
DeltaFile
+13-0sys/bus/u4b/controller/xhci.c
+13-01 files

DragonFlyBSD/src a39c03esys/bus/u4b/controller xhci.c xhci_pci.c

xhci - Refactor polling to avoid unnecessary relocks

* Refactor the polling callout to avoid unnecessary unlock / relock
  sequences.
DeltaFile
+15-6sys/bus/u4b/controller/xhci.c
+6-4sys/bus/u4b/controller/xhci_pci.c
+1-0sys/bus/u4b/controller/xhci.h
+22-103 files

NetBSD/pkgsrc sJBW8Q8doc CHANGES-2026

   doc: fix committer attribution for last two vim-share updates
VersionDeltaFile
1.2858+3-3doc/CHANGES-2026
+3-31 files

NetBSD/pkgsrc uz2Yf9kdoc CHANGES-2026

   doc: Updated security/doas to 6.3p2nb2
VersionDeltaFile
1.2857+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc ylZB1QHsecurity/doas Makefile distinfo, security/doas/patches patch-Makefile

   doas: add pkgsrc-specific paths to GLOBAL_PATH and SAFE_PATH

   Issue noted by Takashi Shimizu on pkgsrc-users@.

   This follows how these paths are defined ordering-wise based on doas.h.
   The existing SunOS override approach in Makefile varies here, as added
   that way upstream. The SunOS setting was left as-is, to keep with the
   POLA. (Someone may be surprised by the change on other OSes,
   regardless; so it goes.)
VersionDeltaFile
1.2+18-3security/doas/patches/patch-Makefile
1.16+2-2security/doas/Makefile
1.10+2-2security/doas/distinfo
+22-73 files

NetBSD/pkgsrc KTRfOupdoc TODO

   doc/TODO: add doas 6.4
VersionDeltaFile
1.27214+2-1doc/TODO
+2-11 files

LLVM/project 82b2aebllvm/lib/Target/WebAssembly WebAssemblyInstrRef.td, llvm/lib/Target/WebAssembly/AsmParser WebAssemblyAsmParser.cpp WebAssemblyAsmTypeCheck.cpp

[WebAssembly] Add typed select (select t*, 0x1c) (#195953)

Add MC-layer support for the typed select instruction from the
reference-types proposal:

- New OPERAND_VALTYPE_LIST operand kind (ULEB count followed by N
single-byte valtypes), stored in the MCInst as count + N immediates.
- SELECT_T at 0x1c in WebAssemblyInstrRef.td, gated on
HasReferenceTypes.
- Plumbing through the disassembler, printer, encoder, asm parser, and
type checker.
- Encoding, disassembly, and type-checker error tests, covering
zero-length and multi-value vecs.

ISel continues to select the numeric SELECT_<type> variants at 0x1b. My
motivation is unblocking LLDB, which uses LLVM's disassembler. We got a
report that these instructions show up as <unknown> in LLDB.

rdar://170659547
DeltaFile
+79-0llvm/test/MC/WebAssembly/typed-select.s
+45-1llvm/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp
+45-0llvm/test/MC/Disassembler/WebAssembly/typed-select.txt
+22-0llvm/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmTypeCheck.cpp
+21-0llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyInstPrinter.cpp
+17-0llvm/lib/Target/WebAssembly/WebAssemblyInstrRef.td
+229-15 files not shown
+274-111 files

LLVM/project 2a1d2a1llvm/include/llvm/Support JSON.h

Revert "[ASan][JSON] Unpoison memory before its reuse" (#196203)

Reverts llvm/llvm-project#79065

This is no longer necessary now that we have gotten rid of ASan short
string annotations in libc++.
DeltaFile
+1-14llvm/include/llvm/Support/JSON.h
+1-141 files

LLVM/project f7077c3llvm/include/llvm/ADT FunctionExtras.h

Revert "[ASan][ADT] Don't scribble with ASan" (#196201)

Reverts llvm/llvm-project#79066

This is no longer necessary now that we have gotten rid of ASan short
string annotations in libc++ (#194208).
DeltaFile
+2-5llvm/include/llvm/ADT/FunctionExtras.h
+2-51 files

LLVM/project c1c557blldb/bindings/lua CMakeLists.txt, lldb/bindings/python CMakeLists.txt

[lldb] Support dynamically loading ScriptInterpreter plugins (#189718)

Add support for building the script interpreter plugins as shared
libraries, controlled by the `LLDB_ENABLE_DYNAMIC_SCRIPTINTERPRETERS`
CMake variable. This allows the plugins, rather than `liblldb`, to link
against their respective dependencies such as Python and Lua, which has
several benefits:

1. It makes it possible to gracefully handle the Python or Lua
dependencies not being present, instead of crashing.
2. It enables programmatically deciding which Python or Lua library to
load.
3. Combined with (2), this opens up a path towards not statically
linking with Python at all, which is required in order to load the LLDB
module in a different Python interpreter (at least this is a hard
requirement on Darwin due to two-level namespaces and install names).

This PR completes #183791
DeltaFile
+49-13lldb/source/Plugins/ScriptInterpreter/Python/CMakeLists.txt
+33-5lldb/source/Plugins/ScriptInterpreter/Lua/CMakeLists.txt
+11-3lldb/bindings/python/CMakeLists.txt
+11-3lldb/bindings/lua/CMakeLists.txt
+7-5lldb/source/API/CMakeLists.txt
+7-1lldb/unittests/ScriptInterpreter/Python/CMakeLists.txt
+118-302 files not shown
+130-318 files

LLVM/project 3a49e45clang/include/clang/Basic DiagnosticSemaKinds.td, clang/lib/Sema SemaType.cpp

[OpenCL] Add warning for reserved 'long long' type (#196002)

'long long' is a reserved data type in all versions of OpenCL C.

Relates to https://github.com/intel/intel-graphics-compiler/issues/405
DeltaFile
+10-4clang/lib/Sema/SemaType.cpp
+12-0clang/test/SemaOpenCL/longlong.cl
+3-0clang/include/clang/Basic/DiagnosticSemaKinds.td
+1-1clang/test/SemaOpenCL/fdeclare-opencl-builtins.cl
+1-1clang/test/Misc/languageOptsOpenCL.cl
+0-1clang/test/SemaSPIRV/BuiltIns/subgroup-errors.c
+27-76 files

FreeBSD/src 58811b0usr.sbin/jail config.c

jail: open the fstab files with fopen("re")

This protects against accidentally leaking them past fork()+exec()
in future refactorings.

PR:             295052
Reviewed by:    kevans
DeltaFile
+1-1usr.sbin/jail/config.c
+1-11 files

FreeBSD/src 276d9b8usr.sbin/jail config.c

jail: avoid leaking jail config fds to exec.* hooks

The jail(8) command must not leave parsed configuration files open
since the file descriptors will be leaked to child processes
including the untrusted exec.start or exec.stop hooks.

While fopen() doesn't provide direct access to O_CLOEXEC, it does
provide access to FD_CLOEXEC via "e" in the mode string which
provides the desired defense in depth against leaking file descriptors
into exec.* hooks since those always execve() into a shell.

Jail configuration is potentially sensitive and some hooks execute from
within the jail context, leaving some opening for the jail to exfiltrate
information about the host environment.

(Commit message wordsmithed by kevans)

PR:             295052
Reviewed by:    kevans
MFC after:      3 days
DeltaFile
+4-1usr.sbin/jail/config.c
+4-11 files

FreeBSD/ports 17c2ef8mail/archiveopteryx Makefile distinfo, mail/archiveopteryx/files patch-core__md5.cpp patch-server_tlsthread.cpp

mail/archiveopteryx: Update to latest git

archiveopteryx has not received an official release in many years and
many fixes have been accumulating. I have traditionally published the
git version under the mail/archiveopteryhx-devel port, but many
improvements have happened that aox users should be getting by default.
I'm working with upstream to get a new release finally made.

While here, correct the LICENSE which is actually PostgreSQL, not MIT.
DeltaFile
+0-33mail/archiveopteryx/files/patch-core__md5.cpp
+17-15mail/archiveopteryx/Makefile
+0-11mail/archiveopteryx/files/patch-server_tlsthread.cpp
+0-11mail/archiveopteryx/files/patch-Jamrules
+0-11mail/archiveopteryx/files/patch-db__postgres.cpp
+3-2mail/archiveopteryx/distinfo
+20-831 files not shown
+21-847 files

FreeBSD/ports 992875email/archiveopteryx-devel Makefile pkg-plist, mail/archiveopteryx-devel/files archiveopteryx.in patch-Jamsettings

mail/archiveopteryx-devel: Retire this port

It is recommended to use mail/archiveopteryx instead.
DeltaFile
+0-68mail/archiveopteryx-devel/files/archiveopteryx.in
+0-66mail/archiveopteryx-devel/Makefile
+0-58mail/archiveopteryx-devel/files/patch-Jamsettings
+0-45mail/archiveopteryx-devel/files/patch-Jamfile
+0-25mail/archiveopteryx-devel/files/pkg-message.in
+0-24mail/archiveopteryx-devel/pkg-plist
+0-2867 files not shown
+1-32913 files

FreeBSD/src 3348fa7tests/sys/netinet6/frag6 frag6_19.sh

Revert "Skip sys.netinet6.frag6.frag6_19.frag6_19 in CI"

Per [siva@'s comment on the PR][1], this testcase now passes cleanly in CI.

PR:     274941
MFC after:      1 week

[1]: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=274941#c6

This reverts commit 86e87c3bd1b377242aafe7e2222ae17ca0be96d9.
DeltaFile
+0-3tests/sys/netinet6/frag6/frag6_19.sh
+0-31 files

FreeBSD/src efa8679sys/contrib/openzfs/config kernel-dentry-alias.m4, sys/contrib/openzfs/lib/libzfs libzfs_mnttab.c

zfs: merge openzfs/zfs at a12c6ed62

Notable upstream pull request merges:
 #18473 b8d959640 Fix rare cksum errors after rebuild
 #18477 e78a51dd6 Fix off-by-one in PREVIOUSLY_REDACTED handler that drops
                  last block
 #18482 d5099c330 Initialize vr_last_txg for rebuild
 #18483 872f01019 Zstd: rework ZSTD_isError symbol renaming
 #18489 366b1f9a3 Fix long POSIX_FADV_DONTNEED for single block files

Obtained from:  OpenZFS
OpenZFS commit: a12c6ed62fcd06093b95616515e4716b0b0bc038
DeltaFile
+118-0sys/contrib/openzfs/tests/zfs-tests/tests/functional/redacted_send/redacted_max_blkid.ksh
+107-0sys/contrib/openzfs/tests/zfs-tests/cmd/libzfs_mnttab_cache_check.c
+45-25sys/contrib/openzfs/lib/libzfs/libzfs_mnttab.c
+32-0sys/contrib/openzfs/config/kernel-dentry-alias.m4
+26-0sys/contrib/openzfs/tests/zfs-tests/tests/functional/libzfs/libzfs_mnttab_cache.ksh
+16-3sys/contrib/openzfs/module/os/linux/zfs/zfs_ctldir.c
+344-2841 files not shown
+522-10747 files

LLVM/project f1d39dbclang/lib/Headers __clang_cuda_runtime_wrapper.h

[Clang][NVPTX] fix `no member named 'this_cluster'` (#187039)

Fixes #184754

Adds a macro based on which `this_cluster` function is defined.
DeltaFile
+4-0clang/lib/Headers/__clang_cuda_runtime_wrapper.h
+4-01 files

LLVM/project 017a0e7llvm/lib/Target/AMDGPU SIInstructions.td, llvm/test/CodeGen/AMDGPU packed-fp32.ll

[AMDGPU] Add fcanonicalize + fneg selection pattern for v2f32 (#196188)
DeltaFile
+4-4llvm/test/CodeGen/AMDGPU/packed-fp32.ll
+6-1llvm/lib/Target/AMDGPU/SIInstructions.td
+10-52 files

OpenBSD/ports tq8hYSznet/qbittorrent Makefile.inc, net/qbittorrent/qbittorrent distinfo

   update to qbittorrent 5.2.0
VersionDeltaFile
1.43+2-2net/qbittorrent/qbittorrent/distinfo
1.43+2-2net/qbittorrent/qbittorrent-nox/distinfo
1.54+2-1net/qbittorrent/Makefile.inc
1.2+1-1net/qbittorrent/qbittorrent/patches/patch-CMakeLists_txt
1.3+2-0net/qbittorrent/qbittorrent-nox/pkg/PLIST
1.2+1-1net/qbittorrent/qbittorrent-nox/patches/patch-CMakeLists_txt
+10-76 files

LLVM/project 3bd61c6llvm/include/llvm/Support JSON.h

formatting
DeltaFile
+2-2llvm/include/llvm/Support/JSON.h
+2-21 files

LLVM/project 90f7145utils/bazel/llvm-project-overlay/lldb BUILD.bazel

[Bazel] Fixes 7e74c78 (#196197)

This fixes 7e74c78ea342c0a7dda249c054085e824b77016e.

Co-authored-by: Google Bazel Bot <google-bazel-bot at google.com>
DeltaFile
+1-0utils/bazel/llvm-project-overlay/lldb/BUILD.bazel
+1-01 files

FreeBSD/src 18626fatests/sys/netinet6/frag6 frag6_07.sh

Unskip test sys.netinet6.frag6.frag6_07.frag6_07

This is now consistently passing with 100+ consecutive runs.

Signed-off-by: Siva Mahadevan <me at svmhdvn.name>
PR:             244170
MFC after:      3 days
Sponsored by: The FreeBSD Foundation
(cherry picked from commit 681e9d3e391f30a512c523514f69a63c9782a901)
DeltaFile
+0-3tests/sys/netinet6/frag6/frag6_07.sh
+0-31 files