LLVM/project 88d548across-project-tests/intrinsic-header-tests riscv_packed_simd.c

[RISCV][P-ext][NFC] Add tests for packed reverse intrinsics (#208484)
DeltaFile
+48-0cross-project-tests/intrinsic-header-tests/riscv_packed_simd.c
+48-01 files

FreeBSD/ports b2b0a61devel Makefile, devel/py-azure-search-documents Makefile pkg-descr

devel/py-azure-search-documents: New port: Microsoft Corporation Azure Search Documents Client Library for Python
DeltaFile
+26-0devel/py-azure-search-documents/Makefile
+20-0devel/py-azure-search-documents/files/patch-pyproject.toml
+4-0devel/py-azure-search-documents/pkg-descr
+3-0devel/py-azure-search-documents/distinfo
+1-0devel/Makefile
+54-05 files

FreeBSD/ports 53f6467devel Makefile, devel/py-opentelemetry-exporter-prometheus Makefile pkg-descr

devel/py-opentelemetry-exporter-prometheus: New port: Prometheus Metric Exporter for OpenTelemetry
DeltaFile
+26-0devel/py-opentelemetry-exporter-prometheus/Makefile
+11-0devel/py-opentelemetry-exporter-prometheus/files/patch-pyproject.toml
+4-0devel/py-opentelemetry-exporter-prometheus/pkg-descr
+3-0devel/py-opentelemetry-exporter-prometheus/distinfo
+1-0devel/Makefile
+45-05 files

FreeBSD/ports 8f518d5math Makefile, math/py-edit-distance Makefile pkg-descr

math/py-edit-distance: New port: Computing edit distance on arbitrary Python sequences
DeltaFile
+20-0math/py-edit-distance/Makefile
+4-0math/py-edit-distance/pkg-descr
+3-0math/py-edit-distance/distinfo
+1-0math/Makefile
+28-04 files

FreeBSD/ports cac9fecdevel Makefile, devel/py-azure-search Makefile pkg-descr

www/py-azure-search: New port: Microsoft Azure Cognitive Search Client Library for Python
DeltaFile
+24-0devel/py-azure-search/Makefile
+4-0devel/py-azure-search/pkg-descr
+3-0devel/py-azure-search/distinfo
+1-0devel/Makefile
+32-04 files

FreeBSD/ports 810da46math Makefile, math/py-distance Makefile pkg-descr

math/py-distance: New port: Utilities for comparing sequences
DeltaFile
+24-0math/py-distance/Makefile
+11-0math/py-distance/files/patch-setup.py
+4-0math/py-distance/pkg-descr
+3-0math/py-distance/distinfo
+1-0math/Makefile
+43-05 files

FreeBSD/ports ceed657audio/lame Makefile pkg-plist

audio/lame: fix build (missing pkgconfig)

It did build fine in my poudriere, but not in the poudriere of others.

PR:             296643
Submitted by:   Eric Camachat <eric at camachat.org>
Noticed by:     Einar Bjarni Halldórsson <einar at isnic.is>
DeltaFile
+2-2audio/lame/Makefile
+1-0audio/lame/pkg-plist
+3-22 files

LLVM/project 2ff8ed7llvm/lib/Transforms/Vectorize VectorCombine.cpp, llvm/test/Transforms/PhaseOrdering/X86 pr67803.ll

[VectorCombine] Handle widening/narrowing bitcasts in foldShuffleToIdentity (#187870)

Track lane indices through vector bitcasts that change element count in
foldShuffleToIdentity. Widening bitcasts (e.g. <2 x i32> -> <4 x i16>)
compress R consecutive destination lanes into one source lane, while
narrowing bitcasts (e.g. <4 x i16> -> <2 x i32>) expand each destination
lane into R source lanes.

Also fix identity check, splat mask, and destination type construction
to use Item.size() instead of Ty->getNumElements(), since the Item
vector changes size when passing through element-count-changing
bitcasts.

Fixes #96884
DeltaFile
+336-0llvm/test/Transforms/VectorCombine/X86/shuffletoidentity-bitcast.ll
+130-14llvm/lib/Transforms/Vectorize/VectorCombine.cpp
+88-29llvm/test/Transforms/PhaseOrdering/X86/pr67803.ll
+73-3llvm/test/Transforms/VectorCombine/AArch64/shuffletoidentity.ll
+8-16llvm/test/Transforms/VectorCombine/X86/shuffle-inseltpoison.ll
+8-16llvm/test/Transforms/VectorCombine/X86/shuffle.ll
+643-781 files not shown
+649-847 files

OpenBSD/ports NG0S4qigraphics/sane-backends Makefile, graphics/sane-backends/patches patch-backend_pixma_pixma_mp150_c

   Make SCAN button work on Canon MG3200 series.

   from Mikolaj Kucharski
VersionDeltaFile
1.1+24-0graphics/sane-backends/patches/patch-backend_pixma_pixma_mp150_c
1.119+1-1graphics/sane-backends/Makefile
+25-12 files

LLVM/project 07d5e0d.ci/green-dragon lldb-windows.groovy

[lldb][Windows][CI] split steps (#206946)

Split the lldb green-dragon lldb testing steps into 2:
1. Build and run the tests without `lldb-server.exe`
2. Run the tests with `lldb-server.exe`

This gives better separation in the UI and if the first step fails, the
second step will still attempt to run.
DeltaFile
+24-3.ci/green-dragon/lldb-windows.groovy
+24-31 files

LLVM/project adcd0b7clang/test/CodeGen/AArch64 neon-2velem.c neon-intrinsics.c, clang/test/CodeGen/AArch64/neon fused-multiply.c

[CIR][AArch64] Lower NEON vfms builtins (#207022)

Lower additional AArch64 NEON fused multiply-subtract builtins in CIR.

This covers the ACLE wrappers from section 2.1.1.2.5:
  - vfms_f32, vfms_f64, vfmsq_f32, vfmsq_f64
  - vfms_lane_f32, vfms_lane_f64, vfmsq_lane_f32, vfmsq_lane_f64
  - vfms_laneq_f32, vfms_laneq_f64, vfmsq_laneq_f32, vfmsq_laneq_f64
  - vfmss_lane_f32, vfmss_laneq_f32
  - vfmsd_lane_f64, vfmsd_laneq_f64

The lowering reuses the existing FMA paths by negating the multiply
operand before emitting llvm.fma. Vector lane forms splat the selected
lane, while scalar lane/laneq forms extract the selected element before
the FMA.

Move the existing ACLE coverage into
clang/test/CodeGen/AArch64/neon/fused-multiply.c and add direct LLVM,
CIR-to-LLVM, and CIR checks. The replaced old-style checks are removed

    [2 lines not shown]
DeltaFile
+472-5clang/test/CodeGen/AArch64/neon/fused-multiply.c
+0-254clang/test/CodeGen/AArch64/neon-2velem.c
+0-83clang/test/CodeGen/AArch64/neon-intrinsics.c
+0-60clang/test/CodeGen/AArch64/neon-scalar-x-indexed-elem.c
+472-4024 files

LLVM/project ef84e19compiler-rt/lib/memprof memprof_allocator.cpp memprof_mapping.h, compiler-rt/lib/memprof/tests shadow.cpp CMakeLists.txt

[compiler-rt][memprof] fix off-by-one in shadow access-count accumula… (#208376)

…tion.

GetShadowCount and GetShadowCountHistogram used an inclusive loop up to
MEM_TO_SHADOW(p + size), summing an extra adjacent cell when p + size is
granule-aligned. Use p + size - 1 to stay within the allocation.
DeltaFile
+51-0compiler-rt/lib/memprof/tests/shadow.cpp
+0-21compiler-rt/lib/memprof/memprof_allocator.cpp
+21-0compiler-rt/lib/memprof/memprof_mapping.h
+1-0compiler-rt/lib/memprof/tests/CMakeLists.txt
+73-214 files

FreeNAS/freenas 74fbdcdsrc/middlewared/middlewared/api/v25_10_0 nvmet_subsys.py, src/middlewared/middlewared/api/v25_10_1 nvmet_subsys.py

Fix nvmet defaults
DeltaFile
+12-4src/middlewared/middlewared/api/v25_10_2/nvmet_subsys.py
+12-4src/middlewared/middlewared/api/v26_0_0/nvmet_subsys.py
+12-4src/middlewared/middlewared/api/v27_0_0/nvmet_subsys.py
+12-4src/middlewared/middlewared/api/v25_10_0/nvmet_subsys.py
+12-4src/middlewared/middlewared/api/v25_10_1/nvmet_subsys.py
+60-205 files

LLVM/project ac18fc2llvm/test/CodeGen/AMDGPU packed_shl64_combine.ll

whopsy++
DeltaFile
+2-2llvm/test/CodeGen/AMDGPU/packed_shl64_combine.ll
+2-21 files

LLVM/project e3baddfllvm/lib/Target/AMDGPU AMDGPUISelLowering.cpp

whopsy
DeltaFile
+0-1llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
+0-11 files

LLVM/project 494697fclang/include/clang/Basic CodeGenOptions.h, clang/include/clang/Options Options.td

[CodeGen] Disable exact dynamic_cast for duplicable vtables (#205929)

Add `TargetInfo::getVTableUniqueness()`, which returns a
`VTableUniquenessKind` that describes whether a target's ABI guarantees
a class's vtable has a single address program-wide. Apple Mach-O targets
return `UniqueIfStrongLinkage`, since a vague-linkage (weak) vtable may
be autohidden and duplicated per image, while a vtable with strong
linkage (e.g., a class with a key function) still has a unique address.
Every other target keeps the default, `AlwaysUnique`.

Rename the `CodeGenOpts` flag backing `-f[no-]assume-unique-vtables`
from `AssumeUniqueVTables` to `DisableExactDynamicCast`, defaulting to
false so the optimization stays on unless `-fno-assume-unique-vtables`
is given. Use it together with `getVTableUniqueness()` in
`ItaniumCXXABI::hasUniqueVTablePointer()` so a weak vtable on a target
that may duplicate vtables no longer qualifies for the exact
`dynamic_cast` optimization; a vtable with a key function, or any vtable
on a target with `AlwaysUnique` semantics, is unaffected.


    [2 lines not shown]
DeltaFile
+39-10clang/test/CodeGenCXX/dynamic-cast-exact-disabled.cpp
+13-0clang/include/clang/Basic/CodeGenOptions.h
+9-4clang/lib/CodeGen/ItaniumCXXABI.cpp
+7-0clang/lib/Basic/Targets/OSTargets.h
+3-3clang/include/clang/Options/Options.td
+4-0clang/lib/Basic/TargetInfo.cpp
+75-174 files not shown
+82-2010 files

LLVM/project cc95b1ellvm/lib/Target/AMDGPU SIInstructions.td SIISelLowering.cpp

[Review] Move the unroll of trunc v2i64 to v2i32 out of performShlCombine
DeltaFile
+14-0llvm/lib/Target/AMDGPU/SIInstructions.td
+3-2llvm/lib/Target/AMDGPU/SIISelLowering.cpp
+0-5llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
+17-73 files

LLVM/project d4dd90amlir/include/mlir/Dialect/Tosa/IR TosaTypesBase.td TosaComplianceData.h.inc, mlir/lib/Dialect/Tosa/IR TosaOps.cpp

[mlir][tosa] Add constant block scaled support (#205506)

This commit adds support for block scaled tensors.

In particular, the block scaled type has been extended with the
`DenseElementTypeInterface` to allow block scaled data values to be
specified in dense element attributes.

The block scaled type has also been extended to allow optional scale
values to be specified by the type. For now, scale values are not
expected to be propagated beyond their use in the attribute input of a
constant operation. In the future, we may want to propagate these values
to allow certain optimizations.

The `tosa.const` operation has also been updated in the validation pass.
DeltaFile
+128-12mlir/lib/Dialect/Tosa/IR/TosaOps.cpp
+72-0mlir/test/Dialect/Tosa/ops.mlir
+68-0mlir/test/Dialect/Tosa/verifier.mlir
+18-5mlir/include/mlir/Dialect/Tosa/IR/TosaTypesBase.td
+19-1mlir/include/mlir/Dialect/Tosa/IR/TosaComplianceData.h.inc
+18-0mlir/test/Dialect/Tosa/tosa-validation-version-1p0-invalid.mlir
+323-184 files not shown
+348-2410 files

FreeBSD/src 554cf9dsys/compat/linuxkpi/common/src linux_80211.c

linuxkpi 802.11: Free entire mbuf chain on failure

Reviewed by:    bz
Sponsored by:   The FreeBSD Foundation
Fixes: 0936c648ad0ee ("LinuxKPI: 802.11: update the ni/lsta reference cycle")
Fixes: c816f64e66a0d ("LinuxKPI: 802.11: plug mbuf leak")
Differential Revision: https://reviews.freebsd.org/D57477

(cherry picked from commit 232021fd093c6e65beee5c0b4281091902022d08)
DeltaFile
+2-2sys/compat/linuxkpi/common/src/linux_80211.c
+2-21 files

FreeBSD/src f8e499fsys/netpfil/ipfw ip_fw_nat.c

ipfw nat: Add assertion that mbuf is not a chain

Discarding m_free's return value will result in an mbuf leak if the mbuf
was in a chain.

In general we should use m_freem if the mbuf may be in a chain, or
assert that the return was NULL.  There will not be a chain here due to
m_megapullup, so add an assert.

Reviewed by:    ae
Sponsored by:   The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D57479

(cherry picked from commit b16c731b0191d6c47de46a3c6057b0c5ec0dd420)
DeltaFile
+3-2sys/netpfil/ipfw/ip_fw_nat.c
+3-21 files

FreeBSD/src de8a68dsys/netipsec ipsec_output.c

ipsec: Free entire mbuf chain on failure

Reviewed by:    kib
Sponsored by:   The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D57475

(cherry picked from commit 85195c0c7f8a2926f0ba131178d9231bc33c81b5)
DeltaFile
+1-1sys/netipsec/ipsec_output.c
+1-11 files

FreeBSD/src 32d229dsys/dev/tsec if_tsec.c

if_tsec: Free entire mbuf chain on failure

Reviewed by:    bz
Sponsored by:   The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D57478

(cherry picked from commit 39e2fe23238f4d49cd6f2c3ce9d0d9c1c3bcbedd)
DeltaFile
+1-1sys/dev/tsec/if_tsec.c
+1-11 files

LLVM/project 161dc1dcmake/Modules GetTripleCMakeSystemName.cmake

cmake: Try to derive CMAKE_SYSTEM_NAME from unnormalized triples

get_triple_cmake_system_name() assumed a fully-normalized triple of the form
arch-vendor-os[-env] and read the OS and environment from fixed positions.

Unnormalized triples often omit the vendor and/or environment
(e.g. "aarch64-linux-android21", "aarch64-linux-gnu", "wasm32-wasi"),
so those fixed positions are wrong, and the function returned
bogus results, e.g.. "aarch64-linux-android21" -> Generic.

This was expecting to get a normalized triple by running clang -print-target-triple,
but that may not always work.

Scan all triple components for the known OS and environment tokens instead of
reading fixed positions. Ideally we would have a full triple normalization
function in cmake that mirrors the normalization in Triple.

Co-authored-by: Claude (Opus 4.8) <noreply at anthropic.com>
DeltaFile
+97-62cmake/Modules/GetTripleCMakeSystemName.cmake
+97-621 files

LLVM/project dd82416offload/liboffload/API Memory.td, offload/liboffload/src OffloadImpl.cpp

[offload] Add olMemPrefetch to liboffload (#206752)

Adds olMemPrefetch and the OL_MEM_MIGRATION_FLAG_* enum, wired through a
new dataPrefetchImpl on the plugin interface with Level Zero and CUDA
implementations. Backends without prefetch support inherit the default
no-op.

Prefetch is a hint that migrates a USM allocation between the host and a
device so subsequent accesses on the target side are faster.

Assisted-by: Claude
DeltaFile
+149-0offload/unittests/OffloadAPI/memory/olMemPrefetch.cpp
+47-0offload/plugins-nextgen/cuda/src/rtl.cpp
+41-0offload/liboffload/API/Memory.td
+21-0offload/plugins-nextgen/level_zero/src/L0Device.cpp
+11-0offload/liboffload/src/OffloadImpl.cpp
+11-0offload/plugins-nextgen/common/include/PluginInterface.h
+280-07 files not shown
+320-013 files

LLVM/project 361a3e6llvm/lib/Transforms/Vectorize VectorCombine.cpp, llvm/test/Transforms/VectorCombine load-insert-store.ll

[VectorCombine] Fix bailing out of the foldSingleElementStore with a freeze-pending index (#207702)

`foldSingleElementStore` calls `canScalarizeAccess` to decide whether a
single-element store can be scalarized. When the insert index is not a
constant, is provably in-bounds and may be poison, `canScalarizeAccess`
returns `SafeWithFreeze` and stashes a `ToFreeze` value that must later
be consumed by `freeze()` or cleared by `discard()`.

The bail-out for memory being modified between the load and store was
folded into same condition as the scalarizability check:

```cpp
auto ScalarizableIdx = canScalarizeAccess(...);
if (ScalarizableIdx.isUnsafe() || isMemModifiedBetween(...))
  return false;
```

When the index took the `SafeWithFreeze` path and memory was modified
between the load and the store, `isMemModifiedBetween` returns true and

    [8 lines not shown]
DeltaFile
+20-0llvm/test/Transforms/VectorCombine/load-insert-store.ll
+4-3llvm/lib/Transforms/Vectorize/VectorCombine.cpp
+24-32 files

LLVM/project b45d681libcxx/utils/ci buildkite-pipeline.yml

[libc++] Update the label for FreeBSD in CI to version 15.1 (#205417)

The FreeBSD libc++ CI has been bumped to the new FreeBSD release. The
remaining task to do is to bump the description in CI yaml file.
DeltaFile
+1-1libcxx/utils/ci/buildkite-pipeline.yml
+1-11 files

LLVM/project 1df703allvm/lib/Target/BPF BPFMIPeephole.cpp

BPF: Remove unnecessary isReg check for copy source (#208486)
DeltaFile
+0-3llvm/lib/Target/BPF/BPFMIPeephole.cpp
+0-31 files

LLVM/project ac25775llvm/include/llvm/IR ModuleSummaryIndex.h, llvm/lib/CodeGen/LiveDebugValues InstrRefBasedImpl.h InstrRefBasedImpl.cpp

Revert "[LLVM][NFC] Remove some global constructors (#208407)"

This reverts commit d68ad9ab736ec65a8addc67655a6b290a7f98307.
DeltaFile
+13-11llvm/lib/CodeGen/LiveDebugValues/InstrRefBasedImpl.h
+9-9llvm/lib/Target/X86/X86LoadValueInjectionLoadHardening.cpp
+9-7llvm/lib/CodeGen/LiveDebugValues/InstrRefBasedImpl.cpp
+11-4llvm/include/llvm/IR/ModuleSummaryIndex.h
+7-7llvm/lib/Target/ARM/Thumb1FrameLowering.cpp
+10-3llvm/lib/DebugInfo/CodeView/ContinuationRecordBuilder.cpp
+59-4127 files not shown
+123-8233 files

FreeBSD/src 242c9c8sys/kern vfs_inotify.c, tests/sys/kern inotify_test.c

inotify: Unconditionally generate IN_IGNORED events for files/dirs

The implementation previously only generated an IN_IGNORED event for a
deleted watched file if the watch explicitly requested IN_DELETE_SELF.
This is not correct, IN_IGNORED should always be raised when the watched
subject is deleted.  Adjust the implementation of inotify_log_one()
accordingly.

This also fixes a problem where a deleted watched file's watch
would not be removed if IN_DELETE_SELF was not in the watch's event
mask, in which case the unlinked vnode would linger until the inotify
descriptor itself is closed.

Add a regression test.

Reported by:    jrtc27
Reviewed by:    jrtc27
MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D58050

    [2 lines not shown]
DeltaFile
+23-12sys/kern/vfs_inotify.c
+24-0tests/sys/kern/inotify_test.c
+47-122 files

FreeBSD/src 1ad156fsys/kern vfs_inotify.c

inotify: Ensure that "allocfail" is initialized in inotify_log_one()

Fixes:  b70997c8c75a ("inotify: Unconditionally generate IN_IGNORED events for files/dirs")

(cherry picked from commit f370bf9fafce82851bedb2b88bc21ec6ca0182df)
DeltaFile
+1-2sys/kern/vfs_inotify.c
+1-21 files