OPNSense/core 73f61fdsrc/opnsense/mvc/app/models/OPNsense/IPsec/FieldTypes IPsecProposalField.php

ipsec: further limit PQ options
DeltaFile
+44-57src/opnsense/mvc/app/models/OPNsense/IPsec/FieldTypes/IPsecProposalField.php
+44-571 files

FreeNAS/freenas 3fcbc13src/middlewared/middlewared/plugins/rsync task.py

NAS-142605 / 27.0.0-BETA.1 / Specify rsync timeout (#19555)
DeltaFile
+7-2src/middlewared/middlewared/plugins/rsync/task.py
+7-21 files

LLVM/project f89861fllvm/lib/Target/SystemZ SystemZScheduleZ17.td

[SystemZ] Minor fixing in z17 SchedModel. (#219956)

A few insignificant updates to some opcodes.
DeltaFile
+3-4llvm/lib/Target/SystemZ/SystemZScheduleZ17.td
+3-41 files

LLVM/project 0b768f4clang/lib/Driver/ToolChains UEFI.cpp Solaris.cpp, clang/test/Driver fsanitize-undefined-device-offload.c

[Clang] Enable UBSan for AMDGPU device offload

Summary:
This enables the device UBSan runtime for AMDGPU decides. Primarily this
required modifications to the `addSanitizerRuntime` interface so we can
query the compilation's offload status. Also need to forward it through
the linker wrapper interface. Works on all AMDGPU offload, slight hacks
around the other targets as they do not advertise sanitizer
runtimes properly.

This is linked in via a new `-u __ubsan_device_initialize` hook to pull
in the side library. This is standard behavior and keeps the core logic
mostly unchanged and re-used.
DeltaFile
+50-0clang/test/Driver/fsanitize-undefined-device-offload.c
+32-3clang/lib/Driver/ToolChains/CommonArgs.cpp
+2-2clang/lib/Driver/ToolChains/Hexagon.cpp
+2-1clang/lib/Driver/ToolChains/Clang.cpp
+1-1clang/lib/Driver/ToolChains/UEFI.cpp
+1-1clang/lib/Driver/ToolChains/Solaris.cpp
+88-813 files not shown
+98-1819 files

LLVM/project 37f1ab4mlir/lib/Target/LLVMIR/Dialect/OpenMP OpenMPToLLVMIRTranslation.cpp, mlir/test/Target/LLVMIR openmp-todo.mlir openmp-target-launch-device.mlir

Update logic with initSentinel and padTrailingDims
DeltaFile
+39-19mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.cpp
+23-4mlir/test/Target/LLVMIR/openmp-target-launch-device.mlir
+25-2mlir/test/Target/LLVMIR/openmp-target-launch-host.mlir
+0-11mlir/test/Target/LLVMIR/openmp-todo.mlir
+87-364 files

LLVM/project f7d8632llvm/lib/Analysis ScalarEvolution.cpp, llvm/test/Analysis/ScalarEvolution max-backedge-taken-count-guard-info.ll

[SCEV] Apply loop guards to Distance + 1 in howFarToZero. (#219944)

Apply loop guards on on `Distance + 1` before computing the unsinged
range. This improves results in a number of cases in practice, mostly
additional unrolling and some runtime check simplifications:
https://github.com/dtcxzyw/llvm-opt-benchmark-nightly/pull/1138

Guards have already been collected on this code path, so applying them
is cheap.
Compile-time impact is in the noise:
https://llvm-compile-time-tracker.com/compare.php?from=918aa38d750cd40d4265c39817fb31efb628f7e1&to=33c51ea1c4748883dfef71bdd1007bd72ec9095f&stat=instructions:u

PR: https://github.com/llvm/llvm-project/pull/219944
DeltaFile
+194-0llvm/test/Analysis/ScalarEvolution/max-backedge-taken-count-guard-info.ll
+1-14polly/test/ScopInfo/multidim_fortran_srem.ll
+7-3llvm/lib/Analysis/ScalarEvolution.cpp
+1-1llvm/test/Transforms/PhaseOrdering/constraint-eliminiation-interactions.ll
+203-184 files

LLVM/project 41af3cacompiler-rt/lib/ubsan/device ubsan_device_symbolize.cpp hsa.h

[compiler-rt] Add AMDGPU Device UndefinedBehaviorSanitizer runtime

Summary:
This adds support for full UBSan on the AMDGPU target. The GPU build of
`compiler-rt` will now build `libclang_rt.ubsan_standalone.a` and the
host build will now provide `libclang_rt.ubsan_device.a` for the
host-side formatting.

The **core** approach is to simply gather arguments from the device and
replay them on the host. The RPC interface acts as the narrow shim to
pass data between the CPU and GPU.

The changes to the core runtime are kept minimal, only exposing a few
needed hooks to re-run and symbolize reports coming from an external
caller. The device archive is a side-library which will only be present
for GPU offloading builds.

Putting this in `compiler-rt` via interceptors avoids an ABI edge
between many consumers, (OpenMP, HIP, Pytorch, etc). The runtime code is

    [42 lines not shown]
DeltaFile
+364-0compiler-rt/lib/ubsan/device/ubsan_device_hsa.cpp
+279-0compiler-rt/lib/ubsan/device/ubsan_device_report.cpp
+233-0compiler-rt/lib/ubsan/device/ubsan_device_rpc.cpp
+199-0compiler-rt/lib/ubsan/device/ubsan_device_hsa_interceptors.cpp
+172-0compiler-rt/lib/ubsan/device/hsa.h
+148-0compiler-rt/lib/ubsan/device/ubsan_device_symbolize.cpp
+1,395-032 files not shown
+2,406-7938 files

LLVM/project dee1f43llvm CMakeLists.txt

workflows/release-binaries: Smaller WiX installer on Windows (#219858)

Reduce WiX installer size by using LZX compression instead of MSZIP
previously. Tested on `release/23.x` at commit
fdf0409c656cc66c61b14d71c831f2b453c13e19 targetting Win64:

- MSZIP: 779 MiB
- LZX: 613 MiB
DeltaFile
+8-2llvm/CMakeLists.txt
+8-21 files

LLVM/project 834171cflang/include/flang/Semantics openmp-modifiers.h openmp-utils.h, flang/lib/Semantics check-omp-loop.cpp resolve-directives.cpp

[flang][OpenMP] Switch OpenMP version from unsigned to llvm::omp::Version

Also make llvm::omp::Version converting constructor/operstor explicit.
DeltaFile
+91-88flang/lib/Semantics/check-omp-structure.cpp
+20-18flang/include/flang/Semantics/openmp-utils.h
+18-17flang/lib/Semantics/openmp-utils.cpp
+10-10flang/include/flang/Semantics/openmp-modifiers.h
+7-7flang/lib/Semantics/resolve-directives.cpp
+6-6flang/lib/Semantics/check-omp-loop.cpp
+152-14621 files not shown
+218-20327 files

LLVM/project 44954a0llvm/utils/release build_llvm_release.bat

workflows/release-binaries: Ignore flaky test on Windows (#219859)

Skip a flaky test when building the Win64 LLVM package on Windows.

A popular security/antimalware solution is preventing this test from
completing correctly.
DeltaFile
+1-1llvm/utils/release/build_llvm_release.bat
+1-11 files

LLVM/project c95988dflang/include/flang/Semantics openmp-modifiers.h openmp-utils.h, flang/lib/Semantics check-omp-loop.cpp resolve-directives.cpp

[flang][OpenMP] Switch OpenMP version from unsigned to llvm::omp::Version

Also make llvm::omp::Version converting constructor/operstor explicit.
DeltaFile
+91-88flang/lib/Semantics/check-omp-structure.cpp
+20-18flang/include/flang/Semantics/openmp-utils.h
+18-17flang/lib/Semantics/openmp-utils.cpp
+10-10flang/include/flang/Semantics/openmp-modifiers.h
+7-7flang/lib/Semantics/resolve-directives.cpp
+6-6flang/lib/Semantics/check-omp-loop.cpp
+152-14621 files not shown
+220-20227 files

LLVM/project 242b02bclang/include/clang/AST OpenMPClause.h, clang/lib/AST DeclPrinter.cpp StmtPrinter.cpp

[clang][OpenMP] Switch OpenMP version from unsigned to llvm::omp::Version
DeltaFile
+61-58clang/lib/Sema/SemaOpenMP.cpp
+16-16clang/lib/Parse/ParseOpenMP.cpp
+6-9clang/lib/AST/StmtPrinter.cpp
+4-3clang/lib/Sema/TreeTransform.h
+3-3clang/lib/AST/DeclPrinter.cpp
+3-2clang/include/clang/AST/OpenMPClause.h
+93-912 files not shown
+98-928 files

LLVM/project 8cc3b26llvm/include/llvm/Frontend/OpenMP OMPDescriptors.h OMPVersion.h, llvm/lib/Frontend/OpenMP OMPDescriptors.inc

[OpenMP] Make OpenMP version have separate type

It's unsigned now. Giving it a separate type would make the code clearer,
and it would make it easier to change the effective type if it's ever
needed.
DeltaFile
+788-788llvm/lib/Frontend/OpenMP/OMPDescriptors.inc
+63-0llvm/include/llvm/Frontend/OpenMP/OMPVersion.h
+29-17llvm/utils/TableGen/Basic/DirectiveEmitter.cpp
+13-13llvm/test/TableGen/directive1.td
+12-12llvm/test/TableGen/directive2.td
+10-10llvm/include/llvm/Frontend/OpenMP/OMPDescriptors.h
+915-84011 files not shown
+975-88917 files

LLVM/project d977ba0compiler-rt/lib/ubsan/device ubsan_device_symbolize.cpp hsa.h

[compiler-rt] Add AMDGPU Device UndefinedBehaviorSanitizer runtime

Summary:
This adds support for full UBSan on the AMDGPU target. The GPU build of
`compiler-rt` will now build `libclang_rt.ubsan_standalone.a` and the
host build will now provide `libclang_rt.ubsan_device.a` for the
host-side formatting.

The **core** approach is to simply gather arguments from the device and
replay them on the host. The RPC interface acts as the narrow shim to
pass data between the CPU and GPU.

The changes to the core runtime are kept minimal, only exposing a few
needed hooks to re-run and symbolize reports coming from an external
caller. The device archive is a side-library which will only be present
for GPU offloading builds.

Putting this in `compiler-rt` via interceptors avoids an ABI edge
between many consumers, (OpenMP, HIP, Pytorch, etc). The runtime code is

    [42 lines not shown]
DeltaFile
+364-0compiler-rt/lib/ubsan/device/ubsan_device_hsa.cpp
+279-0compiler-rt/lib/ubsan/device/ubsan_device_report.cpp
+233-0compiler-rt/lib/ubsan/device/ubsan_device_rpc.cpp
+199-0compiler-rt/lib/ubsan/device/ubsan_device_hsa_interceptors.cpp
+172-0compiler-rt/lib/ubsan/device/hsa.h
+148-0compiler-rt/lib/ubsan/device/ubsan_device_symbolize.cpp
+1,395-031 files not shown
+2,405-7937 files

LLVM/project 332e973clang/include/clang/Driver CommonArgs.h, clang/lib/Driver/ToolChains AMDGPU.cpp Clang.cpp

[Clang] Enable UBSan for AMDGPU device offload

Summary:
This enables the device UBSan runtime for AMDGPU decides. Primarily this
required modifications to the `addSanitizerRuntime` interface so we can
query the compilation's offload status. Also need to forward it through
the linker wrapper interface. Works on all AMDGPU offload, slight hacks
around the other targets as they do not advertise sanitizer
runtimes properly.

This is linked in via a new `-u __ubsan_device_initialize` hook to pull
in the side library. This is standard behavior and keeps the core logic
mostly unchanged and re-used.
DeltaFile
+50-0clang/test/Driver/fsanitize-undefined-device-offload.c
+32-3clang/lib/Driver/ToolChains/CommonArgs.cpp
+2-2clang/lib/Driver/ToolChains/Hexagon.cpp
+2-1clang/lib/Driver/ToolChains/Clang.cpp
+1-1clang/lib/Driver/ToolChains/AMDGPU.cpp
+1-1clang/include/clang/Driver/CommonArgs.h
+88-812 files not shown
+97-1718 files

LLVM/project 187d01eclang/lib/Basic TargetID.cpp, clang/test/Driver amdgpu-offload-arch-subarch-names.c

clang/AMDGPU: Accept subarch names in --offload-arch (#219963)

Accept the triple subarch names as aliases. e.g.,
--offload=arch=amdgpu9.50 is equivalent to --offload-arch=gfx950
DeltaFile
+211-0clang/test/Driver/amdgpu-offload-arch-subarch-names.c
+15-3clang/lib/Basic/TargetID.cpp
+226-32 files

LLVM/project 54e586dllvm/lib/CodeGen MachineInstr.cpp

CodeGen: Use use_instructions in changeDebugValuesDefReg

The loop only inspects the using instruction, so iterate instructions
directly instead of operands and their parents.

Co-authored-by: Claude (Claude-Opus-4.8)
DeltaFile
+4-5llvm/lib/CodeGen/MachineInstr.cpp
+4-51 files

FreeBSD/src 52fbff9share/man/man4 em.4, sys/dev/e1000 if_em.c

e1000: Configure PCH low-power link modes for suspend

The PCH suspend path kept a wake link fully powered and did not restore
the negotiated EEE modes after its stop-time reset.  Intel provides the
ULP entry and exit machinery in the shared code, but FreeBSD did not
invoke its Sx policy.

Enter ULP on LPT and newer PCH controllers when wake is armed without
directed-unicast, multicast, or broadcast filters, which ULP cannot
preserve.  For a link retained by host wake or management, restore the
100BASE-TX and 1000BASE-T LPI controls selected by the local
advertisement and the cached link-partner ability.

Keep these power reductions best-effort: wake filters and PME are
already configured independently, and a ULP or EEE failure is logged
without converting an optional power optimization into a suspend
failure.  The existing PCH resume workaround forcibly exits ULP and
clears automatic Sx LPI state before normal initialization.


    [10 lines not shown]
DeltaFile
+60-0sys/dev/e1000/if_em.c
+4-1share/man/man4/em.4
+64-12 files

LLVM/project 1c15bbellvm/include/llvm/CodeGen TargetInstrInfo.h, llvm/lib/CodeGen Rematerializer.cpp CalcSpillWeights.cpp

CodeGen: Pass instruction and operand index to isIgnorableUse

Replace the MachineOperand argument to the TargetInstrInfo::isIgnorableUse
hook with the containing instruction and operand index. The AMDGPU
implementation only used the operand to recover its parent instruction, so
this drops the dependence on MachineOperand::getParent().

Co-authored-by: Claude (Claude-Opus-4.8) <noreply at anthropic.com>
DeltaFile
+7-4llvm/lib/CodeGen/MachineSink.cpp
+7-4llvm/lib/CodeGen/MachineCSE.cpp
+3-3llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
+3-3llvm/include/llvm/CodeGen/TargetInstrInfo.h
+2-1llvm/lib/CodeGen/Rematerializer.cpp
+2-1llvm/lib/CodeGen/CalcSpillWeights.cpp
+24-163 files not shown
+27-199 files

NetBSD/pkgsrc-wip b0f51d1rust-beta Makefile distinfo

rust-beta: update to 1.99.0-beta.3
DeltaFile
+3-3rust-beta/distinfo
+1-1rust-beta/Makefile
+4-42 files

LLVM/project 6cfe429llvm/lib/CodeGen MachinePipeliner.cpp

MachinePipeliner: Pass instruction to findLoopIncrementValue

The helper recovered the loop block from the operand's parent instruction.
Pass the containing instruction directly so it no longer depends on
MachineOperand::getParent().

Co-authored-by: Claude (Claude-Opus-4.8) <noreply at anthropic.com>
DeltaFile
+4-3llvm/lib/CodeGen/MachinePipeliner.cpp
+4-31 files

FreeBSD/src c6ae11csys/netinet tcp_input.c, sys/netinet/tcp_stacks rack.c bbr.c

tcp md5: improve handling of tcps_sig_err_sigopt counter

For non listening TCP endpoints, increment the tcps_sig_err_sigopt
counter when TCP MD5 is not enabled in the TCP connection, but a
segment containing a TCP MD5 option is received.
Also increment the counter when using the RACK or BBR stack.

Reported by:            Hannes Elfert
Reviewed by:            rrs
MFC after:              1 week
MFC to:                 stable/14
MFC to:                 stable/15
Differential Revision:  https://reviews.freebsd.org/D59249
DeltaFile
+2-4sys/netinet/tcp_input.c
+5-0sys/netinet/tcp_stacks/rack.c
+5-0sys/netinet/tcp_stacks/bbr.c
+12-43 files

LLVM/project bf9fe77clang/lib/Driver/ToolChains CommonArgs.cpp, clang/test/Driver hip-cuid.hip amdgpu-xnack-sramecc-flags.c

clang/AMDGPU: Stop passing redundant -target-cpu to cc1 (#206483)

Now that the exact target is encoded in the triple's subarch field,
-target-cpu is redundant. This avoids polluting the resultant IR with
unwanted "target-cpu" attributes. The net result is the desired codegen
when compiling libraries for a major subarch and linking it into a
program compiled for a specific arch. e.g., compiling for "gfx9-generic"
would pollute the IR with "target-cpu"="gfx9-generic", so codegen
would ultimately be performed for the generic target even after
linking into the concrete gfx9 cpu. The specialization will now be
achieved by merging the triples without the linker or optimization
passes needing to fixup function attributes.
DeltaFile
+63-63clang/test/Driver/amdgpu-mcpu.cl
+26-26clang/test/Driver/hip-sanitize-options.hip
+12-16clang/test/Driver/hip-rdc-device-only.hip
+18-8clang/lib/Driver/ToolChains/CommonArgs.cpp
+10-10clang/test/Driver/amdgpu-xnack-sramecc-flags.c
+5-7clang/test/Driver/hip-cuid.hip
+134-13026 files not shown
+189-21032 files

FreeBSD/src 46cf612share/man/man4 em.4, sys/dev/e1000 e1000_regs.h e1000_ich8lan.h

e1000: Rework Wake-on-LAN policy and programming

The driver used the NVM APME default as both the hardware-support
decision and the mutable filter mask.  Consequently, an NVM-disabled
but capable port did not advertise wake support, disabling a wake mode
once could keep it disabled across later suspends, and directed-unicast
wake could never be selected.

Require the PCI power management capability to report D3hot PME support
before advertising or arming wake.  A PM capability alone does not mean
the function can signal PME from the state used during system sleep.

Separate the board and port capability matrix from the NVM-selected
magic packet default.  Read the proper per function NVM word on igb
controllers, cover the newer PCH generations, and retain the documented
legacy, multi-port, and OEM restrictions.  Decode the distinct APM
Enable locations used by 82544, 82541EI/82547EI, and the later 8254x
parts.  Do not advertise wake on the 82541ER, whose power-management
logic cannot assert PME for wake events.  For I210/I211 internal iNVM,

    [92 lines not shown]
DeltaFile
+464-126sys/dev/e1000/if_em.c
+27-14sys/dev/e1000/e1000_ich8lan.c
+25-1share/man/man4/em.4
+10-3sys/dev/e1000/if_em.h
+1-1sys/dev/e1000/e1000_regs.h
+1-1sys/dev/e1000/e1000_ich8lan.h
+528-1466 files

LLVM/project 7c3d6c8clang/lib/AST/ByteCode Compiler.cpp

[clang][bytecode] Avoid classify()ing logical binary operators (#219943)

We can just check `isBooleanType()` instead.
DeltaFile
+4-4clang/lib/AST/ByteCode/Compiler.cpp
+4-41 files

OpenBSD/ports VhFQt3Tdevel/p5-Test-Inter distinfo Makefile

   Update to p5-Test-Inter-1.13.
VersionDeltaFile
1.8+2-2devel/p5-Test-Inter/distinfo
1.16+3-1devel/p5-Test-Inter/Makefile
+5-32 files

LLVM/project 09231edclang/docs ReleaseNotes.md, clang/lib/Analysis CFG.cpp

[clang] Delay dependent co_return promise calls (#218779)

Avoiding selection of return_value or return_void while building
co_return whose operand is type-dependent and keeping it unset until
template init rebuild for a type allows dependent operations like
co_return ctx.f(v) to use promise.return_void() instead of needing
promise.return_value().

Fixes #218368
DeltaFile
+26-0clang/test/SemaCXX/coreturn.cpp
+7-0clang/lib/Sema/SemaCoroutine.cpp
+3-2clang/lib/Analysis/CFG.cpp
+4-0clang/docs/ReleaseNotes.md
+40-24 files

LLVM/project 6d390eaclang/lib/Format UnwrappedLineFormatter.cpp, clang/unittests/Format FormatTestJava.cpp

  [clang-format] Keep empty Java interface/record body on one line (#219910)

`AllowShortRecordOnASingleLine` (introduced for C++ records) made
  `LineJoiner::tryFitMultipleLinesInOne` route Java `TT_RecordLBrace`
  lines to `tryMergeRecord`, which only handles C++ class/struct/union
  records. Empty Java `interface` and `record` bodies were therefore no
  longer merged onto a single line, regressing the behavior that
  `BraceWrapping.SplitEmptyRecord: false` previously provided.

  Handle Java records separately and restore the pre-existing
  `SplitEmptyRecord`-based merge.

  Fixes #219711
DeltaFile
+7-2clang/lib/Format/UnwrappedLineFormatter.cpp
+7-0clang/unittests/Format/FormatTestJava.cpp
+14-22 files

LLVM/project 485ed43clang/lib/Basic TargetID.cpp, clang/test/Driver amdgpu-offload-arch-subarch-names.c

clang/AMDGPU: Accept subarch names in --offload-arch

Accept the triple subarch names as aliases. e.g.,
--offload=arch=amdgpu9.50 is equivalent to --offload-arch=gfx950
DeltaFile
+211-0clang/test/Driver/amdgpu-offload-arch-subarch-names.c
+15-3clang/lib/Basic/TargetID.cpp
+226-32 files

OpenBSD/ports JvoVw9gdevel/p5-MCE Makefile distinfo

   Update to p5-MCE-1.904.
VersionDeltaFile
1.14+2-2devel/p5-MCE/distinfo
1.16+1-1devel/p5-MCE/Makefile
+3-32 files