LLVM/project 6c30f83libc/src/__support/FPUtil multiply_add.h, libc/src/__support/macros attributes.h config.h

[libc][math] Qualify log with constant evaluation support
DeltaFile
+16-1libc/test/shared/shared_math_test.cpp
+14-0libc/src/__support/macros/attributes.h
+10-0libc/src/__support/macros/config.h
+5-5libc/src/__support/math/log.h
+2-2libc/src/__support/FPUtil/multiply_add.h
+2-2libc/src/__support/math/log_range_reduction.h
+49-101 files not shown
+53-107 files

DragonFlyBSD/src ab499a6. Makefile.inc1

Makefile.inc1: Abort building if MAKEOBJDIRPREFIX not set as an env var

As described in <bsd.obj.mk>, MAKEOBJDIRPREFIX works properly only if
set as an *environment* variable, not as a global or command-line
variable.  This change adds a check for MAKEOBJDIRPREFIX and aborts the
building if it's specified as a make variable on the command line.

Although build(7) lists quite a few environment variables, but most of
them (e.g., KERNCONF, DESTDIR) just work as well when specified as a
make variable.  However, MAKEOBJDIRPREFIX is special and doesn't work
in the same way.

We decided to simply abort the building if MAKEOBJDIRPREFIX is
mis-specified, being simple and following build(7) as well, although we
can also convert it to an environment variable by using:

        .MAKEOVERRIDES:= ${.MAKEOVERRIDES:NMAKEOBJDIRPREFIX}
        .export MAKEOBJDIRPREFIX

Discussed-with: swildner
DeltaFile
+8-0Makefile.inc1
+8-01 files

NetBSD/pkgsrc QaQZlo0emulators/mame/patches patch-src_devices_cpu_sharc_sharcops__table.cpp

   mame: remove obsolete patch
VersionDeltaFile
1.2+1-1emulators/mame/patches/patch-src_devices_cpu_sharc_sharcops__table.cpp
+1-11 files

LLVM/project 87b6dbeoffload/test/offloading dyn_groupprivate.cpp, openmp/device/include DeviceTypes.h

Add omp_get_dyn_gprivate_memspace routine
DeltaFile
+14-4openmp/device/src/State.cpp
+16-0offload/test/offloading/dyn_groupprivate.cpp
+7-0openmp/runtime/src/kmp_stub.cpp
+6-0openmp/device/include/DeviceTypes.h
+4-0openmp/runtime/src/kmp_csupport.cpp
+4-0openmp/runtime/src/include/omp.h.var
+51-43 files not shown
+55-49 files

LLVM/project 0f77c55libc/src/__support/FPUtil multiply_add.h, libc/src/__support/macros attributes.h config.h

[libc][math] Qualify log with constant evaluation support
DeltaFile
+16-0libc/test/shared/shared_math_test.cpp
+14-0libc/src/__support/macros/attributes.h
+10-0libc/src/__support/macros/config.h
+5-5libc/src/__support/math/log.h
+2-2libc/src/__support/FPUtil/multiply_add.h
+2-2libc/src/__support/math/log_range_reduction.h
+49-91 files not shown
+53-97 files

LLVM/project 22bf237flang-rt/lib/runtime edit-input.cpp

