LLVM/project 901faacllvm/include/llvm/Analysis IR2Vec.h, llvm/lib/Analysis IR2Vec.cpp

Fixing review comments
DeltaFile
+3-3llvm/lib/Analysis/IR2Vec.cpp
+3-2llvm/include/llvm/Analysis/IR2Vec.h
+6-52 files

LLVM/project e90d1dcllvm/lib/Support KnownFPClass.cpp, llvm/test/Transforms/Attributor nofpclass.ll

ValueTracking: Detect cases with no underflow for fadd

In the case where both operands have the same sign,
as long as one of the operands is normal or infinity,
the result cannot underflow to a zero.

Pre-committing for #175614
DeltaFile
+50-2llvm/test/Transforms/Attributor/nofpclass.ll
+14-2llvm/lib/Support/KnownFPClass.cpp
+64-42 files

FreeBSD/doc aeb7c01website/content/en/cgi man.cgi

update the manpages for Debian 13.x.y
DeltaFile
+3-3website/content/en/cgi/man.cgi
+3-31 files

LLVM/project 2b9ad86mlir/include/mlir/IR ExtensibleDialect.h, mlir/test/IR dynamic.mlir

[MLIR] Support dynamic traits in `DynamicDialect` (#177735)

Unlike Interfaces, Traits in MLIR are static: they are defined via CRTP
templates and used as base classes of an `Op`, which makes them
difficult to attach to an op dynamically.

However, in IRDL and the Python bindings, we define operations
dynamically through `DynamicDialect`, which means the traditional static
traits cannot be applied to them. Traits are important, for example,
they are how MLIR marks an op as a terminator or a non-terminator.

If `DynamicDialect` does not support traits, then even though we can
define an op with regions, we cannot define new terminators or mark an
op as a non-terminator. This makes `DynamicDialect` very limited in
region-related scenarios.

In this PR, we introduce a `DynamicOpTrait` type that “dynamizes”
`OpTrait`, enabling traits to be attached to ops in `DynamicDialect`.
The key design goal is that existing checks in the MLIR codebase such as

    [9 lines not shown]
DeltaFile
+78-4mlir/include/mlir/IR/ExtensibleDialect.h
+44-0mlir/test/IR/dynamic.mlir
+21-0mlir/test/lib/Dialect/Test/TestDialect.cpp
+143-43 files

LLVM/project 9e01752llvm/lib/Target/RISCV RISCVInstrInfoC.td RISCVInstrInfo.cpp

[𝘀𝗽𝗿] initial version

Created using spr 1.3.8-beta.1
DeltaFile
+19-46llvm/lib/Target/RISCV/RISCVInstrInfoC.td
+16-26llvm/lib/Target/RISCV/RISCVInstrInfo.cpp
+2-26llvm/lib/Target/RISCV/RISCVInstrInfoXwch.td
+1-13llvm/lib/Target/RISCV/RISCVInstrInfoXMips.td
+1-13llvm/lib/Target/RISCV/RISCVInstrInfoZc.td
+39-1245 files

LLVM/project 80d9df6llvm/lib/Transforms/InstCombine InstCombineSelect.cpp, llvm/test/Transforms/InstCombine select-select.ll select.ll

[InstCombine] Combine `select(C0, select(C1, b, a), b)` -> `select(C0&&!C1, a, b)` (#177410)

Fixes #82350

Address cases like:
```
select(C0, select(C1, b, a), b) -> select(C0&!C1, a, b)
select(C0, a, select(C1, b, a)) -> select(C0|!C1, a, b)
```
    
It seem that it generates better code for the real world examples for
the few targets I have checked: https://godbolt.org/z/KeEMd9b8E .
On the most generic case it generates the same assembly code for the
sources and targets for all targets, expect RISC-V, where the targets
seem shoretr and better (less branching):
https://godbolt.org/z/3has1Td5G So I did not experience any regression
on any target in no scenario.

Proofs: https://alive2.llvm.org/ce/z/DoL3zQ
DeltaFile
+154-0llvm/test/Transforms/InstCombine/select-select.ll
+36-12llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp
+6-6llvm/test/Transforms/InstCombine/select.ll
+3-2llvm/test/Transforms/InstCombine/select-of-symmetric-selects.ll
+1-1llvm/test/Transforms/InstCombine/pr63791.ll
+200-215 files

OpenBSD/ports r8l7Dw3sysutils/consul-template distinfo modules.inc

   Update to consul-template-0.41.4.
VersionDeltaFile
1.49+64-62sysutils/consul-template/distinfo
1.24+19-19sysutils/consul-template/modules.inc
1.64+1-1sysutils/consul-template/Makefile
+84-823 files

FreeBSD/ports a96759cgraphics/cairomm pkg-plist

graphics/cairomm: Fix plist when DOCS is off

Reported by:    olgeni
DeltaFile
+1-1graphics/cairomm/pkg-plist
+1-11 files

FreeBSD/ports 347eefbgraphics/tulip Makefile

graphics/tulip: Add WWW

Reported by:    dinoex
DeltaFile
+1-0graphics/tulip/Makefile
+1-01 files

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

Check IsCanonicalizing
DeltaFile
+85-1llvm/test/Transforms/InstCombine/simplify-demanded-fpclass.ll
+2-1llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
+87-22 files

LLVM/project 05c8826llvm/test/Transforms/InstCombine simplify-demanded-fpclass.ll simplify-demanded-fpclass-shufflevector.ll

regenerate tests
DeltaFile
+0-84llvm/test/Transforms/InstCombine/simplify-demanded-fpclass.ll
+4-3llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-shufflevector.ll
+4-3llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-insertelement.ll
+2-1llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-fptrunc.ll
+2-1llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-frexp.ll
+2-1llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-extractelement.ll
+14-933 files not shown
+18-969 files

LLVM/project 12e1c69llvm/lib/Transforms/InstCombine InstCombineSimplifyDemanded.cpp

Move isAggregateType, although this can't break for any existing case
DeltaFile
+4-4llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
+4-41 files

LLVM/project cc98e88llvm/test/Transforms/InstCombine simplify-demanded-fpclass-sqrt.ll simplify-demanded-fpclass-insertelement.ll

InstCombine: Fold known-qnan results to a literal nan

Previously we only considered fcNan to fold to qnan for canonicalizing
results, ignoring the simpler case where we know the nan is already
quiet.
DeltaFile
+3-9llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-sqrt.ll
+3-4llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-insertelement.ll
+3-4llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-frexp.ll
+3-4llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-shufflevector.ll
+2-4llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-fmul.ll
+1-2llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-maximumnum.ll
+15-2712 files not shown
+28-4618 files

LLVM/project 403502fllvm/include/llvm/Support KnownFPClass.h, llvm/lib/Analysis ValueTracking.cpp

InstCombine: Implement SimplifyDemandedFPClass for frexp (#176122)

DeltaFile
+14-34llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-frexp.ll
+47-0llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
+27-0llvm/lib/Support/KnownFPClass.cpp
+3-21llvm/lib/Analysis/ValueTracking.cpp
+4-0llvm/include/llvm/Support/KnownFPClass.h
+95-555 files

LLVM/project aea6a19clang/test/Driver modulemap-allow-subdirectory-search.c, clang/test/InstallAPI/Inputs/MacOSX13.0.sdk SDKSettings.json

[test][NFC] Add more keys to test SDKSettings files (#177538)

Every time DarwinSDKInfo reads a new key out of SDKSettings, a boatload
of test SDKSettings files need to be updated across several repositories
and forks and branches. It’s tedious to be careful to update those with
real values so that the tests are properly regression testing older
SDKs. It’s important to be careful so that the tests are accurate, e.g.
to prevent the scenario where DarwinSDKInfo starts reading a new key out
of SDKSettings and assumes that it’s always available everywhere, when
in reality it was only added a few releases ago and will break with
older SDKs. If the test SDKSettings files continue to be updated ad hoc,
it’s going to be really easy to copy/paste a default value everywhere,
and then clients will see incorrect behaviors with the real SDKs, or
even compiler crashes if the key is unconditionally read. Preemptively
add all of the maybe-possibly-compiler relevant keys to the test
SDKSettings files from the real SDKs so that the test files are an
accurate representation and shouldn't need to be touched in the future.
Where the test SDKSettings have intentionally doctored data, add a
Comments key explaining what is changed from the real SDK, and alter the
SDK name with a tag indicating the change.
DeltaFile
+74-10clang/test/Driver/modulemap-allow-subdirectory-search.c
+15-68clang/test/Sema/Inputs/AppleTVOS15.0.sdk/SDKSettings.json
+39-29clang/test/Modules/sdk-settings-json-dep.m
+0-66clang/test/Sema/Inputs/WatchOS7.0.sdk/SDKSettings.json
+26-27clang/test/InstallAPI/Inputs/MacOSX13.0.sdk/SDKSettings.json
+20-29clang/test/Sema/Inputs/MacOSX11.0.sdk/SDKSettings.json
+174-22929 files not shown
+514-36435 files

HardenedBSD/src 463332csys/amd64/include md_var.h, sys/amd64/vmm vmm_host.h

Merge remote-tracking branch 'origin/hardened/current/master' into hardened/current/cross-dso-cfi
DeltaFile
+3-3tools/tools/nanobsd/defaults.sh
+2-0sys/amd64/vmm/vmm_host.h
+1-0sys/amd64/include/md_var.h
+6-33 files

HardenedBSD/src 89127a0sys/amd64/include md_var.h, sys/amd64/vmm vmm_host.h

Merge branch 'freebsd/current/main' into hardened/current/master
DeltaFile
+3-3tools/tools/nanobsd/defaults.sh
+2-0sys/amd64/vmm/vmm_host.h
+1-0sys/amd64/include/md_var.h
+6-33 files

HardenedBSD/ports c40e944astro/calceph Makefile, mail/msmtp Makefile

Merge branch 'freebsd/main' into hardenedbsd/main
DeltaFile
+152-0net/gorss/files/modules.txt
+47-49net/gorss/distinfo
+22-23net/gorss/Makefile.deps
+11-15mail/msmtp/Makefile
+21-0astro/calceph/Makefile
+16-0net-mgmt/nagios-plugins/files/patch-plugins-root_check_icmp.c
+269-879 files not shown
+311-9915 files

OpenBSD/ports DlfJWdnmultimedia/upplay/patches patch-upplay_pro

   Add patch.
VersionDeltaFile
1.6+11-9multimedia/upplay/patches/patch-upplay_pro
+11-91 files

OpenBSD/ports sgaocQ8multimedia/upplay Makefile distinfo

   Update to upplay 1.9.8.
VersionDeltaFile
1.12+5-6multimedia/upplay/Makefile
1.4+2-2multimedia/upplay/distinfo
+7-82 files

LLVM/project 2503ffbllvm/lib/Target/WebAssembly WebAssemblyTargetMachine.cpp

[WebAssembly] Fix exception handling initialization order in TargetMachine constructor (#177542)

The WebAssemblyTargetMachine constructor had an ordering issue where
initAsmInfo() was called before basicCheckForEHAndSjLj(). This caused
problems in incremental compilation scenarios where:

1. `initAsmInfo()` sets `MCAsmInfo` exception type based on
`Options.ExceptionModel`
2. But `Options.ExceptionModel` might still be None at this point
3. `basicCheckForEHAndSjLj()` runs later and updates
`Options.ExceptionModel`
   based on command-line flags like `-wasm-enable-eh`
4. `MCAsmInfo` retains the incorrect exception type (`None` instead of
`Wasm`)
5. This prevents WebAssembly exception handling passes from running

The fix swaps the order so basicCheckForEHAndSjLj() runs first to
establish the correct exception model before initAsmInfo() configures
MCAsmInfo based on that model.

    [2 lines not shown]
DeltaFile
+1-1llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp
+1-11 files

FreeBSD/ports 635cd36net-mgmt/nagios-plugins Makefile, net-mgmt/nagios-plugins/files patch-plugins-root_check_icmp.c

net-mgmt/nagios-plugins: fix TTL on outgoing packets for IPv6
DeltaFile
+16-0net-mgmt/nagios-plugins/files/patch-plugins-root_check_icmp.c
+1-0net-mgmt/nagios-plugins/Makefile
+17-02 files

HardenedBSD/ports 635cd36net-mgmt/nagios-plugins Makefile, net-mgmt/nagios-plugins/files patch-plugins-root_check_icmp.c

net-mgmt/nagios-plugins: fix TTL on outgoing packets for IPv6
DeltaFile
+16-0net-mgmt/nagios-plugins/files/patch-plugins-root_check_icmp.c
+1-0net-mgmt/nagios-plugins/Makefile
+17-02 files

OpenBSD/src pyEqlCysys/dev/ic bcmgenet.c

   Do the TX ring space check before packet dequeue. The early check
   removes possible bus_dmamap_unload() and dequeue rollback in the output
   path.

   Also set the maximum TX segments count to 20. jmatthew@ pointed that
   existing value of 128 is too big. I checked others and found, that NetBSD
   uses 128 as we do and FreeBSD uses 20, so I used 20. May be this value is
   also too big, but it could be decreased at any moment.

   Tested on RPI4.

   ok jmatthew@
VersionDeltaFile
1.12+10-19sys/dev/ic/bcmgenet.c
+10-191 files

SmartOS/live d9fb126src/node-qlocker package-lock.json

Bump lodash from 4.17.15 to 4.17.23 in /src/node-qlocker

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.23.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.23)

---
updated-dependencies:
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support at github.com>
DeltaFile
+970-576src/node-qlocker/package-lock.json
+970-5761 files

FreeBSD/doc e0c80a8documentation/content/en/articles/nanobsd _index.adoc

articles/nanobsd: Cleanup and typo fixes

Document some missing usage options as well.

Reviewed by:    imp
Pull Request:   https://github.com/freebsd/freebsd-doc/pull/600
DeltaFile
+34-30documentation/content/en/articles/nanobsd/_index.adoc
+34-301 files

HardenedBSD/ports bd4b3cdnet/gorss distinfo Makefile.deps, net/gorss/files modules.txt

net/gorss: update the port to version 0.5

- Convert PLIST_FILES into a static `pkg-plist'
  which is 10 lines long after adding new themes
- Cache generated `files/modules.txt' for Golang
  1.23+ as explained in the commit 024490a280d1
DeltaFile
+152-0net/gorss/files/modules.txt
+47-49net/gorss/distinfo
+22-23net/gorss/Makefile.deps
+4-8net/gorss/Makefile
+10-0net/gorss/pkg-plist
+235-805 files

FreeBSD/ports bd4b3cdnet/gorss distinfo Makefile.deps, net/gorss/files modules.txt

net/gorss: update the port to version 0.5

- Convert PLIST_FILES into a static `pkg-plist'
  which is 10 lines long after adding new themes
- Cache generated `files/modules.txt' for Golang
  1.23+ as explained in the commit 024490a280d1
DeltaFile
+152-0net/gorss/files/modules.txt
+47-49net/gorss/distinfo
+22-23net/gorss/Makefile.deps
+4-8net/gorss/Makefile
+10-0net/gorss/pkg-plist
+235-805 files

FreeBSD/ports efed9adx11/wvkbd distinfo Makefile

x11/wvkbd: update to 0.19.2

Changes:        https://git.sr.ht/~proycon/wvkbd/log/v0.19.2
Reported by:    GitHub (watch releases)
DeltaFile
+3-3x11/wvkbd/distinfo
+1-1x11/wvkbd/Makefile
+4-42 files

HardenedBSD/ports efed9adx11/wvkbd distinfo Makefile

x11/wvkbd: update to 0.19.2

Changes:        https://git.sr.ht/~proycon/wvkbd/log/v0.19.2
Reported by:    GitHub (watch releases)
DeltaFile
+3-3x11/wvkbd/distinfo
+1-1x11/wvkbd/Makefile
+4-42 files