LLVM/project 8472e45flang/lib/Semantics check-omp-syntax.cpp, flang/test/Semantics/OpenMP allocate_do1.f90 uses-allocators-version50.f90

[flang][OpenMP] Reword some diagnostic messages, NFC (#224945)

Instead of "something...something in OpenMP vX.Y on SOME clause" say
"something...something on SOME clause in OpenMP vX.Y".
DeltaFile
+4-4flang/test/Semantics/OpenMP/map-modifiers-v60.f90
+4-4flang/lib/Semantics/check-omp-syntax.cpp
+3-3flang/test/Semantics/OpenMP/uses-allocators-version50.f90
+3-3flang/test/Semantics/OpenMP/to-clause-v45.f90
+3-3flang/test/Semantics/OpenMP/from-clause-v45.f90
+2-2flang/test/Semantics/OpenMP/allocate_do1.f90
+19-194 files not shown
+24-2410 files

LLVM/project d8e0de8llvm/docs/TableGen BackEnds.md BackEnds.rst, llvm/test/CodeGen/RISCV/rvv vector-interleave.ll vector-interleave-fixed.ll

Rebase

Created using spr 1.3.7
DeltaFile
+11,197-135llvm/test/CodeGen/RISCV/rvv/vector-interleave-fixed.ll
+1,847-1,277llvm/test/CodeGen/RISCV/rvv/vector-interleave.ll
+2,412-0llvm/docs/TableGen/ProgRef.md
+0-2,287llvm/docs/TableGen/ProgRef.rst
+0-1,213llvm/docs/TableGen/BackEnds.rst
+1,126-0llvm/docs/TableGen/BackEnds.md
+16,582-4,9122,389 files not shown
+81,025-36,8662,395 files

OPNSense/core 4e03c6esrc/opnsense/mvc/app/views/OPNsense/Diagnostics systemactivity.volt routes.volt, src/opnsense/mvc/app/views/OPNsense/TrafficShaper statistics.volt

ui: remove defunct content-box-main usage

So that reintroducing content-box-main style will not taint these
pages which are likely ok as is nowadays.

PR: https://github.com/opnsense/core/pull/10375
DeltaFile
+2-2src/opnsense/mvc/app/views/OPNsense/TrafficShaper/statistics.volt
+2-2src/opnsense/mvc/app/views/OPNsense/Diagnostics/routes.volt
+2-2src/opnsense/mvc/app/views/OPNsense/Diagnostics/ndp.volt
+1-1src/www/index.php
+1-1src/opnsense/mvc/app/views/OPNsense/Unbound/stats.volt
+1-1src/opnsense/mvc/app/views/OPNsense/Diagnostics/systemactivity.volt
+9-93 files not shown
+12-129 files

FreeBSD/doc 29da3cdwebsite/content/en/cgi ports.cgi

ports.cgi: enable new responsive design

Implement and enable new design for ports.cgi, based on c9c518d9db

Also, move the submit button next to the input field and the select boxes
a row below. Looks better for some mobile devices (e.g. Android) which
cannot detect a submit by the enter key.

Reviewed by:            ziaee
DeltaFile
+30-19website/content/en/cgi/ports.cgi
+30-191 files

LLVM/project 466df93llvm/lib/Support APFloat.cpp, llvm/unittests/ADT APFloatTest.cpp

[APFloat] Fix sign bit corrupting exponent in unsigned FP8 formats (#223286)

`convertIEEEFloatToAPInt` unconditionally ORs the sign bit into the top
bit of the encoded value. `Float8E8M0FNU` and `Float8E5M3FNU` have no
sign bit (`hasSignedRepr = false`), so that top bit actually belongs to
the exponent field. Encoding a value with sign set therefore corrupts
the exponent, in one case colliding with the reserved NaN bit pattern.

Guard the OR with `hasSignedRepr`, matching the existing check in the
decode path (`initFromIEEEAPInt`).

Extend `ConvertLosesUnrepresentableSignAndZero` to also check
`bitcastToAPInt()` after dropping an unrepresentable sign, using `-1.0`
instead of `-2.0` so the corruption is actually visible in the bits.
DeltaFile
+8-4llvm/unittests/ADT/APFloatTest.cpp
+5-3llvm/lib/Support/APFloat.cpp
+13-72 files

LLVM/project d64a0a9llvm/include/llvm/Analysis ValueTracking.h, llvm/lib/Analysis ValueTracking.cpp

[ValueTracking] Make `getUnderlyingObjectsForCodegen()` preserve unidentified objects (#224584)

In some situations, it is useful to inspect the underlying objects of a
memory operation, even if they may alias with one another. A concrete
example comes from the approach to schedule DAG construction I've been
developing (see #205689) where these objects are used to infer that a
class of control dependencies between memory operations is redundant,
whereby eliminating the compile time cost of recording them. Update
`getUnderlyingObjectsForCodegen()` to return these objects.

Split from https://github.com/llvm/llvm-project/pull/205689
DeltaFile
+3-7llvm/lib/Analysis/ValueTracking.cpp
+4-1llvm/lib/Transforms/Utils/MemoryOpRemark.cpp
+4-0llvm/include/llvm/Analysis/ValueTracking.h
+1-2llvm/lib/CodeGen/StackColoring.cpp
+12-104 files

LLVM/project 0da8b0fllvm/include/llvm/CodeGen ScheduleDAGInstrs.h, llvm/lib/CodeGen ScheduleDAGInstrs.cpp

[MachineScheduler](NFC) Remove separate handling for non-alias loads and stores (#224310)

The separate handling of non-alias loads and stores was always extra
complexity with no pay off. Remove this.

Split from #205689
DeltaFile
+13-39llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
+2-10llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h
+15-492 files

GhostBSD/ports 05818bbdevel/electron44/files/packagejsons yarn.lock, games/anki/files/packagejsons yarn.lock

Merge remote-tracking branch 'freebsd/main'

# Conflicts:
#       sysutils/Makefile
DeltaFile
+53,785-0www/hedgedoc/pkg-plist
+22,697-10,125math/gap/pkg-plist
+18,941-0www/immich/pkg-plist
+7,634-3,979games/anki/files/packagejsons/yarn.lock
+11,242-0devel/electron44/files/packagejsons/yarn.lock
+0-10,704misc/llama-cpp/files/package-lock.json
+114,299-24,80810,711 files not shown
+325,655-125,41810,717 files

LLVM/project 138ebe0llvm/lib/Target/WebAssembly WebAssemblyISelLowering.cpp

WebAssembly: Don't duplicate implicit CALL operands in LowerCallResults

When recombining the CALL_PARAMS/CALL_RESULTS pseudo-pair into a real CALL,
LowerCallResults copied CallParams.uses() onto the new instruction. uses()
includes the implicit operands (implicit-def $arguments and the implicit
$sp32/$sp64 uses), which the freshly created CALL already carries. This
resulted in a duplicated implicit-def of $arguments. This avoids a future
verifier error.

Co-authored-by: Claude (Claude-Opus-4.8) <noreply at anthropic.com>
DeltaFile
+2-1llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
+2-11 files

OpenBSD/ports qwV3doBx11/wmclockmon Makefile

   wmclockmon is no longer BROKEN on sparc64 in the base-clang era
VersionDeltaFile
1.23+0-1x11/wmclockmon/Makefile
+0-11 files

OpenBSD/ports FHjFgyvmath/openfst Makefile

   openfst is no longer BROKEN on sparc64 in the base-clang era
VersionDeltaFile
1.24+0-2math/openfst/Makefile
+0-21 files

LLVM/project 72e9d33llvm/lib/CodeGen/SelectionDAG LegalizeTypes.h LegalizeVectorTypes.cpp, llvm/test/CodeGen/AArch64 arm64-zip.ll vselect-widen-mask-tree.ll

Reapply "[SelectionDAG] Recurse through mask expression trees in WidenVSELECTMask" (#217307)

WidenVSELECTMask currently handles only two mask shapes: a bare SETCC
or a single AND/OR/XOR of exactly two SETCCs. Anything deeper bails out
to the generic condition widening path, which often introduces
unnecessary narrow/widen roundtrips (xtn+sshll on AArch64,
packssdw+vpmovsxwd on X86).

Replace the hand-coded cases with a recursive widenMaskTree that walks
through SETCC, AND/OR/XOR, FREEZE, VECTOR_SHUFFLE, SELECT/VSELECT, and
all-ones/all-zeros BUILD_VECTORs.

I had to revert #188085 earlier this year. This PR resolves the flagged
issue and cleans up suggested approach to avoid that class of potential
errors.
DeltaFile
+209-51llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
+200-0llvm/test/CodeGen/AArch64/vselect-widen-mask-tree.ll
+93-0llvm/test/CodeGen/X86/vselect-widen-mask-tree.ll
+31-34llvm/test/CodeGen/X86/bitcast-int-to-vector-bool-sext.ll
+12-21llvm/test/CodeGen/AArch64/arm64-zip.ll
+25-0llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h
+570-1061 files not shown
+570-1107 files

LLVM/project 56e8f03llvm/lib/Target/Mips MipsISelLowering.cpp MipsRegisterInfo.td, llvm/lib/Target/Mips/AsmParser MipsAsmParser.cpp

[Mips] Introduce ABI-specific register names and accessors (#224284)

To accommodate the P32/P64 ABIs, we need to separate machine registers
from ABI register names and calling-convention roles. The existing
register IDs use OABI names, even when another ABI assigns a different
role to the same physical register.

As a first step, describe OABI, NABI and PABI names with
RegAltNameIndices. Extend TableGen's AsmMatcherEmitter with the opt-in
ShouldEmitMatchRegisterAltNameWithIndex flag, which generates
MatchRegisterAltName(StringRef, unsigned AltIdx). It matches only names
associated with the selected index, allowing the same spelling to
identify different registers across ABIs.

Use the indexed matcher in shared MIPS register lookup for the assembler
and named-register lowering, retaining compatibility aliases and
diagnostics for deprecated spellings.

Add ABI accessors for argument, temporary, saved and return registers,

    [2 lines not shown]
DeltaFile
+101-78llvm/lib/Target/Mips/MipsRegisterInfo.td
+121-18llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.cpp
+28-96llvm/lib/Target/Mips/MipsISelLowering.cpp
+20-97llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
+71-0llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
+44-21llvm/utils/TableGen/AsmMatcherEmitter.cpp
+385-31016 files not shown
+593-34322 files

LLVM/project cdae908llvm/lib/Transforms/Vectorize SLPVectorizer.cpp, llvm/test/Transforms/SLPVectorizer/AArch64 externally-used-copyables.ll

[SLP]Pass operand info and context to TTI cost queries

Feed operand value info, the context instruction, cast context hints,
and the actual select condition predicate to the TTI cost queries, so
target discounts that depend on them (fused fmul/fma pricing, folded
read-modify-write, constant or uniform operands) apply to both scalar
and vector sides of the SLP cost model. Also make the reversed-store
query describe the stored value instead of the pointer, per the
getMemoryOpCost contract.

Assisted-by: Cursor

Reviewers: RKSimon, bababuck

Pull Request: https://github.com/llvm/llvm-project/pull/224931
DeltaFile
+126-71llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
+110-19llvm/test/Transforms/SLPVectorizer/AMDGPU/elementwise-fma-operand1.ll
+26-10llvm/test/Transforms/SLPVectorizer/SystemZ/non-power-2-subvector-extract.ll
+7-6llvm/test/Transforms/SLPVectorizer/AArch64/externally-used-copyables.ll
+8-4llvm/test/Transforms/SLPVectorizer/RISCV/strided-loads-with-external-indices.ll
+5-5llvm/test/Transforms/SLPVectorizer/RISCV/non-commutative-second-arg-only-copyable.ll
+282-1153 files not shown
+289-1229 files

NetBSD/src ixSkalmsys/dev/sbus cgtwelvereg.h cgtwelve.c

   catch up with other drivers:
   - support colour map access via ioctl()
   - support WSDISPLAYIO_FBINFO, _SET_DEPTH
   - add screen blanking support, now that we know how
VersionDeltaFile
1.9+137-11sys/dev/sbus/cgtwelve.c
1.4+2-1sys/dev/sbus/cgtwelvereg.h
+139-122 files

NetBSD/pkgsrc XjMVy69devel/openocd distinfo, devel/openocd/patches patch-src_openocd.c patch-src_helper_command.c

   devel/openocd: fix build with jimtcl 0.84
VersionDeltaFile
1.1+28-0devel/openocd/patches/patch-src_helper_command.c
1.2+16-11devel/openocd/patches/patch-src_openocd.c
1.15+3-2devel/openocd/distinfo
+47-133 files

LLVM/project 244b05dmlir/docs Remarks.md, mlir/include/mlir/IR Remarks.h

[MLIR][Remark] Emit final-policy remarks in deterministic order

RemarkEmittingPolicyFinal stores remarks in a DenseSet whose hash
includes the location pointer, so the output order depends on heap
layout and changes between runs. Twenty runs of mlir/test/Pass/remark-final.mlir gave
fourteen different orders, which is why the test uses CHECK-DAG.

Store remarks in a MapVector keyed by a new RemarkIdentity: location,
remark name, combined category name and kind, the same fields the
DenseSet compared. A repeated identity overwrites the stored remark in
place, so a remark is printed where its identity was first reported with
the content it last had. Root remarks come out in first-report order and
linked children still follow their parent. DenseMapInfo<Remark> is
removed. RemarkIdentity is now the one place that says what the final
policy treats as the same remark.

Behaviour change: order only. The identity is unchanged.

remark-final.mlir switches to ordered CHECK lines. New unit tests cover

    [6 lines not shown]
DeltaFile
+51-28mlir/include/mlir/IR/Remarks.h
+58-4mlir/unittests/IR/RemarkTest.cpp
+20-14mlir/test/Pass/remark-final.mlir
+13-8mlir/docs/Remarks.md
+4-4mlir/lib/IR/Remarks.cpp
+146-585 files

OpenBSD/ports 3TQljpwdevel/libcrossguid Makefile

   libcrossguid is no longer BROKEN on sparc64 in the base-clang era
VersionDeltaFile
1.4+0-2devel/libcrossguid/Makefile
+0-21 files

LLVM/project 72fb4b9llvm/lib/Target/AArch64 AArch64ExpandPseudoInsts.cpp, llvm/test/CodeGen/AArch64 kcfi-bti.ll blr-bti-preserves-operands.mir

AArch64: Don't duplicate the branch's implicit defs in call pseudo expansion

These pseudo expansions started with an implicit LR def and are replaced with a
new instruction with a different LR def. Previously this would copy the old
instruction's operand list, merging with the newly build instruction def list.
Avoid creating a redundant def with inconsistent dead flags. This avoids failing
a future verifier check.

Co-authored-by: Claude (Claude-Opus-4.8) <noreply at anthropic.com>
DeltaFile
+12-12llvm/test/CodeGen/AArch64/expand-blr-rvmarker-pseudo.mir
+8-4llvm/lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp
+2-2llvm/test/CodeGen/AArch64/blr-bti-preserves-operands.mir
+1-1llvm/test/CodeGen/AArch64/kcfi-bti.ll
+23-194 files

OpenBSD/ports PbR4CTScomms/xastir Makefile

   Garbage collect a sparc64 workaround from the base-gcc era

   From Brad Smith

   Thanks!
VersionDeltaFile
1.46+1-4comms/xastir/Makefile
+1-41 files

OpenBSD/ports ifVmpvVaudio/spotify-player Makefile

   spotifu-player is no longer BROKEN on sparc64 in the base-clang era
VersionDeltaFile
1.16+0-2audio/spotify-player/Makefile
+0-21 files

LLVM/project 4c7e907llvm/lib/Target/ARM ARMExpandPseudoInsts.cpp, llvm/test/CodeGen/ARM cmse-vlldm-no-reorder.mir

ARM: Don't duplicate the LR def when expanding call pseudos

Several pseudo expansions in ARMExpandPseudoInsts built a real call and
then copied the pseudo's operands onto the new instruction. Each of these
call opcodes declares LR as an implicit-def, but the original instruction
already had that. The original def may have been marked as dead, so the result
would be a redundant operand with an inconsistent dead flag. This avoids
a failure in a future verifier check.

Co-authored-by: Claude (Claude-Opus-4.8) <noreply at anthropic.com>
DeltaFile
+35-19llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
+1-1llvm/test/CodeGen/ARM/cmse-vlldm-no-reorder.mir
+36-202 files

OpenBSD/ports vwtaFZOconverters/libpst Makefile

   Garbage collect a sparc64 workaround from the base-gcc era

   From Brad Smith

   Thanks!
VersionDeltaFile
1.75+2-2converters/libpst/Makefile
+2-21 files

LLVM/project 4b99afbmlir/include/mlir/IR Remarks.h

[MLIR][NFC] Drop sentinel leftovers from DenseMapInfo<Remark> (#224612)

`DenseMap` no longer uses sentinel keys, and the `getEmptyKey` and
`getTombstoneKey` members of `DenseMapInfo<Remark>` were removed in
#200633 and #201991. Two leftovers stayed behind, the `"<EMPTY_KEY>"`
comparison at the top of `isEqual` and the static dummy `MLIRContext`
that used to back the sentinel remarks.

The comparison is also wrong. A remark literally named `<EMPTY_KEY>`
compares unequal to any other remark, including one with a matching
hash, which breaks the hash and equality contract. This change removes
both leftovers and adds a comment saying what the specialization
compares, which is location, remark name, combined category name and
kind.

No behaviour change for any remark with a normal name. Existing Remark
unit tests and `mlir/test/Pass/remark-final.mlir` cover the
specialization through `RemarkEmittingPolicyFinal`.

Assisted-by: Claude Code (Claude Fable 5.1).
DeltaFile
+2-17mlir/include/mlir/IR/Remarks.h
+2-171 files

FreeBSD/doc b82a2e6website/content/en/cgi cgi-style-responsive.pl

cgi: New design for the FreeBSD website

Implement new design for the cgi scripts, based on c9c518d9db
DeltaFile
+509-0website/content/en/cgi/cgi-style-responsive.pl
+509-01 files

GhostBSD/ports 0767741mail/imap-tools Makefile Makefile.crates

mail/imap-tools: update to 1.13.0
DeltaFile
+449-301mail/imap-tools/distinfo
+223-149mail/imap-tools/Makefile.crates
+1-4mail/imap-tools/Makefile
+673-4543 files

FreeBSD/ports 0767741mail/imap-tools Makefile Makefile.crates

mail/imap-tools: update to 1.13.0
DeltaFile
+449-301mail/imap-tools/distinfo
+223-149mail/imap-tools/Makefile.crates
+1-4mail/imap-tools/Makefile
+673-4543 files

HardenedBSD/ports 0767741mail/imap-tools Makefile Makefile.crates

mail/imap-tools: update to 1.13.0
DeltaFile
+449-301mail/imap-tools/distinfo
+223-149mail/imap-tools/Makefile.crates
+1-4mail/imap-tools/Makefile
+673-4543 files

FreeBSD/ports 0767740net/s3req Makefile Makefile.crates

net/s3req: update to 1.3.1
DeltaFile
+267-151net/s3req/distinfo
+132-74net/s3req/Makefile.crates
+1-2net/s3req/Makefile
+400-2273 files

GhostBSD/ports 0767740net/s3req Makefile Makefile.crates

net/s3req: update to 1.3.1
DeltaFile
+267-151net/s3req/distinfo
+132-74net/s3req/Makefile.crates
+1-2net/s3req/Makefile
+400-2273 files