XigmaNAS/svn 10642trunk/build CHANGES readme_14.4.txt, trunk/build/ports/netatalk4 distinfo Makefile

Upgrade netatalk to v4.4.3.
DeltaFile
+17-9trunk/build/ports/netatalk4/files/patch-meson.build
+3-3trunk/build/ports/netatalk4/distinfo
+1-2trunk/build/ports/netatalk4/Makefile
+1-1trunk/build/CHANGES
+1-0trunk/build/readme_14.4.txt
+23-155 files

LLVM/project 30a521flibcxx/include optional, libcxx/test/std/utilities/optional/optional.object/optional.object.ctor U.pass.cpp

The standard does not require `optional<T>(U&&)` to be potentially throwing; it simply does not specify noexcept for the primary `optional<T>` converting constructor. Standard library implementations are permitted [[res.on.exception.handling]/5](https://eel.is/c++draft/res.on.exception.handling#5) to strengthen exception specifications for non-virtual library functions, as long as the strengthened specification is correct.

GNU libstdc++ already does this:
https://github.com/gcc-mirror/gcc/blob/master/libstdc%2B%2B-v3/include/std/optional#L911-L913
https://github.com/gcc-mirror/gcc/blob/master/libstdc%2B%2B-v3/include/std/optional#L962-L974

The existing libc++ code only added noexcept for the C++26 `optional<T&>` case, guarded by `is_lvalue_reference_v<_Tp>`. It is safe to remove that gate and use the general condition instead:
```
noexcept(is_nothrow_constructible_v<_Tp, _Up>)
```

For `optional<T&>`, this still becomes the intended reference-construction check. For ordinary `optional<T>`, it correctly reflects whether constructing `T` from `U` can throw. The constructor only forwards into the contained object construction and updates optional bookkeeping, so if `T` is nothrow-constructible from `U`, the optional construction is also nothrow.
DeltaFile
+21-0libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/U.pass.cpp
+4-12libcxx/include/optional
+25-122 files

LLVM/project f6e9001llvm/lib/Target/AMDGPU AMDGPURegBankLegalizeRules.cpp AMDGPUSearchableTables.td, llvm/test/Analysis/UniformityAnalysis/AMDGPU always_uniform.ll

[AMDGPU] Fix GISel lowering for amdgcn_s_quadmask, amdgcn_s_wqm (#202704)

This change also marks the intrinsics 
`amdgcn_s_quadmask` and `amdgcn_s_wqm` 
as AlwaysUniform.
DeltaFile
+32-0llvm/test/Analysis/UniformityAnalysis/AMDGPU/always_uniform.ll
+2-4llvm/lib/Target/AMDGPU/AMDGPURegBankLegalizeRules.cpp
+2-0llvm/lib/Target/AMDGPU/AMDGPUSearchableTables.td
+36-43 files

OPNSense/src 8624279stand/efi/loader main.c bootinfo.c

Revert "stand: add EFI support for mmio serial consoles"

This reverts commit 56b85fc10c2a83e59820860f2446bbfbb2edfdf4.
DeltaFile
+0-18stand/efi/loader/main.c
+0-8stand/efi/loader/bootinfo.c
+0-262 files

OPNSense/src 0ceba6estand/efi/loader main.c

loader.efi: Parse SPCR table entry in ACPI tables

If there's a SPCR, then use it to create and pass the right values to
the uart.  We pass xo=0 in to calcuate the xo from the baud rate. We try
to be smart about what we set. We either set io or mm or pv/pd. Old
kernels will still work, despite pb/pd not being supported, because
we'll fall back to the SPCR parsing in the kernel.

We don't support Rev3 or Rev4 SPCR yet. It's too new to be in real
hardware yet.

Sponsored by:           Netflix
Differential Revision:  https://reviews.freebsd.org/D47085

(cherry picked from commit 70253b538f68f2787d5913702337eb600799a3c3)
DeltaFile
+205-15stand/efi/loader/main.c
+205-151 files

OPNSense/src 4979452stand/efi/loader main.c

loader.efi: |= the boot flags how

how is assumed to be 0, so we directly assign to it. It might not always
be 0, so or-in these bits.

Sponsored by:           Netflix
Reviewed by:            bz, andrew
Differential Revision:  https://reviews.freebsd.org/D47084

(cherry picked from commit 94164106c0a7e18b5ac7a1508fed179b6e6939f9)
DeltaFile
+2-2stand/efi/loader/main.c
+2-21 files

OPNSense/src eb684e5stand/efi/loader main.c

loader.efi: Make rsdp global

Make rsdp pointer to the RSDP global so we can look up other tables.

Sponsored by:           Netflix
Reviewed by:            andrew
Differential Revision:  https://reviews.freebsd.org/D47083

(cherry picked from commit c5f3a7f62217f20f0c7b2c4fc3fb2646336b0802)
DeltaFile
+5-1stand/efi/loader/main.c
+5-11 files

LLVM/project 88fbb4allvm/lib/Target/AArch64 AArch64.h AArch64ISelDAGToDAG.cpp

[NewPM][AArch64] Port AArch64DAGToDAGISelLegacy to NewPM (#202739)

Adds `AArch64DAGToDAGISelPass`, the NewPM port for AArch64 instruction
selection. Inherits from `SelectionDAGISelPass` and reuses its
implementation, similar to X86 and AMDGPU ports and the Legacy pass
implementation.

Assisted by Gemini
DeltaFile
+7-0llvm/lib/Target/AArch64/AArch64.h
+5-0llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
+1-0llvm/lib/Target/AArch64/AArch64PassRegistry.def
+13-03 files

LLVM/project d76b85cllvm/lib/CodeGen ScheduleDAGInstrs.cpp, llvm/test/CodeGen/X86 dag-maps-huge-region-crash.ll

[MachineScheduler] Check we don't add self dependency edge when adding barrier (#202743)

Followup to #200945.

When we hit the huge-region limit for both FPExceptions and memory
operations, we'd first set BarrierChain to the current SU in the
FPExceptions path, then again in the memory operations path, and we'd
add the SU itself as a dependency.

Check we're not adding a self dependency when creating a barrier.

Assisted-by: Gemini
DeltaFile
+17-0llvm/test/CodeGen/X86/dag-maps-huge-region-crash.ll
+1-1llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
+18-12 files

LLVM/project 3774bf7llvm/lib/Target/DirectX DXContainerPDB.cpp, llvm/test/CodeGen/DirectX/ContainerData PDBParts-dxil.ll

Remove unncecessary DXIL processing
DeltaFile
+2-21llvm/lib/Target/DirectX/DXContainerPDB.cpp
+0-16llvm/test/CodeGen/DirectX/ContainerData/PDBParts-dxil.ll
+2-372 files

XigmaNAS/svn 10641trunk/build CHANGES readme_14.4.txt, trunk/build/ports/nano distinfo Makefile

Upgrade nano to v9.0.
DeltaFile
+3-3trunk/build/ports/nano/distinfo
+1-1trunk/build/ports/nano/Makefile
+1-0trunk/build/CHANGES
+1-0trunk/build/readme_14.4.txt
+6-44 files

Illumos/gate d3ead41usr/src/boot Makefile.version, usr/src/boot/common module.c

18014 loader: rework detached hash module processing
Reviewed by: Gordon Ross <gordon.w.ross at gmail.com>
Approved by: Dan McDonald <danmcd at edgecast.io>
DeltaFile
+89-5usr/src/boot/common/module.c
+1-1usr/src/boot/Makefile.version
+90-62 files

LLVM/project 003ba40libc/src/__support block.h freelist_heap.h, libc/test/src/__support block_test.cpp freetrie_test.cpp

[libc] Migrate `Block` to `BlockRef` in baremetal allocator (#201001)

Under C++ object lifetime and strict aliasing rules, accessing typed
objects requires that an object of that type actually exists at the
memory location. Previously, the Block structure stored prev and next
offset values, where the prev field overlapped with the usable space of
the preceding block to save space. When the predecessor was allocated,
user payload was written directly to this overlapping space,
complicating object lifetime management. A key issue arose during
reallocation (like in-place shrinking), where the allocator needed to
manipulate block boundaries (e.g., splitting a block) while user payload
was still actively residing in that memory. This caused undefined
behavior due to accessing typed Block members that collided with the
user's active objects.

This patch eliminates the problem by always treating blocks as raw bytes
accessed through a byte-backed proxy (BlockRef). Instead of constructing
or casting to typed Block structures, metadata is read and written using
aligned byte-copy operations (inline_memcpy). This decouples block

    [3 lines not shown]
DeltaFile
+217-213libc/test/src/__support/block_test.cpp
+197-144libc/src/__support/block.h
+50-50libc/src/__support/freelist_heap.h
+48-39libc/test/src/__support/freetrie_test.cpp
+42-30libc/test/src/__support/freestore_test.cpp
+30-25libc/src/__support/freestore.h
+584-5016 files not shown
+651-54212 files

NetBSD/pkgsrc-wip 6c14e5f. Makefile, vorbis-tools Makefile PLIST

vorbis-tools: Update to 1.4.3
DeltaFile
+32-0vorbis-tools/Makefile
+31-0vorbis-tools/PLIST
+20-0vorbis-tools/COMMIT_MSG
+8-0vorbis-tools/DESCR
+5-0vorbis-tools/distinfo
+1-0Makefile
+97-06 files

XigmaNAS/svn 10640trunk/build/ports/minidlna distinfo Makefile

maintain minidlna port
DeltaFile
+3-3trunk/build/ports/minidlna/distinfo
+2-2trunk/build/ports/minidlna/Makefile
+5-52 files

LLVM/project 596e95c.github/workflows build-ci-container-tooling.yml, .github/workflows/containers/github-action-ci-tooling Dockerfile

[Github] Add github-automation container (#200704)

There are several jobs that use the pattern:
1. Checkout github-automation.py script.
2. Install dependencies for github-automation.py script.
3. Run the github-automation.py script.

We can consolidate a lot of this logic into the container and simplify
the workflows. This may also speed them up the workflow jobs slightly,
but most of them are already pretty fast, so it may not make a big
difference.
DeltaFile
+13-0.github/workflows/containers/github-action-ci-tooling/Dockerfile
+9-0.github/workflows/build-ci-container-tooling.yml
+22-02 files

XigmaNAS/svn 10639trunk/build/ports/options/files multimedia_libva-options graphics_webp-options

add new port option files
DeltaFile
+6-0trunk/build/ports/options/files/multimedia_libva-options
+6-0trunk/build/ports/options/files/graphics_webp-options
+5-0trunk/build/ports/options/files/graphics_giflib-options
+5-0trunk/build/ports/options/files/multimedia_svt-av1-options
+22-04 files

FreeBSD/src 14d2a98sys/kern kern_prot.c

kern_prot.c: Belatedly add copyright

See the commit log for the why.

MFC after:      3 days
Sponsored by:   The FreeBSD Foundation

(cherry picked from commit 1c0e5c53ff1672a93fc42988020723bb6bc427c1)
DeltaFile
+5-0sys/kern/kern_prot.c
+5-01 files

FreeBSD/src 39d5cf0share/man/man9 style.9

style.9: Fix a typo (missing word)

Fixes:          af2c7d9f6452 ("style.9: Encourage style changes when doing significant modifications")
MFC after:      1 day
Sponsored by:   The FreeBSD Foundation

(cherry picked from commit 1876f629b97608679f1bd71b9aa88a57b55c4574)
DeltaFile
+3-3share/man/man9/style.9
+3-31 files

FreeBSD/src 8451c8asys/security/mac_do mac_do.c

MAC/do: Clarify comments about flags attached per-ID or per-ID-type

No functional change.

MFC after:      3 days
Sponsored by:   The FreeBSD Foundation

(cherry picked from commit 0c2d64ce3da9c042da133c8b6d7391abb177f2c9)
DeltaFile
+7-5sys/security/mac_do/mac_do.c
+7-51 files

FreeBSD/src 7370414tests/sys/mac/do invalid_configs.sh valid_configs.sh

MAC/do: Tests: Quote the source directory

In a standard test suite installation, this is not necessary, but be
bullet-proof to custom ones, however improbable.

Reviewed by:    bapt
MFC after:      3 days
Sponsored by:   The FreeBSD Foundation
Pull Request:   https://ron-dev.freebsd.org/FreeBSD/src/pulls/38

(cherry picked from commit 33daea3f862d7fe996602756805a92a600356f94)
DeltaFile
+1-1tests/sys/mac/do/invalid_configs.sh
+1-1tests/sys/mac/do/valid_configs.sh
+2-22 files

FreeBSD/src f4b3983tests/sys/mac/do common.sh Makefile

MAC/do: Tests: Declare required programs closer to use

Reviewed by:    bapt
MFC after:      3 days
Sponsored by:   The FreeBSD Foundation
Pull Request:   https://ron-dev.freebsd.org/FreeBSD/src/pulls/38

(cherry picked from commit 6159187329b56a9b550db193796ae4d76c1a306c)
DeltaFile
+2-0tests/sys/mac/do/common.sh
+0-1tests/sys/mac/do/Makefile
+2-12 files

FreeBSD/src 472d977tests/sys/mac/do invalid_configs.sh valid_configs.sh

MAC/do: Tests: Fix copyrights

No comma needed after a single year.  Add SPDX.

Reviewed by:    bapt
MFC after:      3 days
Sponsored by:   The FreeBSD Foundation
Pull Request:   https://ron-dev.freebsd.org/FreeBSD/src/pulls/38

(cherry picked from commit b0c948fe92acc8bd295cc53584e25c082c749cd1)
DeltaFile
+3-1tests/sys/mac/do/invalid_configs.sh
+3-1tests/sys/mac/do/valid_configs.sh
+2-1tests/sys/mac/do/common.sh
+8-33 files

FreeBSD/src d5c5f2dtests/sys/mac/do invalid_configs.sh valid_configs.sh

MAC/do: Tests: Remove shebang lines

They are automatically added by <bsd.test.mk>.

Reviewed by:    bapt
MFC after:      3 days
Sponsored by:   The FreeBSD Foundation
Pull Request:   https://ron-dev.freebsd.org/FreeBSD/src/pulls/38

(cherry picked from commit 79a987aba154aca5965e4746ec5f867be8f22997)
DeltaFile
+0-2tests/sys/mac/do/invalid_configs.sh
+0-2tests/sys/mac/do/valid_configs.sh
+0-42 files

FreeBSD/src 7941d18sys/dev/acpica acpi.c

acpi: On /dev/power suspend, trigger userspace notifications

On a suspend request via ioctl(), /dev/acpi (and compatible /dev/apm)
both call acpi_ReqSleepState() instead of directly calling
acpi_EnterSleepState().  The former does more checks, returns success if
the machine is already suspending, and notifies user space (via devd(8))
about the impending suspend.  In other words, it seems to have been
designed for user consumption more than the latter function.

So, use acpi_ReqSleepState() in place of acpi_EnterSleepState() in
acpi_pm_func(), which is ultimately called by power_pm_suspend(), itself
called by power_ioctl().  Other callers of power_pm_suspend() (such as
the console drivers) are also user-facing facilities, so should also
benefit from this change.

Reviewed by:    mhorne, imp
Tested by:      mhorne
MFC after:      2 weeks
Sponsored by:   The FreeBSD Foundation

    [3 lines not shown]
DeltaFile
+1-1sys/dev/acpica/acpi.c
+1-11 files

LLVM/project 8c0f84eflang/include/flang/Optimizer/Dialect FIROps.td, flang/lib/Optimizer/Dialect FIROps.cpp

[flang] Add RegionBranchOpInterface to fir.do_loop (#202418)

`fir.do_loop` lacked RegionBranchOpInterface, causing dataflow analyses
and others to treat host loops as opaque and conservatively block
optimizations.

Implement getSuccessorRegions, getEntrySuccessorOperands, and
getSuccessorInputs on fir.do_loop, and override
getMutableSuccessorOperands on fir.result to customize for accommodating
the occasionally present finalValue in `fir.result`.

As a side effect, alias analysis now resolves pass-through iter-carried
references to MustAlias instead of MayAlias.
DeltaFile
+76-3flang/test/Analysis/AliasAnalysis/alias-analysis-regionbranch.mlir
+59-0flang/lib/Optimizer/Dialect/FIROps.cpp
+6-2flang/include/flang/Optimizer/Dialect/FIROps.td
+141-53 files

LLVM/project 37337d8clang/include/clang/AST OpenMPClause.h, clang/lib/AST OpenMPClause.cpp

[clang][OpenMP] Add OMP 6.0 prefer_type({fr,attr}) parsing for interop (#198868)

This PR adds parsing support for the OpenMP 6.0 brace-grouped
prefer_type modifier on the init clause of #pragma omp interop, while
preserving the OpenMP 5.1 flat form. Each preference-specification can
now carry an optional
fr(<foreign-runtime-id>) and zero or more attr(<string-literal>...)
selectors, eg:

#pragma omp interop init(prefer_type({fr("sycl"), attr("ompx_propX")}, \
                                       {fr("level_zero")}, \
{attr("ompx_propY")}), targetsync: obj)
DeltaFile
+141-14clang/lib/Parse/ParseOpenMP.cpp
+82-20clang/lib/AST/OpenMPClause.cpp
+81-19clang/include/clang/AST/OpenMPClause.h
+96-0clang/test/OpenMP/interop_prefer_type_brace_messages.cpp
+71-0clang/test/OpenMP/interop_prefer_type_brace_ast_print.cpp
+37-12clang/lib/Sema/SemaOpenMP.cpp
+508-6510 files not shown
+609-7516 files

LLVM/project 7f5a6d7llvm/lib/MC WinCOFFObjectWriter.cpp, llvm/test/MC/AArch64 coff-secrel-hi12.s

[MC][COFF][AArch64] Add helper symbols for large SECREL addends (#199602)

## Summary

Create helper label symbols for ARM64 COFF SECREL HI12/LO12 relocations
when the byte offset cannot fit in the 12-bit instruction addend.

This is the MC-side follow-up to #200060: with LLD now handling small
SECREL_HIGH12A byte addends correctly, this patch only handles the
remaining large-addend case that needs a helper symbol.

Fixes #199581.

AI assistance: Claude (Anthropic), Codex (OpenAI).

## Tests

`llvm/test/MC/AArch64/coff-secrel-hi12.s`, run for both
`aarch64-windows` and `arm64ec-windows`, covers:

    [11 lines not shown]
DeltaFile
+90-0llvm/test/MC/AArch64/coff-secrel-hi12.s
+67-4llvm/lib/MC/WinCOFFObjectWriter.cpp
+157-42 files

NetBSD/src waZSdH3sys/conf files

   Some spaces to tabs and move BIOHIST before USBHIST
VersionDeltaFile
1.1319+8-8sys/conf/files
+8-81 files

XigmaNAS/svn 10638trunk/build/ports/options/files multimedia_aom-options

add port option file
DeltaFile
+5-0trunk/build/ports/options/files/multimedia_aom-options
+5-01 files