LLVM/project 52dfcabmlir/include/mlir/Dialect/AMDGPU/IR AMDGPU.td AMDGPUOps.td, mlir/lib/Dialect/AMDGPU/IR AMDGPUOps.cpp AMDGPUDialect.cpp

[NFC][mlir][AMDGPU] Partition dialect .td into multiple files (#178562)

Follow the style of other dialects by having a distiinct .td file for
each category of thing (type, attribdut, operation, enum) generated for
the AMDGPU dialect.

Nothing has changed, but a lot of things have been copy-pasted.
DeltaFile
+5-1,794mlir/include/mlir/Dialect/AMDGPU/IR/AMDGPU.td
+1,544-0mlir/include/mlir/Dialect/AMDGPU/IR/AMDGPUOps.td
+1,212-0mlir/lib/Dialect/AMDGPU/IR/AMDGPUOps.cpp
+2-1,207mlir/lib/Dialect/AMDGPU/IR/AMDGPUDialect.cpp
+122-0mlir/include/mlir/Dialect/AMDGPU/IR/AMDGPUBase.td
+83-0mlir/include/mlir/Dialect/AMDGPU/IR/AMDGPUEnums.td
+2,968-3,0018 files not shown
+3,171-3,00614 files

FreeBSD/ports 573fbd6portuguese/aspell-pt_PT Makefile pkg-plist

portuguese/aspell-pt_PT: upgrade to 20190329-1-0
DeltaFile
+6-3portuguese/aspell-pt_PT/Makefile
+4-2portuguese/aspell-pt_PT/pkg-plist
+3-2portuguese/aspell-pt_PT/distinfo
+13-73 files

FreeBSD/ports f460781textproc/el-aspell Makefile distinfo

textproc/el-aspell: upgrade to 0.08

Remark: the previous version number, dated 2002, is higher, but
actually for Aspell 5; this one is newer and really for Aspell 6.

Also define the license.
DeltaFile
+7-4textproc/el-aspell/Makefile
+3-2textproc/el-aspell/distinfo
+2-0textproc/el-aspell/pkg-plist
+12-63 files

FreeBSD/ports 183ec63textproc Makefile, textproc/hus-aspell Makefile pkg-plist

textproc/hus-aspell: new port, Aspell dictionary for Huastec
DeltaFile
+13-0textproc/hus-aspell/Makefile
+4-0textproc/hus-aspell/pkg-plist
+3-0textproc/hus-aspell/pkg-descr
+3-0textproc/hus-aspell/distinfo
+1-0textproc/Makefile
+24-05 files

FreeBSD/ports df4649fportuguese/aspell-pt_BR Makefile pkg-plist

portuguese/aspell-pt_BR: upgrade to 20131030-12-0
DeltaFile
+6-3portuguese/aspell-pt_BR/Makefile
+4-2portuguese/aspell-pt_BR/pkg-plist
+3-2portuguese/aspell-pt_BR/distinfo
+13-73 files

FreeBSD/ports e8b204ctextproc Makefile, textproc/mg-aspell Makefile pkg-plist

textproc/mg-aspell: new port, Aspell Malagasy dictionary
DeltaFile
+13-0textproc/mg-aspell/Makefile
+4-0textproc/mg-aspell/pkg-plist
+3-0textproc/mg-aspell/distinfo
+1-0textproc/mg-aspell/pkg-descr
+1-0textproc/Makefile
+22-05 files

LLVM/project 1ae93c6clang/docs LLVMExceptionHandlingCodeGen.rst index.rst

[clang][docs] Add documentation for EH codegen (#176236)

This adds a document describing the implementation of LLVM IR generation
for exceptions and C++ cleanup handling. This will be used as a point of
reference for future CIR exception handling design work.

This document was generated using AI, with some manual modifications
afterwards.
DeltaFile
+251-0clang/docs/LLVMExceptionHandlingCodeGen.rst
+1-0clang/docs/index.rst
+252-02 files

FreeBSD/ports 2df38e4security/zeek distinfo Makefile

security/zeek: security/zeek: Update to 8.0.6

    https://github.com/zeek/zeek/releases/tag/v8.0.6

This release fixes the following potential DoS vulnerability:

 - Zeek's HTTP analyzer can be tricked into interpreting Transfer-Encoding
   or Content-Length headers set in MIME entities within HTTP bodies
   and change the analyzer behavior.

This release fixes the following bugs:

 - A missing state check was added to the finalize_redis hook in
   the Redis analyzer

 - A bug was fixed when attempting to append a vector to itself
   that would cause an infinite loop.

 - A memory leak was fixed that occurred when looping over tables

    [3 lines not shown]
DeltaFile
+3-3security/zeek/distinfo
+1-1security/zeek/Makefile
+4-42 files

FreeBSD/ports 03bfa39security/vuxml/vuln 2026.xml

security/vuxml: Mark security/zeek < 8.0.6 as vulnerable as per:

    https://github.com/zeek/zeek/releases/tag/v8.0.6

This release fixes the following potential DoS vulnerability:

 - Zeek's HTTP analyzer can be tricked into interpreting Transfer-Encoding
   or Content-Length headers set in MIME entities within HTTP bodies
   and change the analyzer behavior.

Reported by:    Tim Wojtulewicz
DeltaFile
+28-0security/vuxml/vuln/2026.xml
+28-01 files

FreeBSD/src 0730a05share/man/man7 tuning.7

tuning.7: document schedulers knobs

Reviewed by:    emaste, olce, ziaee
Sponsored by:   The FreeBSD Foundation
MFC after:      1 week
Differential revision:  https://reviews.freebsd.org/D54951
DeltaFile
+26-0share/man/man7/tuning.7
+26-01 files

LLVM/project 1644e7dmlir/lib/Dialect/Tensor/IR TensorOps.cpp, mlir/test/Dialect/Tensor canonicalize.mlir

[mlir][tensor] Fix return type for ExtractSlice canonicalizer (#178118)

The `OpWithOffsetSizesAndStridesConstantArgumentFolder` pattern for
tensor.extract_slice was incorrectly using
`inferCanonicalRankReducedResultType()` to compute the result type after
folding constant offsets. This function infers a canonical rank
reduction (dropping the first N unit dimensions), which breaks when the
original operation used a non-canonical rank reduction. This change is
similar to the existing correct behavior in
`SubViewReturnTypeCanonicalizer` for `memref.subview`.

For example, extracting `tensor<1x4xf16>` from `tensor<1x1x8x1xf16>` by
dropping dims 0 and 3 would incorrectly produce tensor<4x1xf16>
(canonical: drop dims 0 and 1).

---------

Signed-off-by: Ian Wood <ianwood at u.northwestern.edu>
DeltaFile
+18-2mlir/lib/Dialect/Tensor/IR/TensorOps.cpp
+17-0mlir/test/Dialect/Tensor/canonicalize.mlir
+35-22 files

LLVM/project e3b26cdllvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll amdgcn.bitcast.512bit.ll, polly/lib/External/isl/include/isl typed_cpp.h cpp.h

Rebase

Created using spr 1.3.6-beta.1
DeltaFile
+121,418-138,354llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+43,323-44,825llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+52,760-0polly/lib/External/isl/include/isl/typed_cpp.h
+12,842-18,547llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.960bit.ll
+30,864-0polly/lib/External/isl/include/isl/cpp.h
+14,350-15,880llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.320bit.ll
+275,557-217,6066,053 files not shown
+933,407-652,7406,059 files

LLVM/project de5c8b5llvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll amdgcn.bitcast.512bit.ll, polly/lib/External/isl/include/isl typed_cpp.h cpp.h

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.6-beta.1

[skip ci]
DeltaFile
+121,418-138,354llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+43,323-44,825llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+52,760-0polly/lib/External/isl/include/isl/typed_cpp.h
+12,842-18,547llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.960bit.ll
+30,864-0polly/lib/External/isl/include/isl/cpp.h
+14,350-15,880llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.320bit.ll
+275,557-217,6066,042 files not shown
+933,389-652,7226,048 files

LLVM/project c0d1812llvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll amdgcn.bitcast.512bit.ll, polly/lib/External/isl/include/isl typed_cpp.h cpp.h

Rebase

Created using spr 1.3.6-beta.1
DeltaFile
+121,418-138,354llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+43,323-44,825llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+52,760-0polly/lib/External/isl/include/isl/typed_cpp.h
+12,842-18,547llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.960bit.ll
+30,864-0polly/lib/External/isl/include/isl/cpp.h
+14,350-15,880llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.320bit.ll
+275,557-217,6066,042 files not shown
+933,389-652,7226,048 files

LLVM/project 64e7a02llvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll amdgcn.bitcast.512bit.ll, polly/lib/External/isl/include/isl typed_cpp.h cpp.h

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.6-beta.1

[skip ci]
DeltaFile
+121,418-138,354llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+43,323-44,825llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+52,760-0polly/lib/External/isl/include/isl/typed_cpp.h
+12,842-18,547llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.960bit.ll
+30,864-0polly/lib/External/isl/include/isl/cpp.h
+14,350-15,880llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.320bit.ll
+275,557-217,6066,042 files not shown
+933,388-652,7216,048 files

LLVM/project 2fcb988llvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll amdgcn.bitcast.512bit.ll, polly/lib/External/isl/include/isl typed_cpp.h cpp.h

Rebase

Created using spr 1.3.6-beta.1
DeltaFile
+121,418-138,354llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+43,323-44,825llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+52,760-0polly/lib/External/isl/include/isl/typed_cpp.h
+12,842-18,547llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.960bit.ll
+30,864-0polly/lib/External/isl/include/isl/cpp.h
+14,350-15,880llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.320bit.ll
+275,557-217,6066,042 files not shown
+933,388-652,7216,048 files

LLVM/project 57615fallvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll amdgcn.bitcast.512bit.ll, polly/lib/External/isl/include/isl typed_cpp.h cpp.h

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.6-beta.1

[skip ci]
DeltaFile
+121,418-138,354llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+43,323-44,825llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+52,760-0polly/lib/External/isl/include/isl/typed_cpp.h
+12,842-18,547llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.960bit.ll
+30,864-0polly/lib/External/isl/include/isl/cpp.h
+14,350-15,880llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.320bit.ll
+275,557-217,6066,042 files not shown
+933,388-652,7216,048 files

LLVM/project 66b5c72llvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll amdgcn.bitcast.512bit.ll, polly/lib/External/isl/include/isl typed_cpp.h cpp.h

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.6-beta.1

[skip ci]
DeltaFile
+121,418-138,354llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+43,323-44,825llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+52,760-0polly/lib/External/isl/include/isl/typed_cpp.h
+12,842-18,547llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.960bit.ll
+30,864-0polly/lib/External/isl/include/isl/cpp.h
+14,350-15,880llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.320bit.ll
+275,557-217,6066,041 files not shown
+933,386-652,7196,047 files

LLVM/project 0a99280llvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll amdgcn.bitcast.512bit.ll, polly/lib/External/isl/include/isl typed_cpp.h cpp.h

Rebase

Created using spr 1.3.6-beta.1
DeltaFile
+121,418-138,354llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+43,323-44,825llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+52,760-0polly/lib/External/isl/include/isl/typed_cpp.h
+12,842-18,547llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.960bit.ll
+30,864-0polly/lib/External/isl/include/isl/cpp.h
+14,350-15,880llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.320bit.ll
+275,557-217,6066,042 files not shown
+933,388-652,7216,048 files

LLVM/project 7b3f189llvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll amdgcn.bitcast.512bit.ll, polly/lib/External/isl/include/isl typed_cpp.h cpp.h

Rebase

Created using spr 1.3.6-beta.1
DeltaFile
+121,418-138,354llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+43,323-44,825llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+52,760-0polly/lib/External/isl/include/isl/typed_cpp.h
+12,842-18,547llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.960bit.ll
+30,864-0polly/lib/External/isl/include/isl/cpp.h
+14,350-15,880llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.320bit.ll
+275,557-217,6066,041 files not shown
+933,386-652,7196,047 files

LLVM/project 0893b70llvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll amdgcn.bitcast.512bit.ll, polly/lib/External/isl/include/isl typed_cpp.h cpp.h

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.6-beta.1

[skip ci]
DeltaFile
+121,418-138,354llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+43,323-44,825llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+52,760-0polly/lib/External/isl/include/isl/typed_cpp.h
+12,842-18,547llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.960bit.ll
+30,864-0polly/lib/External/isl/include/isl/cpp.h
+14,350-15,880llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.320bit.ll
+275,557-217,6066,041 files not shown
+933,386-652,7196,047 files

LLVM/project f246187llvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll amdgcn.bitcast.512bit.ll, polly/lib/External/isl/include/isl typed_cpp.h cpp.h

Rebase

Created using spr 1.3.6-beta.1
DeltaFile
+121,418-138,354llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+43,323-44,825llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+52,760-0polly/lib/External/isl/include/isl/typed_cpp.h
+12,842-18,547llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.960bit.ll
+30,864-0polly/lib/External/isl/include/isl/cpp.h
+14,350-15,880llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.320bit.ll
+275,557-217,6063,710 files not shown
+666,909-478,5463,716 files

LLVM/project 32dd186llvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll amdgcn.bitcast.512bit.ll, polly/lib/External/isl/include/isl typed_cpp.h cpp.h

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.6-beta.1

[skip ci]
DeltaFile
+121,418-138,354llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+43,323-44,825llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+52,760-0polly/lib/External/isl/include/isl/typed_cpp.h
+12,842-18,547llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.960bit.ll
+30,864-0polly/lib/External/isl/include/isl/cpp.h
+14,350-15,880llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.320bit.ll
+275,557-217,6063,708 files not shown
+666,905-478,5423,714 files

LLVM/project 06e7210llvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll amdgcn.bitcast.512bit.ll, polly/lib/External/isl/include/isl typed_cpp.h cpp.h

Address review comments

Created using spr 1.3.6-beta.1
DeltaFile
+121,418-138,354llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+43,323-44,825llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+52,760-0polly/lib/External/isl/include/isl/typed_cpp.h
+12,842-18,547llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.960bit.ll
+30,864-0polly/lib/External/isl/include/isl/cpp.h
+14,350-15,880llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.320bit.ll
+275,557-217,6063,708 files not shown
+666,905-478,5423,714 files

LLVM/project dc949e3clang/include/clang/CIR/Dialect/IR CIROps.td, clang/lib/CIR/CodeGen CIRGenBuiltin.cpp

[CIR] Upstream ClearCacheOp support for __builtin___clear_cache (#178260)

Adds CIR `ClearCacheOp` and lowers `__builtin___clear_cache` through CIR
to the LLVM `llvm.clear_cache` intrinsic. Includes codegen + lowering
support and a test.
DeltaFile
+38-0clang/include/clang/CIR/Dialect/IR/CIROps.td
+33-0clang/test/CIR/CodeGen/clear-cache.c
+13-0clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.cpp
+8-1clang/lib/CIR/CodeGen/CIRGenBuiltin.cpp
+92-14 files

OpenBSD/ports TK4dI6iwww/py-yt-dlp-ejs Makefile distinfo, www/py-yt-dlp-ejs/patches patch-pnpm_py

   update to py3-yt_dlp_ejs-0.4.0, fetching the wheel rather than the sdist
   from pypi to simplify things around the generated js files.  ok lraab
VersionDeltaFile
1.3+12-19www/py-yt-dlp-ejs/Makefile
1.2+2-6www/py-yt-dlp-ejs/distinfo
1.2+0-0www/py-yt-dlp-ejs/patches/patch-pnpm_py
+14-253 files

pfSense/pfsense 5b678dftools/conf/pfPorts poudriere_bulk

poudriere_bulk: drop pecl-xdebug, not compatible with PHP 8.5
DeltaFile
+0-1tools/conf/pfPorts/poudriere_bulk
+0-11 files

LLVM/project 9d03f76llvm/include/llvm/Support KnownFPClass.h, llvm/lib/Transforms/InstCombine InstCombineSimplifyDemanded.cpp

InstCombine: Handle multiple use copysign

Handle multiple use copysign in SimplifyDemandedFPClass
DeltaFile
+36-3llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
+7-7llvm/test/Transforms/InstCombine/simplify-demanded-fpclass.ll
+7-0llvm/include/llvm/Support/KnownFPClass.h
+50-103 files

LLVM/project c5f8055llvm/lib/Transforms/InstCombine InstCombineSimplifyDemanded.cpp

Address comments
DeltaFile
+3-3llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
+3-31 files

LLVM/project 8f37df1llvm/lib/Transforms/InstCombine InstCombineSimplifyDemanded.cpp, llvm/test/Transforms/InstCombine simplify-demanded-fpclass.ll

InstCombine: Handle nsz in copysign SimplifyDemandedFPClass

If the only sign bit difference is for 0, fold through the source.
DeltaFile
+31-1llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
+2-4llvm/test/Transforms/InstCombine/simplify-demanded-fpclass.ll
+33-52 files