[AMDGPU] Fix lowerFCOPYSIGN dropping the sign bit when narrowing the sign operand (#203492)
TRUNCATE of the v2i32-bitcast sign kept the low 16 bits of each lane but
dropped f32 sign bit at bit 31
Shift right by 16 first so the sign bit lands in the f16 sign position
---------
Co-authored-by: Jay Foad <jay.foad at gmail.com>
website: RU - add 15.1R to ru/releases pages
15.1R release documents translated to Russian.
Link to new release added to ru/releases page.
News item added to news page in Russian.
Differential Revision: https://reviews.freebsd.org/D57603
net/sendme: fix build on powerpc64*
1. For netdev crate, the relevant code is not amd64-only, but applies
to any 64-bit architecture.
2. For netwatch crate, the relevant code is not aarch64-only, but
also works on powerpc64* and should work on riscv64.
net/dumbpipe: fix build on powerpc64*
1. For netdev crate, the relevant code is not amd64-only, but applies
to any 64-bit architecture.
2. For netwatch crate, the relevant code is not aarch64-only, but
also works on powerpc64* and should work on riscv64.
Allow rectangle selection to extend past end of current line to behave
the same as vi with virtualedit=block set. From Mark Kelly in GitHub
issue 5227.
Convert kmip plugin to typesafe pattern
This commit adds changes to convert the kmip plugin from the legacy dict-based ConfigService/CompoundService to the typesafe GenericConfigService pattern, with a ConfigServicePart, Pydantic models, and the internal ZFS/SED key-management machinery extracted into plain functions backed by an in-memory KMIPKeyStore. Since kmip.config now returns a model, in-process consumers in failover, the pykmip mako, pool encryption and the kmip pseudo-service are switched to attribute access, and the KMIP port delegate hands the base a dict so port validation keeps working.
[LV] Add `-vplan-print-before=<pass-regex>` (#203933)
This can be helpful for debugging and for VPlan check tests (showing
before/after a specific transform).
This also adds `-vplan-print-before-all` for parity with
`-vplan-print-after-all`.