[flang-rt] Handle NAMELIST logical comments without preceding space (#183202)

If a comment appears immediately after a logical value in a NAMELIST
file, the flang runtime returns IostatGenericError. No error occurs when
a space preceeds the exclamation point. Add code to handle a comment
while parsing logical values.

Co-authored-by: John Otken john.otken at hpe.com
DeltaFile
+5-0flang-rt/lib/runtime/edit-input.cpp
+5-01 files

OpenBSD/src O4dQVmSusr.bin/ssh authfd.c ssh-add.c

   ssh-agent supports a "query" extension that allows a client to request
   a list of extensions it support. This makes this capability available
   to ssh-add via the -Q flag.

   ok markus@
VersionDeltaFile
1.141+54-1usr.bin/ssh/authfd.c
1.186+26-4usr.bin/ssh/ssh-add.c
1.89+7-2usr.bin/ssh/ssh-add.1
1.55+3-1usr.bin/ssh/authfd.h
+90-84 files

OpenBSD/src P1qxqLsbin/ksh var.c

   satisfy the requirements of ksh build with -DSMALL in the install media
VersionDeltaFile
1.76+3-1bin/ksh/var.c
+3-11 files

OpenBSD/src KKASqoDusr.bin/ssh session.c clientloop.c

   With IANA codepoints for draft-ietf-sshm-ssh-agent now allocated,
   it's safe to start using the standard names for requesting agent
   forwarding over the @openssh.com extension names we've used to date.

   Support for the standard names is advertised via EXT_INFO. When the
   client sees such support it will use the new names preferentially,
   but the existing names remain supported unconditionally.

   ok markus@
VersionDeltaFile
1.348+11-9usr.bin/ssh/session.c
1.422+17-2usr.bin/ssh/clientloop.c
1.193+10-2usr.bin/ssh/kex.c
1.628+3-8usr.bin/ssh/ssh.c
1.112+3-7usr.bin/ssh/mux.c
1.164+6-2usr.bin/ssh/channels.h
+50-302 files not shown
+57-348 files

FreeBSD/doc a983d91documentation/content/en/books/handbook/mirrors _index.adoc

handbook/mirrors: Remove FreeBSD Mall links

FreeBSD Mall was closed at the end of 2025.
DeltaFile
+0-10documentation/content/en/books/handbook/mirrors/_index.adoc
+0-101 files

OpenBSD/src M28Fiv3bin/ksh var.c vi.c

   Inspecting Flag(FTALKING) to activate curses in the spot chosen by the
   previous commit seems to fail in some circumstances because of order
   of operations in ksh startup.  So move the test and curses initialization
   immediately before the tputs() calls.
   discussion with tb
VersionDeltaFile
1.75+14-14bin/ksh/var.c
1.68+3-1bin/ksh/vi.c
1.91+3-1bin/ksh/emacs.c
1.78+2-1bin/ksh/sh.h
+22-174 files

OpenBSD/src 6RQ4BQQusr.bin/ssh ssh-agent.c authfd.c

   correctness wrt draft-ietf-sshm-ssh-agent:

   extension requests should indicate failure using
   SSH_AGENT_EXTENSION_FAILURE rather than the generic SSH_AGENT_FAILURE
   error code. This allows the client to discern between "the request
   failed" and "the agent doesn't support this extension".

   ok markus@
VersionDeltaFile
1.320+22-8usr.bin/ssh/ssh-agent.c
1.140+2-1usr.bin/ssh/authfd.c
+24-92 files

OpenBSD/src lHADlt5usr.sbin/relayd ca.c

   relayd: replace unneeded engine.h with needed x509.h

   Adjust a comment. Being non-existent, the OpenSSL engine layer cannot be
   responsible for whatever unholy hacks this code requires.
VersionDeltaFile
1.49+3-3usr.sbin/relayd/ca.c
+3-31 files

OpenBSD/ports MZdKGjegraphics/digikam Makefile distinfo, graphics/digikam/pkg PLIST

   Update digikam to 9.0.0
VersionDeltaFile
1.44+3-18graphics/digikam/pkg/PLIST
1.116+4-5graphics/digikam/Makefile
1.40+2-2graphics/digikam/distinfo
+9-253 files

FreeBSD/ports 1a405a7net/arrowdl distinfo Makefile, net/arrowdl/files patch-src_core_settings.cpp patch-src_core_session.cpp

net/arrowdl: update the port to the latest version 4.2.1

- License needs clarification; stick with the lowest LGPL
  version as this is what the source code says
- Provide better diagnostics when trying to open or save
  a non-existent file
- Ensure that download and queue.json's directories exist

Reported by:    portscout
DeltaFile
+43-0net/arrowdl/files/patch-src_core_settings.cpp
+20-0net/arrowdl/files/patch-src_core_session.cpp
+3-3net/arrowdl/distinfo
+3-3net/arrowdl/Makefile
+69-64 files

LLVM/project f49871elibc/src/__support/math CMakeLists.txt

[libc][math][NFC] Fix dependency for acospif (#184738)

DeltaFile
+1-1libc/src/__support/math/CMakeLists.txt
+1-11 files

LLVM/project 7418d1bclang/include/clang/Basic DiagnosticDriverKinds.td, clang/include/clang/Driver ToolChain.h

[Clang] Add clang flag --cstdlib (#183254)

Introduce clang flag --cstdlib based on RFC:

https://discourse.llvm.org/t/rfc-add-command-line-option-for-selecting-c-library/87335

This flag accepts a string i.e. the name of the C library that user
wants to use.
Toolchain drivers can handle this flag as per need or ignore it.
DeltaFile
+25-0clang/lib/Driver/ToolChain.cpp
+13-0clang/include/clang/Driver/ToolChain.h
+5-0clang/include/clang/Options/Options.td
+2-0clang/include/clang/Basic/DiagnosticDriverKinds.td
+45-04 files

LLVM/project b5c4051libc/src/__support/math CMakeLists.txt

[libc][math][NFC] Fix dependency for acospif
DeltaFile
+1-1libc/src/__support/math/CMakeLists.txt
+1-11 files

LLVM/project 31c405doffload/plugins-nextgen/common/src PluginInterface.cpp

Fix usage of REPORT
DeltaFile
+2-2offload/plugins-nextgen/common/src/PluginInterface.cpp
+2-21 files

LLVM/project 07677d8offload/include omptarget.h, offload/test/offloading dyn_groupprivate.cpp

Adapt to latest OpenMP syntax
DeltaFile
+70-33offload/test/offloading/dyn_groupprivate.cpp
+33-15openmp/device/src/State.cpp
+8-6openmp/runtime/src/include/omp.h.var
+8-6openmp/runtime/src/kmp_stub.cpp
+6-5openmp/runtime/src/kmp_csupport.cpp
+2-2offload/include/omptarget.h
+127-672 files not shown
+129-708 files

FreeBSD/ports a2f0f13databases/pg_textsearch distinfo pkg-plist

databases/pg_textsearch: Update to 0.6.0
DeltaFile
+3-3databases/pg_textsearch/distinfo
+2-1databases/pg_textsearch/pkg-plist
+1-1databases/pg_textsearch/Makefile
+6-53 files

OpenBSD/ports nmSn4BEnet/go-ipfs distinfo modules.inc

   kubo: update to 0.40.1 to unbreak build with go 1.26

   https://github.com/ipfs/kubo/releases/tag/v0.40.0
   https://github.com/ipfs/kubo/releases/tag/v0.39.0
VersionDeltaFile
1.13+858-746net/go-ipfs/distinfo
1.9+329-253net/go-ipfs/modules.inc
1.24+1-1net/go-ipfs/Makefile
+1,188-1,0003 files

FreeBSD/src 1abb628tests/sys/net/bpf bpf.sh

tests/net/bpf: skip the bpf:inject test when RSS is present

With RSS the epair(4) may reorder packets making the test flaky. See
net/if_epair.c:epair_select_queue().
DeltaFile
+4-0tests/sys/net/bpf/bpf.sh
+4-01 files

FreeBSD/src 7884321sys/net rss_config.c

rss: manifest RSS option in kernel with kern.features sysctl
DeltaFile
+1-0sys/net/rss_config.c
+1-01 files

LLVM/project 30086bcllvm/lib/Target/RISCV RISCVVectorPeephole.cpp, llvm/test/CodeGen/RISCV/rvv reduce-vl-peephole.ll reduce-vl-peephole.mir

[RISCV] Remove RISCVVectorPeephole::tryToReduceVL (#184297)

Now that RISCVVLOptimizer has been extended to handle the remaining
cases tryToReduceVL handles, we can remove tryToReduceVL to keep all the
reduction logic in one place.

Intended to be NFC but it looks like in
test/CodeGen/RISCV/rvv/fixed-vectors-insert-subvector-shuffle.ll we were
previously reducing the vl of a volatile load in
insert_subvector_dag_loop, which RISCVVLOptimizer knows to avoid.

On llvm-test-suite and SPEC CPU 2017 -march=rva23u64 -O3 there are no
changes with this patch.
DeltaFile
+2-104llvm/lib/Target/RISCV/RISCVVectorPeephole.cpp
+0-19llvm/test/CodeGen/RISCV/rvv/reduce-vl-peephole.ll
+0-15llvm/test/CodeGen/RISCV/rvv/reduce-vl-peephole.mir
+3-3llvm/test/CodeGen/RISCV/rvv/vmv.v.v-peephole.mir
+2-2llvm/test/CodeGen/RISCV/rvv/rvv-peephole-vmerge-to-vmv.mir
+1-2llvm/test/CodeGen/RISCV/rvv/fixed-vectors-insert-subvector-shuffle.ll
+8-1456 files

FreeBSD/src d4083fbtests/sys/net/bpf pcap-test.c Makefile

tests/net/bpf: hexdump(3) the packets if compare fails
DeltaFile
+5-1tests/sys/net/bpf/pcap-test.c
+1-1tests/sys/net/bpf/Makefile
+6-22 files

LLVM/project bbe4853llvm/lib/Target/RISCV RISCVInstrInfo.cpp

[RISCV] Add findCommutedOpIndices support for Zvabd



Reviewers: preames, topperc, mgudim, lukel97, mshockwave

Pull Request: https://github.com/llvm/llvm-project/pull/184602
DeltaFile
+4-0llvm/lib/Target/RISCV/RISCVInstrInfo.cpp
+4-01 files

LLVM/project 7321e71flang/test/Integration/OpenMP map-types-and-sizes.f90, mlir/lib/Target/LLVMIR/Dialect/OpenMP OpenMPToLLVMIRTranslation.cpp

[OpenMP][MLIR] Modify lowering OpenMP Dialect lowering to support attach mapping

This PR adjusts the LLVM-IR lowering to support the new attach map type that the runtime
uses to link data and pointer together, this swaps the mapping from the older
OMP_MAP_PTR_AND_OBJ map type in most cases and allows slightly more complicated ref_ptr/ptee
and attach semantics.
DeltaFile
+352-234mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.cpp
+274-0mlir/test/Target/LLVMIR/omptarget-host-ref-semantics.mlir
+116-123flang/test/Integration/OpenMP/map-types-and-sizes.f90
+27-58mlir/test/Target/LLVMIR/omptarget-record-type-with-ptr-member-host.mlir
+70-0offload/test/offloading/fortran/map_attach_always.f90
+55-0offload/test/offloading/fortran/map_attach_never.f90
+894-41513 files not shown
+1,046-50019 files

FreeBSD/src 7766046sys/kern subr_trap.c, sys/netinet tcp_hpts.c tcp_lro.c

hpts: remove call into TCP HPTS from userret()

This hack introduced in d7955cc0ffdf and e3cbc572f154 proved to have more
ill side effects than benefits.  Sorry for that.

Now the HPTS soft clock is called only after the LRO completion.  Refactor
HPTS module linkage to address that and share the pointer only between
HPTS and LRO.

Reviewed by:            Nick Banks
Differential Revision:  https://reviews.freebsd.org/D55640
DeltaFile
+9-12sys/netinet/tcp_hpts.c
+0-16sys/kern/subr_trap.c
+0-8sys/sys/systm.h
+3-1sys/netinet/tcp_lro.c
+3-1sys/netinet/tcp_lro_hpts.c
+3-0sys/netinet/tcp_hpts.h
+18-386 files

LLVM/project 184ac47flang/lib/Lower/OpenMP Utils.cpp, flang/lib/Optimizer/OpenMP MapInfoFinalization.cpp

[Flang][OpenMP][Offload] Modify MapInfoFinalization to handle attach mapping and 6.1's ref_* and attach map keywords

This PR is one of four required to implement the attach mapping semantics in Flang, alongside the
ref_ptr/ref_ptee/ref_ptr_ptee map modifiers and the attach(always/never/auto) modifiers.

This PR is the MapInfoFinalization changes required to support these features, it mainly deals with
applying the correct attach map type and manipulating the descriptor types maps for base address
and descriptor so that when we specify ref_ptr/ref_ptee we emit one of the two maps and when we
emit ref_ptr_ptee we emit our usual default maps. In all cases we add the "glue" of an new
attach map except in cases where a user has provided attach never. In cases where we are
provided an always, we apply the always map type to our attach maps.

It's important to note the runtime has a toggle for the auto map behaviour, which will flip the
attach behaviour to the newer semantics or the older semantics for backwards compatability (outside
the purview of this PR but good to mention).
DeltaFile
+531-262flang/lib/Optimizer/OpenMP/MapInfoFinalization.cpp
+43-44flang/test/Lower/OpenMP/use-device-ptr-to-use-device-addr.f90
+32-21flang/test/Transforms/omp-map-info-finalization.fir
+19-19flang/test/Lower/OpenMP/optional-argument-map-2.f90
+18-12flang/test/Lower/OpenMP/derived-type-allocatable-map.f90
+16-7flang/lib/Lower/OpenMP/Utils.cpp
+659-36512 files not shown
+721-40118 files