LLVM/project 16aa79dlldb/docs/resources formatterbytecode.rst

[lldb][docs] Fix table formatting in bytecode docs

Me adding extra backticks caused all these to be misaligned.

This didn't show up on the docs buildbot but did error in
CI on a later PR of mine.
DeltaFile
+65-65lldb/docs/resources/formatterbytecode.rst
+65-651 files

OPNSense/core 4d8ba44src/opnsense/mvc/app/models/OPNsense/Unbound Unbound.xml, src/opnsense/service/templates/OPNsense/Unbound/core blocklists.conf

Unbound: Deprecate Blocklist.site blocklist (unmaintained) (#9509)

* Unbound: Deprecate Blocklist.site blocklist (unmaintained)

* Unbound: Remove Blocklist.site blocklist from UI (unmaintained)
DeltaFile
+18-18src/opnsense/service/templates/OPNsense/Unbound/core/blocklists.conf
+0-18src/opnsense/mvc/app/models/OPNsense/Unbound/Unbound.xml
+18-362 files

LLVM/project 0e7adf2lldb/docs/use troubleshooting.rst

[lldb][docs] Describe how to check enabled features (#171468)

This makes use of `version -v` added by #170772,
along with fallback methods for LLDB prior to 22.

1. version --verbose (won't work prior to 22)
2. Scripting to call GetBuildConfiguration (won't work if you don't have
a scripting language
3. readelf/other platform's equivalent utility

readelf is recommended for Linux due to security concerns with ldd.

https://man7.org/linux/man-pages/man1/ldd.1.html
"some versions of ldd may attempt to obtain the
dependency information by attempting to directly
execute the program"

The drawback to that is it doesn't show dependencies of dependencies, so
I've noted that. People can use ldd if they trust the binary, but I've
made it clear how to avoid that and why you should avoid it.
DeltaFile
+56-0lldb/docs/use/troubleshooting.rst
+56-01 files

FreeNAS/freenas 08afaa6src/middlewared/middlewared/plugins/failover_ event.py

Fix failover
DeltaFile
+120-0src/middlewared/middlewared/plugins/failover_/event.py
+120-01 files

NetBSD/pkgsrc-wip ba86b27firefox140 distinfo Makefile

firefox140*: Update to 140.6.0

Changes:
140.6.0
- Security fixes (MFSA2025-94)
DeltaFile
+3-3firefox140/distinfo
+1-1firefox140/Makefile
+4-42 files

NetBSD/pkgsrc-wip 8a4bbdbfirefox140-l10n distinfo Makefile

firefox140-l10n: Prepare for 140.6.0

Beware, this change was only checksum-tested!

(I will fully install it once firefox140 install is complete.)
DeltaFile
+306-306firefox140-l10n/distinfo
+1-1firefox140-l10n/Makefile
+307-3072 files

NetBSD/pkgsrc-wip e04d9f2firefox140 COMMIT_MSG

firefox140: Add candidate commit message
DeltaFile
+5-0firefox140/COMMIT_MSG
+5-01 files

FreeBSD/src 80203a2sys/arm/include _align.h, sys/arm64/include _align.h

Add sys/_align.h replacing machine/_align.h

Define _ALIGNBYTES using sizeof(void *) (no functional change on any
existing architecture) which will allow it to work with CHERI were we
must align things up to capability alignment.

In _ALIGN, replace integer manipulation which does not preserve pointer
provenance with a type and provenance preserving builtin.  This requires
modest changes in code which assumes _ALIGN returns an integer, but
those are relatively rare.

Reviewed by:    kib, markj
Effort:         CHERI upstreaming
Sponsored by:   Innovate UK
Differential Revision:  https://reviews.freebsd.org/D53947
DeltaFile
+0-51sys/x86/include/_align.h
+0-51sys/powerpc/include/_align.h
+0-51sys/arm/include/_align.h
+0-47sys/arm64/include/_align.h
+0-41sys/riscv/include/_align.h
+32-0sys/sys/_align.h
+32-24110 files not shown
+40-26016 files

FreeBSD/src cfae62elib/libcasper/services/cap_grp cap_grp.c

libcasper: fix warnings when _ALIGN preserves types

Without the void * casts, the compiler complains about an alignment
requirement increase.

Reviewed by:    kib, markj
Obtained from:  CheriBSD
Effort:         CHERI upstreaming
Sponsored by:   DARPA, AFRL
Differential Revision:  https://reviews.freebsd.org/D53946
DeltaFile
+2-2lib/libcasper/services/cap_grp/cap_grp.c
+2-21 files

FreeBSD/src ac79e2elib/libc/gen getgrent.c, lib/libc/include nscache.h

get*ent: be consistant about _ALIGN(p) - p

Add an nscache specific inline function to calculate the misalignment
rather than adding and subtracting _ALIGN(p) and p which can take the
buffer far out of bound (undefined behavior in C and unsupported on
CHERI).

Reviewed by:    kib
Effort:         CHERI upstreaming
Obtained from:  CheriBSD
Sponsored by:   DARPA
Differential Revision:  https://reviews.freebsd.org/D53945
DeltaFile
+8-0lib/libc/include/nscache.h
+3-3lib/libc/gen/getgrent.c
+2-2lib/libc/net/getprotoent.c
+2-2lib/libc/net/getservent.c
+2-2lib/libc/rpc/getrpcent.c
+2-2lib/libc/net/gethostnamadr.c
+19-111 files not shown
+21-137 files

LLVM/project 9e64fefmlir/lib/Target/LLVMIR/Dialect/OpenMP OpenMPToLLVMIRTranslation.cpp, mlir/test/Target/LLVMIR openmp-private-allloca-hoisting.mlir

[OpenMP][MLIR] Hoist static `alloca`s emitted by private `init` regions to the allocation IP of the construct

Having more than 1 descritpr (allocatable or array) on the same `private` clause triggers a runtime crash on GPUs at the moment.

For SPMD kernels, the issue happens because the initialization logic includes:
* Allocating a number of temporary structs (these are emitted by flang when `fir` is lowered to `mlir.llvm`).
* There is a conditional branch that determines whether we will allocate storage for the descriptor and initialize array bounds from the original descriptor or whether we will initialize the private descriptor to null.

Because of these 2 things, temp allocations needed for descriptors beyond the 1st one are preceded by branching which causes the observed the runtime crash.

This PR solves this issue by hoisting these static `alloca`s instructions to the suitable allca IP of the parent construct.
DeltaFile
+79-0mlir/test/Target/LLVMIR/openmp-private-allloca-hoisting.mlir
+67-8mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.cpp
+146-82 files

LLVM/project 467af27mlir/lib/Conversion/AMDGPUToROCDL AMDGPUToROCDL.cpp, mlir/test/Conversion/AMDGPUToROCDL load_lds.mlir

Revert "[mlir][amdgpu] Add common gpu mem space conversions to `conve… (#171594)

…rt-amdgpu-to-rocdl` (#171543)"

This reverts commit fd0fb05ae196cb664ebdd8940aad20f9606c62f7.

Forgot to link GPU lib and shared lib build failed.
DeltaFile
+2-40mlir/test/Conversion/AMDGPUToROCDL/load_lds.mlir
+0-13mlir/lib/Conversion/AMDGPUToROCDL/AMDGPUToROCDL.cpp
+2-532 files

LLVM/project 5a24dfallvm/lib/CodeGen/SelectionDAG SelectionDAGBuilder.cpp, llvm/test/CodeGen/AArch64 round-conv.ll

[SDAG] Remove most non-canonical libcall handing (#171288)

This is a followup to https://github.com/llvm/llvm-project/pull/171114,
removing the handling for most libcalls that are already canonicalized
to intrinsics in the middle-end. The only remaining one is fabs, which
has more test coverage than the others.
DeltaFile
+0-97llvm/test/CodeGen/PowerPC/ctr-minmaxnum.ll
+22-71llvm/test/CodeGen/X86/fmaxnum.ll
+22-71llvm/test/CodeGen/X86/fminnum.ll
+32-41llvm/test/CodeGen/AArch64/round-conv.ll
+32-32llvm/test/CodeGen/PowerPC/fminnum.ll
+0-63llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+108-37516 files not shown
+343-61022 files

LLVM/project 036aed0clang/include/clang/CIR/Dialect/Builder CIRBaseBuilder.h, clang/include/clang/CIR/Dialect/IR CIROps.td

[CIR] Add scoped atomic load operation (#171134)

DeltaFile
+73-23clang/lib/CIR/CodeGen/CIRGenAtomic.cpp
+40-0clang/test/CIR/CodeGen/atomic-scoped.c
+17-17clang/test/CIR/CodeGen/atomic.c
+11-5clang/include/clang/CIR/Dialect/IR/CIROps.td
+5-2clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.cpp
+3-2clang/include/clang/CIR/Dialect/Builder/CIRBaseBuilder.h
+149-492 files not shown
+152-498 files

LLVM/project 1165e41llvm/lib/CodeGen SelectOptimize.cpp, llvm/test/CodeGen/AArch64 selectopt-cast.ll

[SelectOptimize] Fix incorrect -1 immediate for large integers (#170860)

This was creating a -1 with zero extension, while it needs to use sign
extension.
DeltaFile
+37-0llvm/test/CodeGen/AArch64/selectopt-cast.ll
+1-1llvm/lib/CodeGen/SelectOptimize.cpp
+38-12 files

OpenBSD/ports cJuBvazsysutils/flatpak/libportal Makefile, sysutils/flatpak/libportal/patches patch-libportal_portal-qt6_cpp

   Use patch from upstream.
VersionDeltaFile
1.2+10-6sysutils/flatpak/libportal/patches/patch-libportal_portal-qt6_cpp
1.6+2-0sysutils/flatpak/libportal/Makefile
+12-62 files

LLVM/project 5874ddfclang/include/clang/Basic OpenCLExtensions.def, clang/test/SemaOpenCL intel-unsupported-extensions.cl extension-version.cl

[OpenCL] Add cl_khr_subgroup_named_barrier and cl_intel_required_subgroup_size to OpenCLExtensions.def (#171433)

Fix typo cl_intel_bfloat16_conversion.
Add test for checking intel extension functions.
DeltaFile
+62-0clang/test/SemaOpenCL/intel-unsupported-extensions.cl
+56-2clang/test/SemaOpenCL/extension-version.cl
+3-1clang/include/clang/Basic/OpenCLExtensions.def
+121-33 files

FreeBSD/ports f0b0350graphics/py-scikit-image Makefile

graphics/py-scikit-image: remove BROKEN after fixing devel/py-pythran

This reverts commit 7f6db3ce5731752145655a3a20acf8c5e28ecba5.
DeltaFile
+0-2graphics/py-scikit-image/Makefile
+0-21 files

FreeBSD/ports b61041bdevel/py-pythran distinfo Makefile, devel/py-pythran/files patch-requirements.txt

devel/py-pythran: Update to 0.18.1 and unbreak with gast-0.7.0

PR:             291531
Approved by:    wen@
DeltaFile
+9-0devel/py-pythran/files/patch-requirements.txt
+3-3devel/py-pythran/distinfo
+2-2devel/py-pythran/Makefile
+14-53 files

FreeBSD/ports eee1e00audio/TonieToolbox Makefile, audio/TonieToolbox/files patch-pyproject.toml

audio/TonieToolbox: fix regression from 97c9464b6989f8e536b5435fe7afe963cc5f40e6

TonieToolbox required protobuff <= 6.33.0
DeltaFile
+2-1audio/TonieToolbox/Makefile
+1-1audio/TonieToolbox/files/patch-pyproject.toml
+3-22 files

LLVM/project 0c179aalldb/packages/Python/lldbsuite/test/tools/lldb-dap dap_server.py lldbdap_testcase.py

[lldb-dap] Increase DAP default timeout (#170890)

DAP tests easily timeout when the computer is under-load.

This is easily noticeable if you run the test in a loop a compile llvm.
or running the test on slower CI/machines.

This affects mostly the `DAP_launch`, `DAP_attach`,
`DAP_restart_console` and occasionally `DAP_output` tests.

Would lead in the direction of enabling some of the test on windows. 

```  
File "/Volumes/workspace/Dev/llvm-project/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py", line 1140, in request_launch
    return self._send_recv(command_dict)
  File "/Volumes/workspace/Dev/llvm-project/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py", line 548, in _send_recv
    raise ValueError(f"no response for {request!r}")
ValueError: no response for {'command': 'launch', 'type': 'request', 'arguments': {'program': '/Volumes/workspace/Dev/llvm-build/release/lldb-test-build.noindex/tools/lldb-dap/restart/TestDAP_restart_console.test_basic_functionality/a.out', 'initCommands': ['settings clear --all', 'settings set symbols.enable-external-lookup false', 'settings set target.inherit-tcc true', 'settings set target.disable-aslr false', 'settings set target.detach-on-error false', 'settings set target.auto-apply-fixits false', 'settings set plugin.process.gdb-remote.packet-timeout 60', 'settings set symbols.clang-modules-cache-path "/Volumes/workspace/Dev/llvm-build/release/lldb-test-build.noindex/module-cache-lldb"', 'settings set use-color false', 'settings set show-statusline false'], 'console': 'integratedTerminal', 'disableASLR': False, 'enableAutoVariableSummaries': False, 'enableSyntheticChildDebugging': False, 'displayExtendedBacktrace': False}, 'seq': 2}
Config=arm64-/Volumes/workspace/Dev/llvm-build/release/bin/clang

    [4 lines not shown]
DeltaFile
+3-2lldb/packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py
+2-2lldb/packages/Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py
+5-42 files

LLVM/project fd0fb05mlir/lib/Conversion/AMDGPUToROCDL AMDGPUToROCDL.cpp, mlir/test/Conversion/AMDGPUToROCDL load_lds.mlir

[mlir][amdgpu] Add common gpu mem space conversions to `convert-amdgpu-to-rocdl` (#171543)

Without it `convert-amdgpu-to-rocdl` will fail to convert
`amdgpu.gather_to_lds` with `#gpu.address_space<workgroup>` mem space.
DeltaFile
+40-2mlir/test/Conversion/AMDGPUToROCDL/load_lds.mlir
+13-0mlir/lib/Conversion/AMDGPUToROCDL/AMDGPUToROCDL.cpp
+53-22 files

FreeBSD/ports 176eeecwww/py-dj51-django-timezone-field distinfo Makefile

www/py-dj51-django-timezone-field: Update to 7.2.1

Changelog since 7.1:

https://github.com/mfogel/django-timezone-field/compare/7.1...7.2.1
DeltaFile
+3-3www/py-dj51-django-timezone-field/distinfo
+2-2www/py-dj51-django-timezone-field/Makefile
+5-52 files

FreeBSD/ports eb45a39www/py-dj51-django-htmx distinfo Makefile

www/py-dj51-django-htmx: Update to 1.27.0

Changelog:

https://github.com/adamchainz/django-htmx/blob/1.27.0/docs/changelog.rst
DeltaFile
+3-3www/py-dj51-django-htmx/distinfo
+1-1www/py-dj51-django-htmx/Makefile
+4-42 files

FreeBSD/ports 96908b2www/py-dj51-strawberry-graphql-django distinfo Makefile

www/py-dj51-strawberry-graphql-django: Update to 0.70.1

Changelog since 0.67.2:

https://github.com/strawberry-graphql/strawberry-django/compare/v0.67.2...v0.70.1
DeltaFile
+3-3www/py-dj51-strawberry-graphql-django/distinfo
+1-1www/py-dj51-strawberry-graphql-django/Makefile
+4-42 files

FreeBSD/ports 629ad38www/py-dj51-drf-spectacular-sidecar distinfo Makefile

www/py-dj51-drf-spectacular-sidecar: Update to 2025.12.1

Changelog:

https://github.com/tfranzel/drf-spectacular-sidecar/compare/2025.10.1...2025.12.1
DeltaFile
+3-3www/py-dj51-drf-spectacular-sidecar/distinfo
+1-1www/py-dj51-drf-spectacular-sidecar/Makefile
+4-42 files

FreeBSD/ports 7ac0d0adevel/py-dj51-strawberry-graphql distinfo Makefile

devel/py-dj51-strawberry-graphql: Update to 0.287.2

Changelog since 0.287.0:

https://github.com/strawberry-graphql/strawberry/blob/0.287.2/CHANGELOG.md
DeltaFile
+3-3devel/py-dj51-strawberry-graphql/distinfo
+1-1devel/py-dj51-strawberry-graphql/Makefile
+4-42 files

FreeBSD/ports 419cd5awww/py-drf-spectacular-sidecar distinfo Makefile

www/py-drf-spectacular-sidecar: Update to 2025.12.1

Changelog:

https://github.com/tfranzel/drf-spectacular-sidecar/compare/2025.10.1...2025.12.1
DeltaFile
+3-3www/py-drf-spectacular-sidecar/distinfo
+1-1www/py-drf-spectacular-sidecar/Makefile
+4-42 files

FreeBSD/ports 077a505www/py-strawberry-graphql-django distinfo Makefile

www/py-strawberry-graphql-django: Update to 0.70.1

Changelog since 0.67.2:

https://github.com/strawberry-graphql/strawberry-django/compare/v0.67.2...v0.70.1
DeltaFile
+3-3www/py-strawberry-graphql-django/distinfo
+1-1www/py-strawberry-graphql-django/Makefile
+4-42 files

FreeBSD/ports 6c087b0www/py-django-timezone-field distinfo Makefile

www/py-django-timezone-field: Update to 7.2.1

Changelog since 7.1:

https://github.com/mfogel/django-timezone-field/compare/7.1...7.2.1
DeltaFile
+3-3www/py-django-timezone-field/distinfo
+2-2www/py-django-timezone-field/Makefile
+5-52 files