FreeBSD/ports 92c0fa2 — www/galene Makefile distinfo

www/galene: Update to 1.2.1
DeltaFile
+3-3www/galene/distinfo
+1-1www/galene/Makefile
+4-42 files

FreeBSD/ports 3418f5a — net/ovhcloud-cli Makefile distinfo

net/ovhcloud-cli: Update to 0.15.0
DeltaFile
+3-3net/ovhcloud-cli/distinfo
+1-1net/ovhcloud-cli/Makefile
+4-42 files

LLVM/project 14e819f — llvm/include/llvm/Transforms/IPO InstrumentorUtils.h

[Instrumentor] Delete dead code from getAlloca() (#226331)
DeltaFile
+1-3llvm/include/llvm/Transforms/IPO/InstrumentorUtils.h
+1-31 files

LLVM/project 210ecf7 — llvm/lib/Transforms/IPO Instrumentor.cpp

[Instrumentor] Use CreateAllocationSize to compute size of alloca (#226330)

No significant functional change, but the IR might look slightly
different.
DeltaFile
+1-16llvm/lib/Transforms/IPO/Instrumentor.cpp
+1-161 files

LLVM/project 1b4e7f4 — clang/docs ReleaseNotes.md, clang/lib/Sema SemaType.cpp

[Clang] Enforce the same size limits for `vector_size` and `ext_vector_type` (#226375)

Fixes #165458

A `bool` vector declared with `ext_vector_type` isn't lowered as an LLVM
vector in memory: `ConvertTypeForMem` packs it into a single integer
with one bit per element. `BuildExtVectorType` only checked that the
element count fits in 32 bits, though, so a vector of 187,553,262 bools
got through Sema and the first consumer that needed its memory type (the
zero initializer of a tentative definition here) asked
`IntegerType::get` for far more than the 2^23 bits it supports. The
count matters for every element type, not just `bool`, because Sema also
forms bool vectors out of other vectors (`c ? true : false` with a
`char` vector condition), and `vector_size` was no better off with its
limits of 2^32 elements and 2^61 bytes.

Both attributes now go through the same two limits when the type is
built, reusing the existing "vector size too large" error: at most
`llvm::IntegerType::MAX_INT_BITS` (2^23) elements, and at most 2^28

    [2 lines not shown]
DeltaFile
+18-6clang/lib/Sema/SemaType.cpp
+12-0clang/test/Sema/types.c
+9-0clang/test/SemaCXX/vector.cpp
+6-0clang/test/Sema/large-bit-int.c
+4-0clang/docs/ReleaseNotes.md
+49-65 files

FreeBSD/ports a1f3fe8 — devel/pkgconf Makefile distinfo

devel/pkgconf: update to 3.0.7
DeltaFile
+3-3devel/pkgconf/distinfo
+1-1devel/pkgconf/Makefile
+4-42 files

LLVM/project 4db3dce — llvm/lib/Support StringRef.cpp, llvm/unittests/ADT StringRefTest.cpp

[llvm] produce a more consistent estimates of bit width needed when parsing an integer (#205947)

A colleague of mine noticed that `"12535824225335233"` parses in MLIR's
integer attribute parser as a 68-bit integer, even though it is a 53-bit
constant. I traced this back to `StringRef::consumeInteger`'s heuristic
estimate of the bit size. This change replaces that heuristic with a
default 64-bit storage, doubling the storage as more digits are parsed.
This produces a potentially larger over-estimate of the total storage
required, but does so in a less arbitrary manner and reduces the
over-approximation for numbers close to the 64-bit boundary.

Nb., A first iteration of this change tightened that estimate to at most
a 1-bit overapproximation with a lookup-table.

Assisted by Gemini
DeltaFile
+59-0llvm/unittests/ADT/StringRefTest.cpp
+21-5llvm/lib/Support/StringRef.cpp
+80-52 files

FreeBSD/ports ad859ea — mail/mlmmj Makefile distinfo

mail/mlmmj: update to 2.2.0

Notes:
This version deprecates mlmmj-receive-strip
This version deprecates control/replyto

All Changes: https://codeberg.org/mlmmj/mlmmj/releases/tag/RELEASE_2_2_0
DeltaFile
+3-3mail/mlmmj/distinfo
+1-1mail/mlmmj/Makefile
+4-42 files

LLVM/project ae614a9 — clang/lib/Format ContinuationIndenter.cpp, clang/unittests/Format FormatTest.cpp

[clang-format] Preserve enum initializer continuation indentation (#223435)

Fixes #223011

Enum assignment operators are annotated as TT_EnumEqual so they can be
aligned independently in #194154. However, this means
ContinuationIndenter no longer recognizes a wrapped enum `=` as
TT_BinaryOperator. As a result, it may force unnecessary breaks within
the RHS binary expression.

Co-authored-by: Aaron Saw Min Sern <aaron at aaronsms.com>
DeltaFile
+10-0clang/unittests/Format/FormatTest.cpp
+2-2clang/lib/Format/ContinuationIndenter.cpp
+12-22 files

LLVM/project ee3b6b0 — flang/lib/Lower/OpenMP ClauseProcessor.cpp Utils.h, flang/test/Lower/OpenMP declare-mapper.f90 target-map-nested-dtype-allocatable-member.f90

[Flang][OpenMP] Fix broken offload test caused by MapInfoFinalization code movement (#226384)

This change addresses the breakage in
target-map-nested-dtype-allocatable-member.f90 I inadvertently broke it
by removing the excess bit of implicit mapping code in the
MapInfoFinalizaiton pass without correctly addressing it.

This PR tries to do so by allowing mappers to be generated for member
maps such as var1%b, var2%b, which were previously being blocked.

Currently (and conveniently for this patch) we do avoid duplicate maps
in the scenario where we specify something along the lines of:

map(tofrom: var1, var1%b, var2, var2%b)

But that is through the fact that we completely negate var1/var2's
mapper attachment in this scenario, which I do not believe is the
correct behavior. But it's the existing behavior and facilitates this
patch, but it is something I'll see if I can address in a follow up PR

    [2 lines not shown]
DeltaFile
+31-0flang/test/Lower/OpenMP/target-map-nested-dtype-allocatable-member.f90
+8-10flang/lib/Lower/OpenMP/Utils.cpp
+6-10flang/lib/Lower/OpenMP/Utils.h
+1-1flang/test/Lower/OpenMP/declare-mapper.f90
+1-1flang/lib/Lower/OpenMP/ClauseProcessor.cpp
+47-225 files

FreeBSD/ports 4d84480 — lang/python312 Makefile, lang/python312/files patch-Modules__socketmodule.c

lang/python312: fix recvfrom() and sendto() on divert(4) socket

This is backport of upstream 05406b221dc that will be available in 3.13.
DeltaFile
+14-0lang/python312/files/patch-Modules__socketmodule.c
+1-0lang/python312/Makefile
+15-02 files

OpenBSD/src rcNg3QL — usr.sbin/bgpd bgpd.h session.c

   Adjust graceful restart timer handling for multi-AFI/SAFI sessions

   The timer is global for all AFI/SAFI but the first EoR would clear the timer
   which then can result in stale routes. Instead stop clearing the timer and
   use a new flag CAPA_GR_FINISHED. The code no longer clears CAPA_GR_RESTARTING
   on EoR but instead sets CAPA_GR_FINISHED and so when the timer fires the
   loop over all AFI/SAFI pairs will will skip all the ones that only have
   CAPA_GR_RESTARTING set (but no CAPA_GR_FINISHED).

   On top of this improve parse_capabilities() by respecting that only the last
   instance of the capability matters. Also make sure capa_neg_calc() does not
   write anything to capa.neg.grestart if the capability is disabled on our
   end.

   Reported by N0zoM1z0
   OK tb@
VersionDeltaFile
1.14+29-23usr.sbin/bgpd/session_bgp.c
1.542+12-9usr.sbin/bgpd/session.c
1.550+2-1usr.sbin/bgpd/bgpd.h
+43-333 files

LLVM/project e4af48b — llvm/lib/Transforms/Scalar LoopFuse.cpp, llvm/test/Transforms/LoopFusion guard_skip_empty_block.ll

[LoopFusion] Cleanup control flow before Fusion (#226289)

Non-loop successor of loop guard is sometimes modified by JumpThreading
(and potentially some other passes) to jump to a new block, that doesn't
post dominate the exit block of the loop:

   Guard:    br %c, %Preheader, %Skip
   Skip:     br %Merge
   ...
   Exit:     br %Merge
   Merge:    ...

Later on, this block becomes empty, so it can be removed. Its presence
prevents Loop::getLoopGuardBranch() from detecting the loop guard which
results in missed fusion opportunities. SimplifyCFG will run when "Skip"
is still not optimzied, so it cannot resolve this issue.

Assisted by Claude Code
DeltaFile
+389-0llvm/test/Transforms/LoopFusion/guard_skip_empty_block.ll
+87-0llvm/lib/Transforms/Scalar/LoopFuse.cpp
+476-02 files

LLVM/project 3bb794c — clang/include/clang/CIR/Dialect/Builder CIRBaseBuilder.h, clang/include/clang/CIR/Dialect/IR CIROps.td

[CIR] Keep fast-math flags on the CIR builder and address review

Drop the process-wide OpBuilder registry. CIRBaseBuilderTy now holds the
fast-math flags next to the constrained-FP state, the same way IRBuilder
does in classic CodeGen:

- CIRGenFunction::setFastMathFlags derives the flags from FPOptions (only
  `contract` for now) and is called from the constructor and from
  CIRGenFPOptionsRAII, which restores them like classic CodeGen's FMFGuard.
  ConstrainedFPRAII restores them for nested CIRGenFunctions.
- createFAdd/FSub/FMul/FDiv/FRem go through one createFPBinOp helper that
  attaches both fenv and fastmath_flags.
- Scope is limited to the FP binary ops. fneg, cmp/vec.cmp and the FP
  builtins are left for follow-ups.
- The generated lowering passes op.getFastmathFlagsAttr() instead of
  looking the attribute up by name.

Tests cover -ffp-contract=fast-honor-pragmas, nested pragmas with state
restored after each scope, strict FP combined with contract, and a vector
op.
DeltaFile
+61-81clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.cpp
+0-138clang/test/CIR/CodeGen/fp-contract-fast.c
+121-2clang/test/CIR/CodeGen/fp-contract.c
+31-80clang/include/clang/CIR/Dialect/Builder/CIRBaseBuilder.h
+31-69clang/include/clang/CIR/Dialect/IR/CIROps.td
+13-47clang/test/CIR/CodeGenCUDA/fp-contract.cu
+257-41713 files not shown
+327-61719 files

LLVM/project 08af99f — llvm/include/llvm/CodeGen SDPatternMatch.h

[SDPatternMatch] Implement m_True/False using SelectionDAG::isBoolConstant. (#226216)

Better than duplicating existing functionality.
DeltaFile
+13-36llvm/include/llvm/CodeGen/SDPatternMatch.h
+13-361 files

LLVM/project f57595f — llvm/lib/Transforms/Vectorize VPlanVerifier.cpp, llvm/unittests/Transforms/Vectorize VPlanVerifierTest.cpp

[VPlan] Only exempt MaskedCond from cross-block dominance in verifier. (#226512)

Previously the verifier skipped all use-before-def checks for
MaskedCond, including uses in the same block before the definition.
Restrict the exemption to users in blocks not dominated by the 
MaskedCond's block, so same-block use-before-def is still diagnosed.
DeltaFile
+18-0llvm/unittests/Transforms/Vectorize/VPlanVerifierTest.cpp
+5-6llvm/lib/Transforms/Vectorize/VPlanVerifier.cpp
+23-62 files

NetBSD/pkgsrc-wip 359b35d — corrosion TODO distinfo

corrosion: clean-up, imported to pkgsrc
DeltaFile
+0-19corrosion/DESCR
+0-17corrosion/Makefile
+0-7corrosion/COMMIT_MSG
+0-6corrosion/PLIST
+0-5corrosion/distinfo
+0-2corrosion/TODO
+0-561 files not shown
+0-577 files

LLVM/project 8d43d09 — llvm/test/Transforms/SROA vector-conversion.ll byte-conversion-nonintegral.ll

[SROA] Pre-commit tests for byte conversions
DeltaFile
+223-0llvm/test/Transforms/SROA/byte-conversion.ll
+86-0llvm/test/Transforms/SROA/byte-conversion-big-endian.ll
+48-0llvm/test/Transforms/SROA/byte-conversion-nonintegral.ll
+34-0llvm/test/Transforms/SROA/vector-conversion.ll
+391-04 files

LLVM/project 4351bcc — llvm/lib/Transforms/Scalar SROA.cpp, llvm/test/Transforms/SROA byte-conversion-nonintegral.ll vector-conversion.ll

[SROA] Convert byte values
DeltaFile
+100-14llvm/lib/Transforms/Scalar/SROA.cpp
+13-35llvm/test/Transforms/SROA/byte-conversion.ll
+7-21llvm/test/Transforms/SROA/byte-conversion-big-endian.ll
+12-10llvm/test/Transforms/SROA/vector-conversion.ll
+1-3llvm/test/Transforms/SROA/byte-conversion-nonintegral.ll
+133-835 files

pkgng/pkgng a0e4424 — libpkg pkg_jobs_universe.c

universe: free the request dropped from the upgrade chains
DeltaFile
+1-0libpkg/pkg_jobs_universe.c
+1-01 files

LLVM/project d506ee7 — llvm/lib/Transforms/Vectorize SLPVectorizer.cpp, llvm/test/Transforms/SLPVectorizer/RISCV trimmed-node-matching-gather.ll

[SLP]Reuse the trimmed nodes in the perfectly matched gathers of the same user

The gather node, perfectly matching the node of the same user
transformed to gather during throttling, did not treat this node as a
reuse source, and was costed and emitted as a separate buildvector.

Fixes #219030

Reviewers: 

Pull Request: https://github.com/llvm/llvm-project/pull/226582
DeltaFile
+6-11llvm/test/Transforms/SLPVectorizer/RISCV/trimmed-node-matching-gather.ll
+7-0llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
+13-112 files

Linux/linux f14572c — fs/smb/client smb2pdu.h smb2ops.c

Merge tag 'cifs-fixes-7.3-rc5' of https://git.manguebit.org/linux

Pull smb client fixes from Paulo Alcantara:

 - Fix leaked server handles and dropped errors in the SMB2 compound
   create path: a parsing error reported as success, an earlier CREATE
   left open when a later command fails, the cached directory open
   losing the FID needed for cleanup, and SMB2_open() not closing the
   handle after a create-context parse failure

 - Fix out-of-bounds reads when parsing create contexts from a
   malicious server: bound each context by its Next field, parse the
   lease and QFid contexts from their declared offsets and validate
   the POSIX create context length

 - Fix a double credit decrement, and its warning, when a compound
   send fails and triggers a reconnect; found by syzbot

 - Fix a dentry and server handle leak in cifs_atomic_open() when an

    [17 lines not shown]
DeltaFile
+58-13fs/smb/client/transport.c
+42-12fs/smb/client/smb2pdu.c
+39-13fs/smb/client/dir.c
+22-10fs/smb/client/cached_dir.c
+20-8fs/smb/client/smb2ops.c
+7-3fs/smb/client/smb2pdu.h
+188-593 files not shown
+200-669 files

LLVM/project e067d59 — llvm/lib/Transforms/Utils VNCoercion.cpp, llvm/test/Transforms/GVN byte-conversion.ll

[GVN] Don't coerce forwarded byte values through integers
DeltaFile
+26-70llvm/test/Transforms/GVN/byte-conversion.ll
+25-6llvm/lib/Transforms/Utils/VNCoercion.cpp
+51-762 files

pkgng/pkgng 884f6e0 — libpkg pkg_jobs_universe.c

universe: free the packages leaked on error paths

Factor that freeing into free_rpkgs() and use it on every exit.
DeltaFile
+18-16libpkg/pkg_jobs_universe.c
+18-161 files

LLVM/project e76dd51 — llvm/test/Transforms/SLPVectorizer/RISCV trimmed-node-matching-gather.ll

[SLP][NFC]ADd a test with the missed vectorization, NFC



Reviewers: 

Pull Request: https://github.com/llvm/llvm-project/pull/226581
DeltaFile
+50-0llvm/test/Transforms/SLPVectorizer/RISCV/trimmed-node-matching-gather.ll
+50-01 files

FreeBSD/ports 649f5c8 — net/ntopng Makefile distinfo, net/ntopng/files patch-autogen.sh patch-configure.ac.in

net/ntopng: Update to 7.0 branch
DeltaFile
+246-94net/ntopng/pkg-plist
+19-19net/ntopng/files/patch-configure.ac.in
+4-16net/ntopng/files/patch-autogen.sh
+5-5net/ntopng/distinfo
+3-3net/ntopng/Makefile
+277-1375 files

OpenBSD/ports DjNhZrS — devel/dub Makefile, lang/gcc/16 Makefile gcc4.port.mk

   gcc4.port.mk: add support of d lang

   Also migrate all lang/gcc/16,-dlang

   OK: sthen@
VersionDeltaFile
1.12+6-4sysutils/trash-d/Makefile
1.2+8-1lang/gcc/16/gcc4.port.mk
1.8+5-1lang/gdmd/Makefile
1.11+5-1devel/dub/Makefile
1.22+1-2lang/gcc/16/Makefile
+25-95 files

FreeBSD/ports 763bb64 — net/ndpi Makefile distinfo

net/ndpi: Update to latest upstream snapshot
DeltaFile
+3-3net/ndpi/distinfo
+2-2net/ndpi/Makefile
+5-52 files

FreeBSD/ports e7679b7 — Mk bsd.port.mk

Mk: Drop test dependencies from the unified dependency list

TEST_DEPENDS_ALL was part of _UNIFIED_DEPENDS, so test-only
dependencies leaked into all-depends-list, missing,
clean-depends, fetch-recursive, deinstall-depends and the QA
checks, even though they are not needed to build, package or
install a port. It pollutes all the convenience -recursive targets
including poudriere options.

They are still installed by "make test" through the test-depends
target, which is now documented as well.

The motivation for this patch is the fact that many ports now
end up having chromium as part of their dependency list following
the new dependency needed to upgrade py-great-table
(15ce974d8e0560b8038db69598cdf68c52273e68)

Reviewed by:    mat@ (portmgr)
Reported by:    wollman (portmgr)
Differential Revision:  https://reviews.freebsd.org/D60032
DeltaFile
+4-1Mk/bsd.port.mk
+4-11 files

LLVM/project 19d72fd — clang/lib/CodeGen/TargetBuiltins ARM.cpp, clang/lib/Sema SemaARM.cpp

[AArch64] Rename memory hints to avoid clash with arm_acle.h macros (#226432)

Renames the hints in AArch64MemoryHints.h, as HINT_STSHH_KEEP and
HINT_STSHH_STRM are already defined in arm_acle.h.
DeltaFile
+8-8llvm/include/llvm/Support/AArch64MemoryHints.h
+3-3llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
+1-1clang/lib/Sema/SemaARM.cpp
+1-1clang/lib/CodeGen/TargetBuiltins/ARM.cpp
+13-134 files