LLVM/project 97732ddclang/lib/AST/ByteCode Program.cpp Program.h

[clang][bytecode][NFC] Make Program::getNativePointer() const (#169502)

DeltaFile
+1-1clang/lib/AST/ByteCode/Program.cpp
+1-1clang/lib/AST/ByteCode/Program.h
+2-22 files

FreeBSD/ports ef53f66devel/pecl-swoole distinfo Makefile, devel/pecl-swoole/files patch-include_swoole__async.h patch-ext-src_php__swoole__cxx.h

devel/pecl-swoole: update to 6.1.3.
DeltaFile
+0-14devel/pecl-swoole/files/patch-include_swoole__async.h
+0-13devel/pecl-swoole/files/patch-ext-src_php__swoole__cxx.h
+3-3devel/pecl-swoole/distinfo
+2-2devel/pecl-swoole/Makefile
+5-324 files

OPNSense/core 63830c7. plist, src/opnsense/www/js jquery.bootgrid.js opnsense_bootgrid_plugin.js

bootgrid: cleanup old files
DeltaFile
+0-2,241src/opnsense/www/js/jquery.bootgrid.js
+0-625src/opnsense/www/js/opnsense_bootgrid_plugin.js
+0-21src/opnsense/www/js/jquery.bootgrid.LICENSE
+0-3plist
+0-2,8904 files

OPNSense/core 055d377src/opnsense/mvc/tests/app/models/OPNsense/Kea KeaDhcpv4Test.php KeaDhcpv6Test.php

Add a few more small scoped tests for enabled, firewall rules, and interface parsing
DeltaFile
+60-0src/opnsense/mvc/tests/app/models/OPNsense/Kea/KeaDhcpv4Test.php
+59-0src/opnsense/mvc/tests/app/models/OPNsense/Kea/KeaDhcpv6Test.php
+119-02 files

LLVM/project e04c01bllvm/include/llvm/MC MCObjectStreamer.h, llvm/lib/MC MCObjectStreamer.cpp MCELFStreamer.cpp

MC: Remove unneeded parameter `MCAsmBackend *`. NFC
DeltaFile
+2-1llvm/lib/MC/MCObjectStreamer.cpp
+1-1llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp
+1-1llvm/include/llvm/MC/MCObjectStreamer.h
+1-1llvm/lib/MC/MCELFStreamer.cpp
+1-1llvm/lib/MC/MCMachOStreamer.cpp
+1-1llvm/lib/MC/MCWasmStreamer.cpp
+7-62 files not shown
+9-88 files

LLVM/project 9c97f6dllvm/test/CodeGen/AMDGPU expand-waitcnt-profiling.ll

add run line for diff GPU Gen and counter types
DeltaFile
+567-203llvm/test/CodeGen/AMDGPU/expand-waitcnt-profiling.ll
+567-2031 files

LLVM/project 00aca53flang-rt/cmake/modules HandleLibs.cmake

[Flang-rt] Remove COMPILE_ONLY from flang-rt CMake file. (#169534)

COMPILE_ONLY was introduced in cmake 3.27.0. We cannot use this feature,
because LLVM supports cmake 3.20.0.
DeltaFile
+1-3flang-rt/cmake/modules/HandleLibs.cmake
+1-31 files

HardenedBSD/src 925ee1dlib/libc/stdlib strfmon.c, sys/dev/nvme nvme.h

Merge branch 'freebsd/current/main' into hardened/current/master
DeltaFile
+1-1sys/dev/nvme/nvme.h
+1-1lib/libc/stdlib/strfmon.c
+2-22 files

HardenedBSD/src cf26a98contrib/llvm-project/clang/lib/Driver/ToolChains FreeBSD.h, lib/clang freebsd_cc_version.h

Merge branch 'freebsd/14-stable/main' into hardened/14-stable/master
DeltaFile
+5-0contrib/llvm-project/clang/lib/Driver/ToolChains/FreeBSD.h
+1-1lib/clang/freebsd_cc_version.h
+2-0lib/libgcc_s/Makefile
+8-13 files

HardenedBSD/src 6ab30d0contrib/llvm-project/clang/lib/Driver/ToolChains FreeBSD.h, lib/clang freebsd_cc_version.h

Merge branch 'freebsd/15-stable/main' into hardened/15-stable/main
DeltaFile
+5-0contrib/llvm-project/clang/lib/Driver/ToolChains/FreeBSD.h
+1-1lib/clang/freebsd_cc_version.h
+2-0lib/libgcc_s/Makefile
+8-13 files

HardenedBSD/ports 313b21dmath/octave-forge-llms Makefile, x11-toolkits/aquamarine Makefile distinfo

Merge branch 'freebsd/main' into hardenedbsd/main
DeltaFile
+3-3x11-toolkits/aquamarine/Makefile
+3-3x11-toolkits/aquamarine/distinfo
+2-0math/octave-forge-llms/Makefile
+1-1x11-toolkits/aquamarine/pkg-plist
+1-1x11-toolkits/hyprtoolkit/Makefile
+1-1x11-wm/hyprland/Makefile
+11-96 files

OpenBSD/src XtWSjvrsys/net if_rport.c

   white space fixes, no functional change
VersionDeltaFile
1.8+15-15sys/net/if_rport.c
+15-151 files

LLVM/project bbf69d1llvm/lib/Target/AMDGPU AMDGPUMLSchedStrategy.cpp GCNSchedStrategy.cpp, llvm/test/CodeGen/AMDGPU ml-sched-effective-stall.mir

[AMDGPU] Add structural stall heuristic to scheduling strategies

Implements a structural stall heuristic that considers both resource
hazards and latency constraints when selecting instructions from the
pending queue.

- Add getStructuralStallCycles() to GCNSchedStrategy that computes the
number of cycles an instruction must wait due to:
  - Resource conflicts on unbuffered resources (from the SchedModel)
  - Sequence-dependent hazards (from GCNHazardRecognizer)

- Add getHazardWaitStates() to GCNHazardRecognizer that returns the number
of wait states until all hazards for an instruction are resolved,
providing cycle-accurate hazard information for scheduling heuristics.
DeltaFile
+72-0llvm/lib/Target/AMDGPU/AMDGPUMLSchedStrategy.cpp
+40-0llvm/lib/Target/AMDGPU/GCNSchedStrategy.cpp
+5-3llvm/test/CodeGen/AMDGPU/ml-sched-effective-stall.mir
+6-2llvm/lib/Target/AMDGPU/GCNSchedStrategy.h
+6-0llvm/lib/Target/AMDGPU/GCNHazardRecognizer.h
+4-0llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp
+133-51 files not shown
+136-67 files

NetBSD/pkgsrc wNfB6n9doc CHANGES-2025

   Updated devel/py-blessed, devel/py-test-run-parallel
VersionDeltaFile
1.6901+3-1doc/CHANGES-2025
+3-11 files

NetBSD/pkgsrc zIOxS4Fdevel/py-test-run-parallel distinfo Makefile

   py-test-run-parallel: updated to 0.8.0

   0.8.0

   Update license infomation format in pyproject.toml
   Fix typos discovered by codespell
   Add a parallel_threads_limit mark
   Detect gc.collect and mark tests as thread unsafe
   Test on 3.15 and 3.15t on CI
   Deprecated parallel_threads marker when n>1
   Raise helpful error when forever is combined with 0 selected tests
VersionDeltaFile
1.7+4-4devel/py-test-run-parallel/distinfo
1.8+2-2devel/py-test-run-parallel/Makefile
+6-62 files

NetBSD/pkgsrc VRaYoEAdevel/py-blessed distinfo Makefile

   py-blessed: updated to 1.25.0

   1.25
   * bugfix: The "Copy globals" fix in 1.20 got reverted in release in 1.23
VersionDeltaFile
1.7+4-4devel/py-blessed/distinfo
1.12+2-2devel/py-blessed/Makefile
+6-62 files

LLVM/project b639aa2llvm/lib/Target/AMDGPU AMDGPUMLSchedStrategy.cpp AMDGPUMLSchedStrategy.h, llvm/test/CodeGen/AMDGPU ml-sched-effective-stall.mir

[AMDGPU] Add scaffolding for ML focused scheduling strategy

This patch introduces scaffolding for a new machine instruction
scheduling strategy optimized for machine learning workloads.

Enable the ML scheduler automatically when functions have the
"amdgpu-workload-type"="ml" attribute.
DeltaFile
+177-0llvm/lib/Target/AMDGPU/AMDGPUMLSchedStrategy.cpp
+128-0llvm/test/CodeGen/AMDGPU/ml-sched-effective-stall.mir
+36-0llvm/lib/Target/AMDGPU/AMDGPUMLSchedStrategy.h
+25-3llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp
+10-10llvm/lib/Target/AMDGPU/GCNSchedStrategy.cpp
+11-0llvm/lib/Target/AMDGPU/GCNSchedStrategy.h
+387-132 files not shown
+395-138 files

LLVM/project 0e9bceaclang/lib/CodeGen CGCall.cpp CGClass.cpp, libcxxabi/src private_typeinfo.h

Format

Created using spr 1.3.6-beta.1
DeltaFile
+9-14clang/lib/CodeGen/CGCall.cpp
+3-3llvm/lib/Analysis/PtrUseVisitor.cpp
+3-3libcxxabi/src/private_typeinfo.h
+2-2llvm/lib/IR/Constants.cpp
+1-3llvm/include/llvm/CodeGen/MachineInstr.h
+2-1clang/lib/CodeGen/CGClass.cpp
+20-266 files not shown
+30-3312 files

LLVM/project b64b042clang/lib/CodeGen CGCall.cpp CodeGenModule.cpp, libcxxabi/src private_typeinfo.h

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.6-beta.1

[skip ci]
DeltaFile
+9-14clang/lib/CodeGen/CGCall.cpp
+3-3llvm/lib/Analysis/PtrUseVisitor.cpp
+3-3libcxxabi/src/private_typeinfo.h
+1-3llvm/include/llvm/CodeGen/MachineInstr.h
+2-2llvm/lib/IR/Constants.cpp
+2-1clang/lib/CodeGen/CodeGenModule.cpp
+20-266 files not shown
+30-3312 files

LLVM/project 87ad0e3clang/lib/CodeGen CGCall.cpp, libcxxabi/src private_typeinfo.h

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.6-beta.1

[skip ci]
DeltaFile
+9-14clang/lib/CodeGen/CGCall.cpp
+3-3llvm/lib/Analysis/PtrUseVisitor.cpp
+3-3libcxxabi/src/private_typeinfo.h
+1-3llvm/include/llvm/CodeGen/MachineInstr.h
+2-2llvm/lib/IR/Constants.cpp
+1-2llvm/include/llvm/CodeGen/SelectionDAGNodes.h
+19-276 files not shown
+30-3312 files

LLVM/project c3bb9c4clang/lib/CodeGen CGCall.cpp CGClass.cpp, libcxxabi/src private_typeinfo.h

Format

Created using spr 1.3.6-beta.1
DeltaFile
+9-14clang/lib/CodeGen/CGCall.cpp
+3-3libcxxabi/src/private_typeinfo.h
+3-3llvm/lib/Analysis/PtrUseVisitor.cpp
+2-2llvm/lib/IR/Constants.cpp
+1-3llvm/include/llvm/CodeGen/MachineInstr.h
+2-1clang/lib/CodeGen/CGClass.cpp
+20-266 files not shown
+30-3312 files

LLVM/project 73fe86dclang/lib/CodeGen CGCall.cpp, libcxxabi/src private_typeinfo.h

Format

Created using spr 1.3.6-beta.1
DeltaFile
+9-14clang/lib/CodeGen/CGCall.cpp
+3-3libcxxabi/src/private_typeinfo.h
+3-3llvm/lib/Analysis/PtrUseVisitor.cpp
+2-2llvm/lib/IR/Constants.cpp
+1-3llvm/include/llvm/CodeGen/MachineInstr.h
+2-1llvm/lib/AsmParser/LLParser.cpp
+20-266 files not shown
+30-3312 files

LLVM/project 3bf76cdlibcxxabi/src private_typeinfo.h, llvm/include/llvm/CodeGen MachineInstr.h SelectionDAGNodes.h

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.6-beta.1

[skip ci]
DeltaFile
+3-3libcxxabi/src/private_typeinfo.h
+3-3llvm/lib/Analysis/PtrUseVisitor.cpp
+1-3llvm/include/llvm/CodeGen/MachineInstr.h
+2-2llvm/lib/IR/Constants.cpp
+2-1llvm/lib/Transforms/Scalar/SROA.cpp
+1-2llvm/include/llvm/CodeGen/SelectionDAGNodes.h
+12-143 files not shown
+17-179 files

LLVM/project ca694bflibcxxabi/src private_typeinfo.h, llvm/include/llvm/CodeGen MachineInstr.h SelectionDAGNodes.h

Format

Created using spr 1.3.6-beta.1
DeltaFile
+3-3llvm/lib/Analysis/PtrUseVisitor.cpp
+3-3libcxxabi/src/private_typeinfo.h
+1-3llvm/include/llvm/CodeGen/MachineInstr.h
+2-2llvm/lib/IR/Constants.cpp
+1-2llvm/include/llvm/CodeGen/SelectionDAGNodes.h
+2-1llvm/lib/AsmParser/LLParser.cpp
+12-143 files not shown
+17-179 files

LLVM/project 413d653libcxxabi/src private_typeinfo.h, llvm/include/llvm/CodeGen MachineInstr.h SelectionDAGNodes.h

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.6-beta.1

[skip ci]
DeltaFile
+3-3libcxxabi/src/private_typeinfo.h
+3-3llvm/lib/Analysis/PtrUseVisitor.cpp
+1-3llvm/include/llvm/CodeGen/MachineInstr.h
+2-2llvm/lib/IR/Constants.cpp
+1-2llvm/include/llvm/CodeGen/SelectionDAGNodes.h
+2-1llvm/lib/AsmParser/LLParser.cpp
+12-143 files not shown
+17-179 files

LLVM/project 94d9f30libcxxabi/src private_typeinfo.h, llvm/include/llvm/CodeGen MachineInstr.h SelectionDAGNodes.h

Format

Created using spr 1.3.6-beta.1
DeltaFile
+3-3libcxxabi/src/private_typeinfo.h
+3-3llvm/lib/Analysis/PtrUseVisitor.cpp
+1-3llvm/include/llvm/CodeGen/MachineInstr.h
+2-2llvm/lib/IR/Constants.cpp
+2-1llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
+1-2llvm/include/llvm/CodeGen/SelectionDAGNodes.h
+12-143 files not shown
+17-179 files

LLVM/project c97828fllvm/include/llvm/CodeGen MachineInstr.h SelectionDAGNodes.h, llvm/lib/Analysis PtrUseVisitor.cpp

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.6-beta.1

[skip ci]
DeltaFile
+3-3llvm/lib/Analysis/PtrUseVisitor.cpp
+1-3llvm/include/llvm/CodeGen/MachineInstr.h
+2-2llvm/lib/IR/Constants.cpp
+2-1llvm/lib/Transforms/Scalar/SROA.cpp
+1-2llvm/include/llvm/CodeGen/SelectionDAGNodes.h
+2-1llvm/lib/AsmParser/LLParser.cpp
+11-122 files not shown
+14-148 files

LLVM/project 4c5044bllvm/include/llvm/CodeGen MachineInstr.h SelectionDAGNodes.h, llvm/lib/AsmParser LLParser.cpp

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.6-beta.1

[skip ci]
DeltaFile
+2-2llvm/lib/IR/Constants.cpp
+1-3llvm/include/llvm/CodeGen/MachineInstr.h
+2-1llvm/lib/AsmParser/LLParser.cpp
+1-2llvm/include/llvm/CodeGen/SelectionDAGNodes.h
+2-1llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
+1-1llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
+9-106 files

LLVM/project 41fbebfllvm/include/llvm/CodeGen MachineInstr.h SelectionDAGNodes.h, llvm/lib/Analysis PtrUseVisitor.cpp

Format

Created using spr 1.3.6-beta.1
DeltaFile
+3-3llvm/lib/Analysis/PtrUseVisitor.cpp
+2-2llvm/lib/IR/Constants.cpp
+1-3llvm/include/llvm/CodeGen/MachineInstr.h
+2-1llvm/lib/AsmParser/LLParser.cpp
+1-2llvm/include/llvm/CodeGen/SelectionDAGNodes.h
+2-1llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
+11-122 files not shown
+14-148 files

LLVM/project a685dedllvm/include/llvm/CodeGen MachineInstr.h SelectionDAGNodes.h, llvm/lib/AsmParser LLParser.cpp

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.6-beta.1

[skip ci]
DeltaFile
+1-3llvm/include/llvm/CodeGen/MachineInstr.h
+2-2llvm/lib/IR/Constants.cpp
+2-1llvm/lib/AsmParser/LLParser.cpp
+2-1llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
+1-2llvm/include/llvm/CodeGen/SelectionDAGNodes.h
+1-1llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
+9-106 files