LLVM/project b82c7fcflang/lib/Evaluate CMakeLists.txt, flang/lib/Lower CMakeLists.txt

[CMake][LLVM] Add PCH infrastructure and LLVMSupport PCH (#176420)

This patch implements PCH support. PCH is enabled by default, unless
noted below, and can be disabled with
-DCMAKE_DISABLE_PRECOMPILE_HEADERS=ON.

* Libraries can define precompiled headers using a newly added
PRECOMPILE_HEADERS keyword. If specified, the listed headers will be
compiled into a pre-compiled header using standard CMake mechanisms.

* Libraries that don't define their own PRECOMPILE_HEADERS but directly
depend on a library or component that defines its own PCH will reuse
that PCH. This reuse is not transitive to prevent excessive use of
unrelated headers. If multiple dependencies provide a reusable PCH, the
first one with the longest dependency chain (stored in the CMake target
property LLVM_PCH_PRIORITY) is used. However, due to CMake limitations,
only PCH from targets that are already defined can be reused; therefore
libraries that should reuse a PCH must be defined later in the CMake
file (=> add_subdirectory order matters).

    [34 lines not shown]
DeltaFile
+94-8llvm/cmake/modules/AddLLVM.cmake
+75-0llvm/include/llvm/Support/pch.h
+48-0llvm/cmake/modules/HandleLLVMOptions.cmake
+11-11flang/lib/Lower/CMakeLists.txt
+9-9flang/lib/Evaluate/CMakeLists.txt
+9-9flang/lib/Semantics/CMakeLists.txt
+246-377 files not shown
+289-6513 files

LLVM/project e7d8484llvm/test/CodeGen/AMDGPU llvm.amdgcn.image.sample.g16.a16.dim.ll, llvm/test/CodeGen/AMDGPU/GlobalISel llvm.amdgcn.image.atomic.dim.a16.ll llvm.amdgcn.image.load.3d.a16.ll

AMDGPU/GlobalISel: Regbanklegalize rules for INTRIN_IMAGE

Regbanklegalize rules for INTRIN_IMAGE loads and stores.
Because of very large number of different type signatures, rule specifies
only function for lowering (waterfall lowering of RsrcIdx operand if needed)
and this function also applies register banks.
DeltaFile
+268-52llvm/test/CodeGen/AMDGPU/GlobalISel/llvm.amdgcn.image.atomic.dim.a16.ll
+128-112llvm/test/CodeGen/AMDGPU/GlobalISel/llvm.amdgcn.image.load.3d.a16.ll
+114-50llvm/test/CodeGen/AMDGPU/GlobalISel/llvm.amdgcn.image.gather4.a16.dim.ll
+78-84llvm/test/CodeGen/AMDGPU/GlobalISel/regbankselect-amdgcn.image.sample.1d.ll
+58-70llvm/test/CodeGen/AMDGPU/GlobalISel/regbankselect-amdgcn.image.load.1d.ll
+86-36llvm/test/CodeGen/AMDGPU/llvm.amdgcn.image.sample.g16.a16.dim.ll
+732-40428 files not shown
+1,085-53234 files

LLVM/project 30cd3d5llvm/lib/Target/SPIRV SPIRVInstructionSelector.cpp

[NFC][SPIRV] Replace uses of `removeFromParent` by `eraseFromParent` (#182330)

`removeFromParent` doesn't deallocate the resources associated with the
`MachineInstruction`.

I was not able to remove all the uses of `removeFromParent` in the file;
but these are the safe ones.

There is an extra advantage with `eraseFromParent`: If we reuse the
deleted instruction the address sanitizer will catch the mistake.
DeltaFile
+3-3llvm/lib/Target/SPIRV/SPIRVInstructionSelector.cpp
+3-31 files

LLVM/project 08895d2mlir/lib/Dialect/XeGPU/IR XeGPUDialect.cpp, mlir/lib/Dialect/XeGPU/Transforms XeGPUSubgroupDistribute.cpp

[MLIR][XeGPU] Distribute `vector.step` with sliced layout (#182010)

DeltaFile
+75-2mlir/lib/Dialect/XeGPU/Transforms/XeGPUSubgroupDistribute.cpp
+57-0mlir/test/Dialect/XeGPU/subgroup-distribute-unit.mlir
+0-2mlir/lib/Dialect/XeGPU/IR/XeGPUDialect.cpp
+132-43 files

FreeBSD/ports 505c537www Makefile, www/access-log-exporter Makefile pkg-descr

www/access-log-exporter: Add new port

access-log-exporter is a Prometheus exporter that receives web server
access logs via syslog and converts them into metrics.

access-log-exporter processes logs from multiple web servers and has
undergone testing with Nginx and Apache HTTP Server 2.4. It supports
flexible metric configuration through presets and provides comprehensive
monitoring capabilities for web traffic analysis.
DeltaFile
+68-0www/access-log-exporter/files/access_log_exporter.in
+41-0www/access-log-exporter/Makefile
+7-0www/access-log-exporter/pkg-descr
+5-0www/access-log-exporter/distinfo
+1-0www/Makefile
+122-05 files

OPNSense/core e19ff66src/opnsense/mvc/app/library/OPNsense/Firewall Rule.php

firewall: fix running into error using well known protocols with "-" in them #9835

The ordering is debatable. For now just make sure that we didn't miss the
chance to look up the original one and accept it as is.
DeltaFile
+1-1src/opnsense/mvc/app/library/OPNsense/Firewall/Rule.php
+1-11 files

LLVM/project 8715094clang/docs/analyzer checkers.rst, clang/include/clang/StaticAnalyzer/Checkers Checkers.td

[analyzer] Remove the alpha.core.FixedAddr checker (#182033)

This checker is way to simplistic. It's also alpha. I don't think it's
worth for anyone keeping it, especially that we have an
`optin.core.FixedAddressDereference` checker that largely supresedes
this alpha checker.

I propose the removal of this checker.
Also relates to:
https://github.com/llvm/llvm-project/pull/181858#discussion_r2818756964
DeltaFile
+0-77clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp
+2-22clang/test/Analysis/ptr-arith.c
+0-13clang/docs/analyzer/checkers.rst
+3-3clang/test/Analysis/concrete-address.c
+0-4clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
+0-1clang/lib/StaticAnalyzer/Checkers/CMakeLists.txt
+5-1201 files not shown
+5-1217 files

LLVM/project 2802626clang/docs/analyzer checkers.rst, clang/include/clang/Basic AttrDocs.td

[analyzer][docs] Further improve the optin.core.FixedAddressDereference docs (#182037)

This addresses the raised points in:

https://github.com/llvm/llvm-project/pull/181858#pullrequestreview-3820145678
DeltaFile
+12-7clang/docs/analyzer/checkers.rst
+1-0clang/include/clang/Basic/AttrDocs.td
+13-72 files

LLVM/project e59bdaeclang/lib/CIR/CodeGen CIRGenItaniumCXXABI.cpp CIRGenFunction.cpp

[CIR] Handle Type::OverflowBehavior in CIR CodeGen

Add handling for the newly introduced Type::OverflowBehavior type class
in CIRGenItaniumCXXABI.cpp and CIRGenFunction.cpp switch statements to
fix -Werror,-Wswitch compilation errors.
DeltaFile
+4-0clang/lib/CIR/CodeGen/CIRGenItaniumCXXABI.cpp
+2-0clang/lib/CIR/CodeGen/CIRGenFunction.cpp
+6-02 files

LLVM/project 351a1bbllvm/lib/Transforms/InstCombine InstCombineCompares.cpp, llvm/test/Transforms/InstCombine fcmp.ll

[InstCombine] Do not perform fcmp -> icmp transformation if denormal inputs may be flushed (#181899)

Commit 4827771234276 added the following transformation:

  fcmp oeq/une (bitcast X), 0.0 --> (and X, SignMaskC) ==/!= 0

This transformation is only valid if denormal inputs are preserved. If
they are flushed, the two comparisons can return different results.

---------

Co-authored-by: Justin Holewinski <jholewinski at nvidia.com>
DeltaFile
+52-0llvm/test/Transforms/InstCombine/fcmp.ll
+3-1llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
+55-12 files

LLVM/project 009068ecompiler-rt/lib/asan/tests asan_noinst_test.cpp

[ASan] Fix test IsPoisonedDoesNotCrashOnMemoryBoundaries for 32-bit targets (#182412)

Make sure there is no address space overflow in the test on 32-bit platforms.

32-bit: __asan_region_is_poisoned(0xffffffff, 1) fails since 0xffffffff + 1 = 0x0
DeltaFile
+3-3compiler-rt/lib/asan/tests/asan_noinst_test.cpp
+3-31 files

FreeBSD/ports c3cb673multimedia/emby-server Makefile distinfo

multimedia/emby-server: update to 4.9.3.0

Changes:        https://github.com/MediaBrowser/Emby.Releases/releases/tag/4.9.1.80
Changes:        https://github.com/MediaBrowser/Emby.Releases/releases/tag/4.9.1.90
Changes:        https://github.com/MediaBrowser/Emby.Releases/releases/tag/4.9.3.0

PR:             293298
DeltaFile
+24-22multimedia/emby-server/Makefile
+9-5multimedia/emby-server/distinfo
+33-272 files

LLVM/project 8524deeclang/lib/CIR/CodeGen CIRGenItaniumCXXABI.cpp

[CIR] Handle Type::OverflowBehavior in CIRGenItaniumCXXABI
DeltaFile
+4-0clang/lib/CIR/CodeGen/CIRGenItaniumCXXABI.cpp
+4-01 files

FreeBSD/ports 43c151fwww/iridium/files patch-chrome_browser_about__flags.cc patch-chrome_browser_chrome__content__browser__client.cc

www/iridium: update to 2026.02.145.1

(cherry picked from commit 41e72458e5611a4cf6a1379f6a6ec01d3d6d8f60)
DeltaFile
+54-54www/iridium/files/patch-chrome_browser_about__flags.cc
+11-11www/iridium/files/patch-chrome_browser_chrome__content__browser__client.cc
+7-7www/iridium/files/patch-components_feature__engagement_public_feature__list.h
+6-6www/iridium/files/patch-chrome_browser_chrome__browser__interface__binders__webui__parts__desktop.cc
+5-5www/iridium/files/patch-chrome_browser_background_glic_glic__status__icon.cc
+4-4www/iridium/files/patch-chrome_common_chrome__features.cc
+87-8716 files not shown
+129-12922 files

FreeBSD/ports 41e7245www/iridium/files patch-chrome_browser_about__flags.cc patch-chrome_browser_chrome__content__browser__client.cc

www/iridium: update to 2026.02.145.1
DeltaFile
+54-54www/iridium/files/patch-chrome_browser_about__flags.cc
+11-11www/iridium/files/patch-chrome_browser_chrome__content__browser__client.cc
+7-7www/iridium/files/patch-components_feature__engagement_public_feature__list.h
+6-6www/iridium/files/patch-chrome_browser_chrome__browser__interface__binders__webui__parts__desktop.cc
+5-5www/iridium/files/patch-chrome_browser_background_glic_glic__status__icon.cc
+4-4www/iridium/files/patch-chrome_common_chrome__features.cc
+87-8716 files not shown
+129-12922 files

LLVM/project 754828amlir/lib/Bindings/Python IRTypes.cpp IRCore.cpp

[MLIR][Python] Remove redundant methods (#182459)

At the moment, Pylance reports errors in `ir.pyi`, saying that some
overloaded methods are invalid. After looking into it, I found that some
of these methods have duplicate signatures and are defined more than
once. This PR is mainly to clean up those methods.
DeltaFile
+0-32mlir/lib/Bindings/Python/IRTypes.cpp
+0-21mlir/lib/Bindings/Python/IRCore.cpp
+0-532 files

OpenBSD/ports qOUOZx9databases/freetds distinfo Makefile

   update to freetds-1.5.13
VersionDeltaFile
1.108+2-2databases/freetds/distinfo
1.174+1-1databases/freetds/Makefile
+3-32 files

FreeBSD/src f1b93fcsys/x86/cpufreq hwpstate_amd.c

hwpstate_amd(4): Fix punctuation in 'desired_performance' knob's description

To be consistent with that of the others.

No functional change.

Sponsored by:   The FreeBSD Foundation
DeltaFile
+1-1sys/x86/cpufreq/hwpstate_amd.c
+1-11 files

FreeBSD/src 80d32a6sys/x86/cpufreq hwpstate_amd.c

hwpstate_amd(4): CPPC: Switch the default to maximum performance

Set controls to maximum performance to avoid regressions now that CPPC
is activated by default and to match what the P-state support does.

Relnotes:       yes
Sponsored by:   The FreeBSD Foundation
Differential Revision:  https://reviews.freebsd.org/D55253
DeltaFile
+10-8sys/x86/cpufreq/hwpstate_amd.c
+10-81 files

FreeBSD/src 953b916sys/kern kern_cpu.c

cpufreq(4): cpufreq_levels_sysctl(): Remove always false NULL test

'sc->levels_buf' is initialized with malloc(M_WAITOK), so can never be
NULL.  Another sysctl handler function (cpufreq_curr_sysctl()) already
relies on that.

MFC after:      2 weeks
Sponsored by:   The FreeBSD Foundation
DeltaFile
+2-6sys/kern/kern_cpu.c
+2-61 files

FreeBSD/src b69a396sys/x86/cpufreq hwpstate_amd.c

hwpstate_amd(4): CPPC: Allow attaching even if CAPABILITY_1 cannot be read

If that MSR cannot be read, we fallback to defaults specified by the
ACPI specification, as we are already doing when the minimum and maximum
values in there look bogus.

Sponsored by:   The FreeBSD Foundation
Differential Revision:  https://reviews.freebsd.org/D55252
DeltaFile
+28-17sys/x86/cpufreq/hwpstate_amd.c
+28-171 files

FreeBSD/src 7f36d7asys/x86/cpufreq hwpstate_amd.c

hwpstate_amd(4): Consistency of cached CPPC_REQUEST value

If writing to the CPPC_REQUEST MSR fails, make sure we do not set the
softc's 'cppc.request' field to the intended new value.  Both
set_cppc_request_cb() and enable_cppc_cb() were changed to this effect.

In case enable_cppc_cb() could not read CPPC_REQUEST, mark that through
a new softc flag, HWPFL_CPPC_REQUEST_NOT_READ, so that we do not keep
and use a wrong value when the content of CPPC_REQUEST is read/written
through sysctl(9) knobs, but instead retry reading the MSR (this is the
purpose of the new get_cppc_request() sub-function).

When setting CPPC_REQUEST has failed, distinguish the case where it
could not be read at all from the case where it could not be written, by
respectively returning EIO and EOPNOTSUPP in these cases.  The previous
return value of EFAULT was confusing as sysctl(3) documents it as
happening if the passed arguments are invalid.

While here, add some herald comment before sysctl_cppc_dump_handler()

    [5 lines not shown]
DeltaFile
+108-31sys/x86/cpufreq/hwpstate_amd.c
+108-311 files

OpenBSD/ports T3l3RWnnet/icinga/web2-module-director distinfo Makefile, net/icinga/web2-module-director/pkg PLIST

   update to icinga-web2-module-director-1.11.6
VersionDeltaFile
1.26+7-1net/icinga/web2-module-director/pkg/PLIST
1.29+2-2net/icinga/web2-module-director/distinfo
1.44+1-2net/icinga/web2-module-director/Makefile
+10-53 files

LLVM/project 9a43071llvm/lib/Target/AArch64 AArch64InstrInfo.cpp

Remove assert
DeltaFile
+0-1llvm/lib/Target/AArch64/AArch64InstrInfo.cpp
+0-11 files

OpenBSD/ports HvkObq6devel/py-pybind11 Makefile distinfo, devel/py-pybind11/pkg PLIST

   update to py3-pybind11-3.0.2
   hook up tests
VersionDeltaFile
1.27+11-2devel/py-pybind11/Makefile
1.21+2-2devel/py-pybind11/distinfo
1.17+2-0devel/py-pybind11/pkg/PLIST
+15-43 files

LLVM/project d0979b7mlir/lib/Dialect/Tosa/IR TosaCanonicalizations.cpp, mlir/test/Dialect/Tosa constant_folding.mlir canonicalize.mlir

[mlir][tosa] Improve broadcasting behaviour in elementwise folders (#181114)

This commit aims to improve elementwise folder behaviour when
broadcasting is involved. In particular, it ensures correctness of
folders when the input operands are dynamic and it is not clear whether
broadcasting is involved.

For example, previously, the tosa.add folder could result in shape
information loss:
```
func.func @test(%arg0: tensor<?x4xi32>) -> tensor<?x4xi32> {
  %one = "tosa.const"() {values = dense<0> : tensor<2x1xi32>} : () -> tensor<2x1xi32>
  %div = tosa.add %one, %arg0 : (tensor<2x1xi32>, tensor<?x4xi32>) -> tensor<?x4xi32>
  return %div : tensor<?x4xi32>
}

$ mlir-opt --canonicalize test.mlir

func.func @test(%arg0: tensor<?x4xi32>) -> tensor<?x4xi32> {

    [15 lines not shown]
DeltaFile
+384-0mlir/test/Dialect/Tosa/constant_folding.mlir
+0-166mlir/test/Dialect/Tosa/canonicalize.mlir
+62-40mlir/lib/Dialect/Tosa/IR/TosaCanonicalizations.cpp
+446-2063 files

FreeBSD/ports eb33f15www/ungoogled-chromium distinfo, www/ungoogled-chromium/files patch-chrome_browser_about__flags.cc patch-chrome_browser_chrome__content__browser__client.cc

www/ungoogled-chromium: update to 145.0.7632.109

ecurity:        https://vuxml.freebsd.org/freebsd/a977cb1c-0d7d-11f1-85c5-a8a1599412c6.html
(cherry picked from commit 4ca73529e4e1a15fc64791d182b02d5cac456cee)
DeltaFile
+54-54www/ungoogled-chromium/files/patch-chrome_browser_about__flags.cc
+11-11www/ungoogled-chromium/files/patch-chrome_browser_chrome__content__browser__client.cc
+7-7www/ungoogled-chromium/distinfo
+7-7www/ungoogled-chromium/files/patch-components_feature__engagement_public_feature__list.h
+6-6www/ungoogled-chromium/files/patch-chrome_browser_chrome__browser__interface__binders__webui__parts__desktop.cc
+5-5www/ungoogled-chromium/files/patch-chrome_browser_background_glic_glic__status__icon.cc
+90-9016 files not shown
+133-13322 files

FreeBSD/ports 4ca7352www/ungoogled-chromium distinfo, www/ungoogled-chromium/files patch-chrome_browser_about__flags.cc patch-chrome_browser_chrome__content__browser__client.cc

www/ungoogled-chromium: update to 145.0.7632.109

ecurity:        https://vuxml.freebsd.org/freebsd/a977cb1c-0d7d-11f1-85c5-a8a1599412c6.html
DeltaFile
+54-54www/ungoogled-chromium/files/patch-chrome_browser_about__flags.cc
+11-11www/ungoogled-chromium/files/patch-chrome_browser_chrome__content__browser__client.cc
+7-7www/ungoogled-chromium/distinfo
+7-7www/ungoogled-chromium/files/patch-components_feature__engagement_public_feature__list.h
+6-6www/ungoogled-chromium/files/patch-chrome_browser_chrome__browser__interface__binders__webui__parts__desktop.cc
+5-5www/ungoogled-chromium/files/patch-chrome_browser_background_glic_glic__status__icon.cc
+90-9016 files not shown
+133-13322 files

OpenBSD/ports t8ahmjlsecurity/emldump Makefile

   take MAINTAINER, and while there, switch HOMEPAGE to https

   OK kn@
VersionDeltaFile
1.17+4-1security/emldump/Makefile
+4-11 files

NetBSD/pkgsrc RKs2HMHdoc CHANGES-2026

   doc: Updated graphics/kvantum to 1.1.6
VersionDeltaFile
1.1281+2-1doc/CHANGES-2026
+2-11 files