FreeBSD/ports d6938acnet-im/iamb Makefile Makefile.crates, net-im/iamb/files patch-rust-1.94.0

net-im/iamb: Update to 0.0.12

- Remove already upstreamed patch.

PR:             298062
DeltaFile
+957-819net-im/iamb/distinfo
+477-408net-im/iamb/Makefile.crates
+0-21net-im/iamb/files/patch-rust-1.94.0
+1-2net-im/iamb/Makefile
+1,435-1,2504 files

FreeBSD/src 5cb9699. Makefile.in configure, admin config.sub ltmain.sh

kyua: import kyua-0.15.0-beta1

This change adds kyua kyua-0.15.0-beta1 from [upstream][1].

The kyua-0.15.0-beta1 artifact was been verified by [SHA256 checksum][3].

This change contains a number of new features and bugfixes, as well as
the official upstreaming of several features previously committed to the
FreeBSD src tree.

More information about the release (from a high level) can be found in
the [release notes][4].

Updated via [`update_kyua.sh`][4] `update_kyua.sh 0.15.0-beta1 kyua-0.15.0`.

1: https://github.com/freebsd/kyua/releases/download/kyua-0.15.0-beta1/kyua-0.15.0-beta1.tar.gz
2: https://github.com/freebsd/kyua/releases/download/kyua-0.15.0-beta1/kyua-0.15.0-beta1.tar.gz.sha256
3: https://github.com/freebsd/kyua/blob/kyua-0.15.0-beta1/NEWS.md
4: https://codeberg.org/ngie/freebsd-powertools:shell/update_kyua.sh@10a04edb
DeltaFile
+24,484-0configure
+11,524-0admin/ltmain.sh
+11,024-0Makefile.in
+8,488-0m4/libtool.m4
+2,907-0bootstrap/testsuite
+1,802-0admin/config.sub
+60,229-0193 files not shown
+73,499-2,207199 files

FreeBSD/src ac2d088. INSTALL.md configure, admin ltmain.sh config.guess

atf: import atf-0.26-rc1

This change adds atf atf-0.26-rc1 from [upstream][1].

The atf-0.26-rc1 artifact was been verified by [SHA256 checksum][3].

This release contains the upstreamed version of `require.kmods` support
provided by des@ in [freebsd at 83a1ee57][require-kmods-support].

More information about the release (from a high level) can be found in
the [release notes][4].

Updated via [`update_atf.sh`][4] `update_atf.sh 0.26-rc1 atf-0.26`.

1: https://github.com/freebsd/atf/releases/download/atf-0.26-rc1/atf-0.26-rc1.tar.gz
2: https://github.com/freebsd/atf/releases/download/atf-0.26-rc1/atf-0.26-rc1.tar.gz.sha256
3: https://github.com/freebsd/atf/blob/atf-0.26-rc1/NEWS.md
4: https://codeberg.org/ngie/freebsd-powertools:shell/update_atf.sh@10a04edb
require-kmods-support: https://cgit.freebsd.org/src/commit/?id=83a1ee578c9d1ab7013e997289c7cd470c0e6902
DeltaFile
+938-1,490admin/config.sub
+597-932admin/config.guess
+159-601m4/libtool.m4
+243-426configure
+80-245admin/ltmain.sh
+44-72INSTALL.md
+2,061-3,76625 files not shown
+2,515-3,86431 files

LLVM/project b58610cllvm/lib/Transforms/InstCombine InstCombineVectorOps.cpp, llvm/test/Transforms/InstCombine extractelement.ll

[InstCombine] Fold extraction of low integer bits from scalar FP

A scalar FP bitcast to an integer vector followed by extraction of its
least-significant element can use a scalar integer bitcast and truncation.
For example, extracting element zero of a float-to-<32 x i1> bitcast on a
little-endian target becomes a float-to-i32 bitcast followed by truncation
to i1. This avoids making vector legalization reconstruct an existing
scalar bit projection. A one-element vector needs only the scalar bitcast.

Extend foldBitcastExtElt for this case. Require the vector bitcast to have
one use, an integer result, and no shift after accounting for endianness.
A newly introduced source-width integer must be desirable under DataLayout
to avoid wide scalar intermediates that regress codegen. Preserve the
existing integer-source shift restrictions.

