LLVM/project ef56bdellvm/lib/CodeGen Rematerializer.cpp

Format
DeltaFile
+1-1llvm/lib/CodeGen/Rematerializer.cpp
+1-11 files

LLVM/project d41b7fflibsycl/docs index.rst, libsycl/include/sycl/__impl queue.hpp property_list.hpp

fix comments

Signed-off-by: Tikhomirova, Kseniya <kseniya.tikhomirova at intel.com>
DeltaFile
+15-23libsycl/include/sycl/__impl/queue.hpp
+7-16libsycl/src/detail/queue_impl.hpp
+2-2libsycl/include/sycl/__impl/detail/default_async_handler.hpp
+1-1libsycl/include/sycl/__impl/property_list.hpp
+1-1libsycl/docs/index.rst
+1-1libsycl/include/sycl/__impl/async_handler.hpp
+27-446 files

LLVM/project 1eeb2ecclang-tools-extra/clang-tidy/bugprone StdNamespaceModificationCheck.cpp, clang-tools-extra/docs ReleaseNotes.rst

[clang-tidy] Handle specialization of user-defined type in `bugprone-std-namespace-modification` (#183984)

Ignore `templateSpecializationType` based on user-define classes too.

Fixes #183752
DeltaFile
+15-0clang-tools-extra/test/clang-tidy/checkers/bugprone/std-namespace-modification.cpp
+7-4clang-tools-extra/clang-tidy/bugprone/StdNamespaceModificationCheck.cpp
+5-0clang-tools-extra/docs/ReleaseNotes.rst
+3-0clang-tools-extra/test/clang-tidy/checkers/Inputs/Headers/system-header-simulation.h
+30-44 files

OPNSense/plugins 1728943misc/theme-flexcolor Makefile, misc/theme-flexcolor/src/opnsense/www/themes/flexcolor/build/color_schemes/black default_scheme.css

misc/theme-flexcolor: manually merge #5095
DeltaFile
+21-12misc/theme-flexcolor/src/opnsense/www/themes/flexcolor/build/css/main.css.shadow
+25-3misc/theme-flexcolor/src/opnsense/www/themes/flexcolor/build/color_schemes/black/default_scheme.css
+24-2misc/theme-flexcolor/src/opnsense/www/themes/flexcolor/build/color_schemes/darklight/default_scheme.css
+24-2misc/theme-flexcolor/src/opnsense/www/themes/flexcolor/build/color_schemes/light/default_scheme.css
+1-1misc/theme-flexcolor/Makefile
+95-205 files

FreeNAS/freenas a927867src/middlewared/middlewared/plugins failover.py

Use plus sign for Nightly version
DeltaFile
+4-1src/middlewared/middlewared/plugins/failover.py
+4-11 files

LLVM/project 33864eflld/COFF Driver.cpp, lld/wasm OutputSections.cpp

[lld] Turn misc copy-assign to move-assign (#184145)

That's an automated patch generated from clang-tidy
performance-use-std-move as a follow-up to #184136
DeltaFile
+1-1lld/COFF/Driver.cpp
+1-1lld/wasm/OutputSections.cpp
+2-22 files

LLVM/project 3b20f09clang/lib/CIR/CodeGen CIRGenBuiltinAArch64.cpp

Tweak NYI msgs
DeltaFile
+8-15clang/lib/CIR/CodeGen/CIRGenBuiltinAArch64.cpp
+8-151 files

LLVM/project 0991e23llvm/include/llvm/CodeGen Rematerializer.h, llvm/lib/CodeGen Rematerializer.cpp

[CodeGen] Add listener support to the rematerializer (NFC)

This change adds support for adding listeners to the
target-independent rematerializer; listeners can catch certain
rematerialization-related events to implement some additional
functionnality on top of what the rematerializer already performs.

This has no user at the moment, but the plan is to have listeners start
being responsible for secondary/optional functionnalities that are at
the moment integrated with the rematerializer itself. Two examples of
that are:
1. rollback support (currently optional), and
2. region tracking (currently mandatory, but not fundamentally necessary
   to the rematerializer).
DeltaFile
+43-0llvm/include/llvm/CodeGen/Rematerializer.h
+7-1llvm/lib/CodeGen/Rematerializer.cpp
+50-12 files

FreeNAS/freenas c552d82src/freenas/usr/local/etc/avahi avahi-daemon.conf, src/freenas/usr/local/etc/dnsmasq.d EXAMPLE

NAS-140071 / 26.0.0-BETA.1 / Remove old files (#18329)

DeltaFile
+0-1,914src/freenas/usr/local/share/python-gdb/libpython.py
+0-21src/freenas/usr/local/etc/avahi/avahi-daemon.conf
+0-1src/freenas/usr/share/collectd/types.db.truenas
+0-0src/freenas/usr/local/etc/dnsmasq.d/EXAMPLE
+0-1,9364 files

FreeNAS/freenas 12f32f0debian/debian postinst rules, src/freenas/debian rules

NAS-140007 / 26.0.0-BETA.1 / Remove Debian branding (#18330)

DeltaFile
+10-0debian/debian/postinst
+0-3src/freenas/debian/rules
+1-1debian/debian/rules
+11-43 files

FreeBSD/ports fd10970graphics/opencv/files patch-contrib_modules_viz_src_widget.cpp

graphics/opencv: Fix build issue with VTK option enabled due to lack of #include <iostream>

Approved by:    portmgr (blanket - fix build)
DeltaFile
+11-0graphics/opencv/files/patch-contrib_modules_viz_src_widget.cpp
+11-01 files

LLVM/project 534d6e8llvm/include/llvm/Analysis BlockFrequencyInfoImpl.h

[Analysis][NFC] Store CallbackVH in vector, not in map (#184323)

This avoid non-trivial move operations whenever the map grows.
DeltaFile
+31-30llvm/include/llvm/Analysis/BlockFrequencyInfoImpl.h
+31-301 files

LLVM/project 97043e5mlir/lib/Dialect/Vector/Transforms VectorDistribute.cpp, mlir/test/Dialect/Vector vector-warp-distribute.mlir

[mlir][Vector][GPU] Distribute expanding `shape_cast` ops (#183830)

The initial implementation of `shape_cast` distribution only focused on
scenarios with collapsing shape casts. Within downstream pipelines such
as IREE, commit 962a9a3 exposes an issue with this implementation, where
the rank-expanding cast ops (stemming from the new `vector.broadcast`
canonicalization) silently fall through to the "collapsing-or-no-op"
logic. This brings about bugs with rank mismatches and firing validation
assertions when distributing rather common reshaping sequences
encountered after CSE/ canonicalization, such as below:
```
  // Example 1: gather op
  %weight = arith.constant dense_resource<__elided__> : tensor<256xi8>
  %c0 = arith.constant 0 : index
  ...
  %expand = vector.shape_cast <...> : vector<1xindex> to vector<1x1xindex>
  %gather = vector.gather %weight[%c0] [%expand], <...>, <...> : memref<256xi8>, vector<1x1xindex>, vector<1x1xi1>, vector<1x1xi8> into vector<1x1xi8>
  %collapse_back = vector.shape_cast %gather : vector<1x1xi8> to vector<1xi8>
  // Example 2: multi-reduction

    [19 lines not shown]
DeltaFile
+68-0mlir/test/Dialect/Vector/vector-warp-distribute.mlir
+45-10mlir/lib/Dialect/Vector/Transforms/VectorDistribute.cpp
+113-102 files

FreeBSD/ports a79ea4deditors/texmaker Makefile pkg-plist, editors/texmaker/files patch-texmaker.pro patch-CMakeLists.txt

editors/texmaker: Update to 6.0.1 [1]

Switch to qt6 [2]
Take maintainership [3]
Add LICENSE_FILE [4]
Rename icon files [5]

PR:             290912
Reported by:    wen@ ([1], [2], [3])
                mew14930xvi at inbox.lv ([4], [5])
Approved by:    maintainer(timeout, > 3 months)
DeltaFile
+0-93editors/texmaker/files/patch-texmaker.pro
+67-0editors/texmaker/files/patch-CMakeLists.txt
+21-12editors/texmaker/Makefile
+9-7editors/texmaker/pkg-plist
+3-3editors/texmaker/distinfo
+2-2editors/texmaker/files/patch-pdfium_third__party_base_logging.h
+102-1171 files not shown
+104-1197 files

FreeBSD/ports f321a2beditors/texstudio distinfo Makefile

editors/texstudio: Update to 4.9.2
DeltaFile
+3-3editors/texstudio/distinfo
+1-2editors/texstudio/Makefile
+4-52 files

FreeBSD/poudriere a49ac64src/share/poudriere common.sh

fix: fs_violation with pkg 2.6.0
DeltaFile
+1-0src/share/poudriere/common.sh
+1-01 files

LLVM/project 6d83be8llvm/test/CodeGen/AMDGPU select-nsz-known-values-to-fmin-fmax.ll

AMDGPU: Add more tests for fp min/max combines

There's some overlap with existing tests which
use the nnan flag. The vector cases get missed here.
DeltaFile
+956-0llvm/test/CodeGen/AMDGPU/select-nsz-known-values-to-fmin-fmax.ll
+956-01 files

FreeBSD/ports 1c56536net/syncthing distinfo Makefile

net/syncthing: Update to 2.0.15

re: https://github.com/syncthing/syncthing/releases/tag/v2.0.15
DeltaFile
+3-3net/syncthing/distinfo
+1-2net/syncthing/Makefile
+4-52 files

HardenedBSD/src c446b8fsbin/devd snd.conf devd.conf.5, sys/dev/sound/pcm sound.c

Merge remote-tracking branch 'origin/hardened/current/master' into hardened/current/cross-dso-cfi
DeltaFile
+7-74usr.sbin/mixer/mixer.c
+4-71usr.sbin/mixer/mixer.8
+10-0sbin/devd/snd.conf
+9-0sys/dev/sound/pcm/sound.c
+3-1sbin/devd/devd.conf.5
+33-1465 files

HardenedBSD/src 654bd3esbin/devd snd.conf devd.conf.5, sys/dev/sound/pcm sound.c

Merge branch 'freebsd/current/main' into hardened/current/master
DeltaFile
+7-74usr.sbin/mixer/mixer.c
+4-71usr.sbin/mixer/mixer.8
+10-0sbin/devd/snd.conf
+9-0sys/dev/sound/pcm/sound.c
+3-1sbin/devd/devd.conf.5
+33-1465 files

OPNSense/plugins 726e2ffmisc/theme-cicada/src/opnsense/www/themes/cicada/assets/stylesheets main.scss, misc/theme-cicada/src/opnsense/www/themes/cicada/build/css opnsense-bootgrid.css main.css

misc: sync with master
DeltaFile
+2-2misc/theme-cicada/src/opnsense/www/themes/cicada/build/css/opnsense-bootgrid.css
+2-2misc/theme-vicuna/src/opnsense/www/themes/vicuna/assets/stylesheets/main.scss
+2-2misc/theme-vicuna/src/opnsense/www/themes/vicuna/build/css/main.css
+2-2misc/theme-vicuna/src/opnsense/www/themes/vicuna/build/css/opnsense-bootgrid.css
+1-1misc/theme-cicada/src/opnsense/www/themes/cicada/build/css/main.css
+1-1misc/theme-cicada/src/opnsense/www/themes/cicada/assets/stylesheets/main.scss
+10-106 files

LLVM/project de69348clang/include/clang/APINotes APINotesReader.h, clang/lib/APINotes APINotesReader.cpp APINotesManager.cpp

[Reland] [APINotes] Refactor APINotesReader to propagate llvm::Error (#184212)

Reland of #183812 with the explicit `std::move` restored to fix buildbot
failures on older compilers.
DeltaFile
+431-404clang/lib/APINotes/APINotesReader.cpp
+11-4clang/lib/APINotes/APINotesManager.cpp
+4-3clang/include/clang/APINotes/APINotesReader.h
+446-4113 files

OPNSense/plugins cd01f84misc/theme-cicada/src/opnsense/www/themes/cicada/assets/stylesheets main.scss, misc/theme-cicada/src/opnsense/www/themes/cicada/build/css opnsense-bootgrid.css main.css

Theme Cicada/Vicuna (#5279)

DeltaFile
+2-2misc/theme-vicuna/src/opnsense/www/themes/vicuna/build/css/main.css
+2-2misc/theme-cicada/src/opnsense/www/themes/cicada/build/css/opnsense-bootgrid.css
+2-2misc/theme-vicuna/src/opnsense/www/themes/vicuna/assets/stylesheets/main.scss
+2-2misc/theme-vicuna/src/opnsense/www/themes/vicuna/build/css/opnsense-bootgrid.css
+1-1misc/theme-cicada/src/opnsense/www/themes/cicada/build/css/main.css
+1-1misc/theme-cicada/src/opnsense/www/themes/cicada/assets/stylesheets/main.scss
+10-106 files

OPNSense/plugins 9d31d4bsysutils/nextcloud-backup pkg-descr Makefile, sysutils/nextcloud-backup/src/opnsense/mvc/app/library/OPNsense/Backup Nextcloud.php

sysutils/nextcloud-backup: sync with master
DeltaFile
+404-61sysutils/nextcloud-backup/src/opnsense/mvc/app/library/OPNsense/Backup/Nextcloud.php
+17-3sysutils/nextcloud-backup/src/opnsense/mvc/app/models/OPNsense/Backup/NextcloudSettings.xml
+8-0sysutils/nextcloud-backup/pkg-descr
+1-1sysutils/nextcloud-backup/Makefile
+430-654 files

NetBSD/pkgsrc-wip c726d9blabwc options.mk Makefile

labwc: add option to build with xwayland
DeltaFile
+11-0labwc/options.mk
+2-3labwc/Makefile
+13-32 files

NetBSD/pkgsrc-wip 8dedb31wlroots options.mk Makefile

wlroots: add option to build with xwayland support
DeltaFile
+13-0wlroots/options.mk
+2-9wlroots/Makefile
+6-0wlroots/buildlink3.mk
+21-93 files

LLVM/project fa6eef8llvm/lib/Analysis InstructionSimplify.cpp, llvm/lib/CodeGen/SelectionDAG DAGCombiner.cpp

Revert "Avoid maxnum(sNaN, x) optimizations / folds (#170181)" (#184125)

This reverts commit ea3fdc5972db7f2d459e543307af05c357f2be26.

Re-enable const-folding for maxnum/minnum in the middle-end, GlobalISel,
and SelectionDAG.

Re-enable optimizations that depend on maxnum/minnum sNaN semantics in
InstCombine and DAGCombiner.

Now that maxnum(x, sNaN) is specified to non-deterministically produce
either NaN or x, these constant-foldings and optimizations are now valid
again according to the newly clarified semantics in #172012 .
DeltaFile
+8-37llvm/test/CodeGen/X86/fminnum.ll
+8-37llvm/test/CodeGen/X86/fmaxnum.ll
+7-32llvm/test/CodeGen/ARM/fminmax-folds.ll
+13-22llvm/test/Transforms/InstSimplify/fminmax-folds.ll
+14-11llvm/lib/Analysis/InstructionSimplify.cpp
+8-7llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+58-1466 files not shown
+66-17412 files

OPNSense/plugins 7baf703sysutils/nextcloud-backup pkg-descr Makefile

sysutils/nextcloud-backup: changelog and version
DeltaFile
+8-0sysutils/nextcloud-backup/pkg-descr
+1-1sysutils/nextcloud-backup/Makefile
+9-12 files

OPNSense/plugins 96073bcwww/caddy/src/opnsense/mvc/app/controllers/OPNsense/Caddy/forms dialogHandle.xml general.xml, www/caddy/src/opnsense/mvc/app/models/OPNsense/Caddy Caddy.php

www/caddy: sync with master
DeltaFile
+26-115www/caddy/src/opnsense/mvc/app/views/OPNsense/Caddy/reverse_proxy.volt
+0-135www/caddy/src/opnsense/scripts/OPNsense/Caddy/caddy_control.py
+40-52www/caddy/src/opnsense/mvc/app/controllers/OPNsense/Caddy/forms/dialogHandle.xml
+45-40www/caddy/src/opnsense/mvc/app/models/OPNsense/Caddy/Caddy.php
+41-41www/caddy/src/opnsense/mvc/app/controllers/OPNsense/Caddy/forms/general.xml
+27-38www/caddy/src/opnsense/scripts/OPNsense/Caddy/caddy_certs.php
+179-42115 files not shown
+316-65221 files

OPNSense/plugins c4758d3net/upnp Makefile

net/upnp: mark this release as development
DeltaFile
+1-1net/upnp/Makefile
+1-11 files