The fold reinterprets bits without FP arithmetic, preserves operand-use
count, and does not look through freeze. Update the baseline test checks.

Alive2 proof of the motivating little-endian float-to-i1 case, with poison

    [2 lines not shown]
DeltaFile
+99-42llvm/test/Transforms/InstCombine/extractelement.ll
+21-6llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
+120-482 files

LLVM/project aedafc7llvm/test/Transforms/InstCombine extractelement.ll

[InstCombine][NFC] Add tests for extracting integer bits from scalar FP

Add coverage for scalar FP-to-integer-vector bitcasts followed by constant
element extraction, including the float-to-<32 x i1> case. Capture existing
behavior for both endiannesses and different legal integer widths, with
one-element, multiple-use, variable-index, FP-result, poison, out-of-range,
and freeze cases.

Generate checks with the unmodified compiler. All eight RUN configurations
pass before adding the scalar FP extraction fold.
DeltaFile
+216-0llvm/test/Transforms/InstCombine/extractelement.ll
+216-01 files

FreeBSD/src a6deeaasys/cddl/contrib/opensolaris/uts/common/sys dtrace_impl.h, sys/cddl/dev/dtrace/aarch64 dtrace_isa.c dtrace_asm.S

dtrace/arm64: Fix copyout and copyoutstr

Calling dtrace_copy and dtrace_copystr with the kaddr and uaddr
arguments inversed does not work with PAN. Rename them
dtrace_copyin_pan and dtrace_copyinstr_pan, respectively, and
implement dtrace_copyout_pan and dtrace_copyoutstr_pan.

Avoid excessive faulting by checkin DTrace's CPU flags. Implement the
trick from OpenSolaris/Illumos of only checking the flags when
crossing into a new page, altough more effectively by examining the
vaddr instead of the count.

Reviewed by:    markj
MFC after:      3 weeks
Differential Revision:  https://reviews.freebsd.org/D59449
DeltaFile
+62-6sys/cddl/dev/dtrace/aarch64/dtrace_asm.S
+4-4sys/cddl/dev/dtrace/aarch64/dtrace_isa.c
+7-0sys/cddl/contrib/opensolaris/uts/common/sys/dtrace_impl.h
+73-103 files

OpenBSD/ports gzPMo1Kgames/terraria-server Makefile distinfo

   Update to terraria-server-1.4.5.8. Add a note about where to find updates.
VersionDeltaFile
1.2+2-2games/terraria-server/distinfo
1.2+2-1games/terraria-server/Makefile
+4-32 files

LLVM/project efbce1bllvm/lib/Target/PISA/MCTargetDesc PISAMCAsmInfo.cpp

Fix default pointer size
DeltaFile
+1-1llvm/lib/Target/PISA/MCTargetDesc/PISAMCAsmInfo.cpp
+1-11 files

OpenBSD/ports 9r5r1Dydatabases/mariadb mariadb.port.mk

   Add MODMARIADB_DEFAULTS_FILE to mariadb module

   The default sets innodb_buffer_pool_size_max=512m because otherwise
   none of the modules that try to use it for tests work as they want
   to allocate enough memory to run an LLM.

   While here, give mariadb a bit more time to start,
   my machine is apparently slow.

   OK Brad Smith <brad () comstyle ! com> (MAINTAINER)
VersionDeltaFile
1.7+7-3databases/mariadb/mariadb.port.mk
+7-31 files

LLVM/project eb27d7bllvm/lib/TargetParser TargetDataLayout.cpp

Specify n (native integer width)
DeltaFile
+2-0llvm/lib/TargetParser/TargetDataLayout.cpp
+2-01 files

LLVM/project 0bd3306clang/docs ReleaseNotes.md, clang/lib/Driver/ToolChains BareMetal.cpp

[clang][Driver] Use the bare-metal toolchain for LoongArch (#223703)

Clang did not handle loongarch32-\*-none-elf and loongarch64-\*-none-elf
in the
bare-metal toolchain, so these targets fell back to the generic ELF
toolchain,
which links by running gcc. Any -fuse-ld or --ld-path option is
forwarded to
gcc, and linking fails when there is no gcc. On a host whose gcc does
not target
LoongArch, which is the usual case when cross compiling, gcc drives the
linker
for the host, and the link fails with errors such as "a.o is
incompatible with
elf_x86_64". The generic ELF toolchain also searches /usr/local/include
and
/usr/include of the host.

The other bare-metal targets, Arm, AArch64, RISC-V, PowerPC, and x86

    [12 lines not shown]
DeltaFile
+30-0clang/test/Driver/baremetal.cpp
+9-2clang/lib/Driver/ToolChains/BareMetal.cpp
+5-0clang/docs/ReleaseNotes.md
+4-0clang/test/Driver/loongarch-toolchain.c
+48-24 files

LLVM/project c1b15b5clang/lib/Basic/Targets M68k.cpp, llvm/lib/TargetParser TargetDataLayout.cpp

[M68k][NetBSD] Fix alignments for NetBSD/m68k. (#207602)

Linux/m68k uses the ABI from Sun Microsystems for a.out on m68k, which
aligns ints/objects/pointers/stack on 16-bit boundaries.

NetBSD/m68k on the other hand uses the ABI from SVR4 for m68k, which
aligns ints/objects/pointers/stack on 32-bit boundaries.

This is a follow-up of
https://github.com/M680x0/issues/issues/13
DeltaFile
+38-13llvm/lib/TargetParser/TargetDataLayout.cpp
+17-1clang/lib/Basic/Targets/M68k.cpp
+55-142 files

LLVM/project 0ab29d3clang/include/clang/CIR/Dialect/IR CIRAttrs.td, clang/lib/CIR/CodeGen CIRGenCall.cpp

[CIR] Add memory effects factories and handle noalias functions

Assisted-by: Cursor / claude-opus-5
DeltaFile
+67-0clang/lib/CIR/Dialect/IR/CIRAttrs.cpp
+56-0clang/include/clang/CIR/Dialect/IR/CIRAttrs.td
+17-13clang/lib/CIR/CodeGen/CIRGenCall.cpp
+18-3clang/test/CIR/CodeGen/side-effect.cpp
+158-164 files

LLVM/project 5ec4adbclang/lib/CIR/Dialect/Transforms/TargetLowering CIRABIRewriteContext.cpp, clang/test/CIR/CodeGen call-conv-lowering-x86_64-non-byval-param-spill-nyi.cpp

[CIR] Match the parameter spill shape instead of asserting it

Return null from findParamSpill when a non-byval indirect parameter's
only use is not a store into an alloca it names directly, instead of
asserting that shape.  Both callers already handled a null result, so
an unmatched parameter now reaches the diagnostic the forwarding call
already has for an operand that does not name the caller's storage.

Assisted-by: Cursor / claude-opus-5
DeltaFile
+71-0clang/test/CIR/Transforms/abi-lowering/non-byval-param-spill-nyi.cir
+30-0clang/test/CIR/CodeGen/call-conv-lowering-x86_64-non-byval-param-spill-nyi.cpp
+15-13clang/lib/CIR/Dialect/Transforms/TargetLowering/CIRABIRewriteContext.cpp
+116-133 files

LLVM/project 6959442llvm/lib/Target/AMDGPU AMDGPU.td, llvm/lib/TargetParser AMDGPUTargetParser.cpp

[AMDGPU] Add LDS encoding granularity to TargetParser

Model LDS encoding granularity with dedicated features and expose the
byte-valued getLDSEncodingGranule query for GPUKind and subarch. Keep
encoding independent of the hardware allocation granularity used for
occupancy; GFX10.3, GFX11 and GFX12.0 encode in 512-byte units while
allocating 1024-byte blocks.

Migrate program resource register and PAL metadata encoding to the new
query and remove getLdsDwGranularity from AMDGPUBaseInfo. gfx9-4-generic
uses gfx950's 1280-byte encoding granule independently of LDS capacity.

Test encoding queries, feature membership, generic-target validation and
encoded LDS sizes, including the GFX10.3 allocation/encoding distinction.

Change-Id: I9d3c2c041605e9a45fa8fbda09fc3460a74953ea
DeltaFile
+57-31llvm/unittests/TargetParser/TargetParserTest.cpp
+37-5llvm/test/TableGen/AMDGPUTargetDefLDSAllocGranularity.td
+34-1llvm/lib/TargetParser/AMDGPUTargetParser.cpp
+34-0llvm/test/CodeGen/AMDGPU/lds-size-gfx9-4-generic.ll
+26-0llvm/test/CodeGen/AMDGPU/lds-size-gfx1030.ll
+20-0llvm/lib/Target/AMDGPU/AMDGPU.td
+208-377 files not shown
+235-5913 files

LLVM/project 147b3d9llvm/include/llvm/TargetParser AMDGPUTargetParser.h, llvm/lib/Target/AMDGPU AMDGPUAsmPrinter.cpp

[AMDGPU] Return zero LDS encoding granularity for dummy targets

Remove the redundant early return and assertion from getLDSEncodingGranule. Return zero when the target has no encoding granularity feature, and document and test the result for unknown and legacy generic targets.

Keep the existing 256-byte default in the assembly printer so compiling without a GPU still produces valid LDS sizes. Test default-target Mesa and PAL encodings and HSA metadata.

Change-Id: Ia0c69a0d7ce2858b31ee64100d37ae34bba6c42c
DeltaFile
+28-0llvm/test/CodeGen/AMDGPU/lds-size-default-device.ll
+10-4llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
+1-9llvm/lib/TargetParser/AMDGPUTargetParser.cpp
+2-2llvm/unittests/TargetParser/TargetParserTest.cpp
+1-0llvm/include/llvm/TargetParser/AMDGPUTargetParser.h
+42-155 files

LLVM/project b3154dfllvm/docs AMDGPUUsage.rst, llvm/lib/Target/AMDGPU AMDGPUTargetTransformInfo.cpp

[AMDGPU] Add partial unroll threshold function attribute (#223291)

This change adds an `amdgpu-partial-unroll-threshold` function attribute
for controlling
`TargetTransformInfo::UnrollingPreferences::PartialThreshold` on a
per-function basis.

The existing `amdgpu-unroll-threshold` function attribute initializes
`UP.Threshold`, which is used for decisions about full
unrolling. However, there is currently no corresponding AMDGPU function
attribute for configuring `UP.PartialThreshold`
independently. As a result, clients of the AMDGPU backend cannot provide
an independent per-function cost threshold for partial and runtime
unrolling.

When present, the new attribute sets the base value of
`UP.PartialThreshold` for loops in that function. This allows the cost
threshold for partial and runtime unrolling to be configured
independently of the threshold used for full unrolling. Functions that

    [5 lines not shown]
DeltaFile
+94-0llvm/test/Transforms/LoopUnroll/AMDGPU/partial-unroll-threshold.ll
+5-0llvm/docs/AMDGPUUsage.rst
+2-0llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp
+101-03 files

OpenBSD/ports C1b5xextextproc/p5-LaTeX-Driver distinfo Makefile, textproc/p5-LaTeX-Driver/patches patch-Makefile_PL

   Update p5-LaTeX-Driver to 1.3.1

   The issue with needing a patch to install the scripts filed upstream:
   https://github.com/Template-Toolkit-Latex/LaTeX-Driver/issues/31
VersionDeltaFile
1.4+11-11textproc/p5-LaTeX-Driver/patches/patch-Makefile_PL
1.13+10-7textproc/p5-LaTeX-Driver/Makefile
1.7+2-2textproc/p5-LaTeX-Driver/distinfo
+23-203 files

OpenBSD/src Yug5Vy7regress/usr.sbin/relayd args-ssl-ec.pl Relayd.pm

   relayd-regress: rewirte TLS tests with new keypair syntax

   - TLS and non-TLS tests are handled differently now.
     - Provide a CERTBASE environment for each TLS test which points to the
       cert/key to test.

   - The single ECDSA test has been removed, as all TLS tests are now run
     separately using RSA and ECDSA certificates.

   - Makefile tweaks: renamed vars and format

   go ahead, bluhm@
VersionDeltaFile
1.26+53-38regress/usr.sbin/relayd/Makefile
1.21+9-1regress/usr.sbin/relayd/Relayd.pm
1.2+0-0regress/usr.sbin/relayd/args-ssl-ec.pl
+62-393 files

LLVM/project f1eaafellvm/lib/TargetParser TargetDataLayout.cpp

Comment on pointer address spaces
DeltaFile
+1-1llvm/lib/TargetParser/TargetDataLayout.cpp
+1-11 files

LLVM/project 8dfef56llvm/lib/Target/PISA PISASubtarget.h

Refer to .td files in the comments
DeltaFile
+4-3llvm/lib/Target/PISA/PISASubtarget.h
+4-31 files

OpenBSD/ports nasXRaZdatabases/p5-DBIx-Class-Schema-Loader distinfo Makefile

   Update p5-DBIx-Class-Schema-Loader to 0.07053

   With the caveat that there is a mariadb bug that causes a crash
   when running the test suite.

   https://jira.mariadb.org/browse/MDEV-41221
VersionDeltaFile
1.27+3-3databases/p5-DBIx-Class-Schema-Loader/Makefile
1.11+2-2databases/p5-DBIx-Class-Schema-Loader/distinfo
+5-52 files

LLVM/project 6f0e58bllvm/lib/Target/PISA/MCTargetDesc PISAMCAsmInfo.cpp

Remove AllowDollarAtStartOfIdentifier
DeltaFile
+0-4llvm/lib/Target/PISA/MCTargetDesc/PISAMCAsmInfo.cpp
+0-41 files

OpenBSD/ports PbwSS2Igraphics/inkscape/patches patch-src_path-prefix_cpp

   missed unistd.h; found by naddy@
VersionDeltaFile
1.5+3-2graphics/inkscape/patches/patch-src_path-prefix_cpp
+3-21 files

FreeBSD/ports 9b6004fdevel/popt distinfo Makefile, devel/popt/files patch-tests_testit.sh

devel/popt: Revert update to latest commit

This wasn't supposed to go in yet due to still waiting on timeout

PR:             298326
Pointy hat to:  myself
DeltaFile
+66-0devel/popt/files/patch-tests_testit.sh
+38-5devel/popt/pkg-plist
+15-11devel/popt/Makefile
+3-3devel/popt/distinfo
+122-194 files

HardenedBSD/ports 9b6004fdevel/popt distinfo Makefile, devel/popt/files patch-tests_testit.sh

devel/popt: Revert update to latest commit

This wasn't supposed to go in yet due to still waiting on timeout

PR:             298326
Pointy hat to:  myself
DeltaFile
+66-0devel/popt/files/patch-tests_testit.sh
+38-5devel/popt/pkg-plist
+15-11devel/popt/Makefile
+3-3devel/popt/distinfo
+122-194 files

OpenBSD/ports QqsgVQYmultimedia/mlt7 distinfo Makefile, multimedia/mlt7/patches patch-src_modules_openfx_factory_c patch-src_modules_avformat_consumer_avformat_c

   Update to mlt7-7.40.0.
VersionDeltaFile
1.27+5-5multimedia/mlt7/Makefile
1.10+3-3multimedia/mlt7/patches/patch-src_framework_mlt_property_c
1.15+5-0multimedia/mlt7/pkg/PLIST-main
1.13+2-2multimedia/mlt7/distinfo
1.2+1-1multimedia/mlt7/patches/patch-src_modules_openfx_factory_c
1.4+1-1multimedia/mlt7/patches/patch-src_modules_avformat_consumer_avformat_c
+17-126 files

HardenedBSD/src 49bb214share/misc committers-src.dot

committers-src: add myself (seuros@) with adrian as mentor

Reviewed by:    adrian
Differential Revision:  https://reviews.freebsd.org/D59861
DeltaFile
+2-0share/misc/committers-src.dot
+2-01 files

FreeBSD/src 49bb214share/misc committers-src.dot

committers-src: add myself (seuros@) with adrian as mentor

Reviewed by:    adrian
Differential Revision:  https://reviews.freebsd.org/D59861
DeltaFile
+2-0share/misc/committers-src.dot
+2-01 files

LLVM/project 6e5b86fllvm/lib/Transforms/Vectorize VPlanUtils.h

[VPlan] Add VPBlockUtils::replaceSuccessor helper (NFC). (#224970)

Add a helper to redirect a single edge, keeping the successor order and
updating the predecessor links of both the old and new successor. Use it
in insertBlockBefore.
DeltaFile
+12-5llvm/lib/Transforms/Vectorize/VPlanUtils.h
+12-51 files