LLVM/project c7824acllvm/lib/CodeGen/SelectionDAG TargetLowering.cpp

[TargetLowering] Remove stale comment. NFC (#190275)

Missed removing in #188653
DeltaFile
+1-2llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
+1-21 files

LLVM/project 6f68e58offload/plugins-nextgen/amdgpu/src rtl.cpp

offload: Parse triple using to identify amdgcn-amd-amdhsa (#190319)

Avoid hardcoding the exact triple.
DeltaFile
+15-4offload/plugins-nextgen/amdgpu/src/rtl.cpp
+15-41 files

OpenZFS/src 33ed68fcmd ztest.c, lib/libzfs libzfs_pool.c

zpool create: report which device caused failure 

When zpool create fails because a vdev is already in use, the
error message now identifies the problematic device and the pool
it belongs to, e.g.:

  cannot create 'tank': device '/dev/sdb1' is part of
  active pool 'rpool'

Implementation follows the ZPOOL_CONFIG_LOAD_INFO pattern used
by zpool import:

  - Add spa_create_info to spa_t to capture error info during
    vdev_label_init(), before vdev_close() resets vdev state
  - When vdev_inuse() detects a conflict, read the on-disk
    label to extract the pool name and store it with the
    device path
  - Return the info wrapped under ZPOOL_CONFIG_CREATE_INFO
    through the ioctl zc_nvlist_dst to userspace

    [10 lines not shown]
DeltaFile
+103-0tests/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_errinfo_001_neg.ksh
+75-24lib/libzfs/libzfs_pool.c
+22-1module/zfs/vdev_label.c
+11-1module/zfs/zfs_ioctl.c
+6-5cmd/ztest.c
+9-1module/zfs/spa.c
+226-325 files not shown
+233-3411 files

LLVM/project 77e32a7flang/lib/Semantics check-cuda.cpp, flang/test/Semantics cuf09.cuf

[flang][cuda] Avoid false semantic error on unified array component (#190389)
DeltaFile
+30-0flang/lib/Semantics/check-cuda.cpp
+21-3flang/test/Semantics/cuf09.cuf
+51-32 files

FreeNAS/freenas 88486f0src/middlewared/middlewared/utils filter_list.py

Fix test regressions
DeltaFile
+28-4src/middlewared/middlewared/utils/filter_list.py
+28-41 files

FreeNAS/freenas 10c5615src/middlewared/middlewared/api/base/validators options.py, src/middlewared/middlewared/plugins/pool_ dataset_query_utils.py

Address some review
DeltaFile
+14-10src/middlewared/middlewared/plugins/pool_/dataset_query_utils.py
+4-1src/middlewared/middlewared/api/base/validators/options.py
+18-112 files

FreeNAS/freenas ae747dbsrc/middlewared/middlewared/api/base/validators options.py filters.py, src/middlewared/middlewared/plugins/datastore read.py

Replace pure-python filter_list

This commit replaces the pure-python implementation of filter_list
with the version provided by the truenas/truenas_pyos repo
(truenas_pyfilter). The overall new workflow for this is:

1. convert the filters / options to their respective objects from
   truenas_pyfilter (compile_filters, compile_options).

2. use the filters / options to either match (if there's single item)
   or tnfilter (if there is more than one).

Output is same so this is mostly a drop-in replacement; however,
in some places in our codebase we keep copies of pre-compiled filters
and options because they do not change. The filter_list util is now
replaced with what is largely a thin wrapper around the extension.

API validation also now wraps around validation provided by the
extension.
DeltaFile
+99-361src/middlewared/middlewared/utils/filter_list.py
+23-52src/middlewared/middlewared/plugins/pool_/dataset_query_utils.py
+10-61src/middlewared/middlewared/api/base/validators/options.py
+3-65src/middlewared/middlewared/api/base/validators/filters.py
+13-8src/middlewared/middlewared/plugins/datastore/read.py
+14-5src/middlewared/middlewared/plugins/smb_/util_smbconf.py
+162-5523 files not shown
+188-5619 files

LLVM/project 1cc0aacclang-tools-extra/clang-doc Representation.cpp Representation.h, clang-tools-extra/clang-doc/tool ClangDocMain.cpp

[clang-doc] Merge data into persistent memory

We have a need for persistent memory for the final info. Since each
group processes a single USR at a time, every USR is only ever processed by
a single thread from the thread pool. This means that we can keep per
thread persistent storage for all the info. There is significant
duplicated data between all the serialized records, so we can just merge
the final/unique items into the persistent arena, and clear out the
scratch/transient arena as we process each record in the bitcode.

The patch adds some APIs to help with managing the data, merging, and
allocation of data in the correct arena. It also safely merges and deep
copies data from the transient arenas into persistent storage that is
never reset until the program completes.

This patch reduces memory by another % over the previous patches,
bringing the total savings over the baseline to 57%. Runtime performance
and benchmarks stay mostly flat with modest improvements.


    [31 lines not shown]
DeltaFile
+134-10clang-tools-extra/clang-doc/Representation.cpp
+25-25clang-tools-extra/clang-doc/tool/ClangDocMain.cpp
+7-0clang-tools-extra/clang-doc/Representation.h
+166-353 files

LLVM/project 479a4ccclang-tools-extra/clang-doc BitcodeReader.cpp Serialize.cpp, clang-tools-extra/unittests/clang-doc SerializeTest.cpp MergeTest.cpp

[clang-doc] Move Info types into arenas

Info types used to own significant chunks of data. As we move these into
local arenas, these types must be trivially destructible, to avoid
leaking resources when the arena is reset. Unfortunaly, there isn't a
good way to transition all the data types one at a time, since most of
them are tied together in some way. Further, as they're now allocated in
the arenas, they often cannot be treated the same way, and even the
aliases and interfaces put in pLace to simplify the transition cannot
cover the full range of changes required.

We also use some SFINAE tricks to avoid adding boilerplate for helper
APIs, we'd otherwise ahve to support

Though it introduces some additional churn, we also try to keep tests
from using arena allocation as much as possible, since this is not
required to test the implementation of the library. As much of the test
code needed to be rewritten anyway, we take the opportunity to
transition now.

    [41 lines not shown]
DeltaFile
+419-187clang-tools-extra/clang-doc/BitcodeReader.cpp
+246-189clang-tools-extra/unittests/clang-doc/SerializeTest.cpp
+196-129clang-tools-extra/unittests/clang-doc/MergeTest.cpp
+176-80clang-tools-extra/unittests/clang-doc/ClangDocTest.cpp
+137-75clang-tools-extra/clang-doc/Serialize.cpp
+71-41clang-tools-extra/unittests/clang-doc/YAMLGeneratorTest.cpp
+1,245-70114 files not shown
+1,649-94320 files

LLVM/project 4e7cddfclang-tools-extra/clang-doc Generators.h MDMustacheGenerator.cpp, clang-tools-extra/clang-doc/benchmarks ClangDocBenchmark.cpp

[clang-doc] Move non-arena allocated types off the OwnedPtr alias

Some types should not be using this alias, which was over applied to
APIs that wont participate in arena style allocation. This patch
restores them to their correct spelling.
DeltaFile
+7-7clang-tools-extra/clang-doc/Generators.h
+4-4clang-tools-extra/clang-doc/MDMustacheGenerator.cpp
+4-4clang-tools-extra/clang-doc/ClangDoc.cpp
+3-3clang-tools-extra/clang-doc/HTMLGenerator.cpp
+2-2clang-tools-extra/clang-doc/benchmarks/ClangDocBenchmark.cpp
+1-1clang-tools-extra/clang-doc/Generators.cpp
+21-211 files not shown
+22-227 files

LLVM/project c5271efclang-tools-extra/clang-doc Representation.h

[clang-doc] Enforce arena allocated types are trivially destructible

We can enforce at compile-time that the types we want to place in the
arenas are always safe to allocate there.
DeltaFile
+26-0clang-tools-extra/clang-doc/Representation.h
+26-01 files

LLVM/project ddf6eebclang-tools-extra/clang-doc BitcodeReader.cpp BitcodeReader.h

[clang-doc] Simplify parsing and reading bitcode blocks

Much of the logic int he readBlock implementation is boilerplate, and is
repeated for each implementation/specialization. This will become much
worse as we introduce new custom block reading logic as we migrate
towards arena allocation. In preparation for that, we're introducing the
change in logic now, which should make later refactoring much more
straightforward.
DeltaFile
+103-120clang-tools-extra/clang-doc/BitcodeReader.cpp
+5-0clang-tools-extra/clang-doc/BitcodeReader.h
+1-1clang-tools-extra/clang-doc/Representation.h
+109-1213 files

LLVM/project c1cfa88clang-tools-extra/clang-doc Representation.cpp

[clang-doc] Consolidate merging logic

As we migrate things in the arena, this logic may get more complex.
Factoring it out now, will give clear extension points to make this
easier to manage.
DeltaFile
+10-9clang-tools-extra/clang-doc/Representation.cpp
+10-91 files

LLVM/project 7805b6cclang-tools-extra/clang-doc BitcodeReader.cpp Serialize.cpp, clang-tools-extra/unittests/clang-doc MDGeneratorTest.cpp BitcodeTest.cpp

[clang-doc] Make CommentInfo arena allocated

This patch move the CommentInfo type into the arena. It updates block
handling to collect child info types and serialize the array in one
shot.

We also clean up the test code to avoid using the arenas in the tests.
This has the upside of making the test more hermetic, and avoids churn
in the related code as the allocation API interfaces evolve.

Performance and memory usage regress slightly. This is somewhat expected
as we do not yet aggressively release short term memory during merge
operations. Future patches will reclaim this overhead.

| Metric | Baseline | Prev | This | Culm% | Seq% |
| :--- | :--- | :--- | :--- | :--- | :--- |
| Time | 920.5s | 998.5s | 1010.5s | +9.8% | +1.2% |
| Memory | 86.0G | 43.8G | 47.8G | -44.4% | +9.2% |


    [26 lines not shown]
DeltaFile
+124-94clang-tools-extra/unittests/clang-doc/MDGeneratorTest.cpp
+70-111clang-tools-extra/unittests/clang-doc/BitcodeTest.cpp
+66-103clang-tools-extra/unittests/clang-doc/YAMLGeneratorTest.cpp
+15-30clang-tools-extra/unittests/clang-doc/MergeTest.cpp
+17-9clang-tools-extra/clang-doc/BitcodeReader.cpp
+15-5clang-tools-extra/clang-doc/Serialize.cpp
+307-3526 files not shown
+345-37012 files

LLVM/project 9f29f54clang-tools-extra/clang-doc Representation.cpp Representation.h

[clang-doc] Support deep copy between arenas for merging

Upcoming changes to the merge step will necessitate that we clear the
transient arenas and merge new items into the persistent arena. However
there are some challenges with that, as the existing types typically
don't want to be copied. We introduce some new APIs to simplify that
task and ensure we don't accidentally leak memory.

On the performance front, we reclaim about 2% of the overhead, bringing
the cumulative overhead from the series of patches down to about 7% over
the baseline.

| Metric | Baseline | Prev | This | Culm% | Seq% |
| :--- | :--- | :--- | :--- | :--- | :--- |
| Time | 920.5s | 1014.5s | 991.5s | +7.7% | -2.3% |
| Memory | 86.0G | 39.9G | 40.0G | -53.4% | +0.3% |

| Benchmark | Baseline | Prev | This | Culm% | Seq% |
| :--- | :--- | :--- | :--- | :--- | :--- |

    [28 lines not shown]
DeltaFile
+140-21clang-tools-extra/clang-doc/Representation.cpp
+30-0clang-tools-extra/clang-doc/Representation.h
+170-212 files

FreeNAS/freenas 8eb262bsrc/middlewared/middlewared/plugins/filesystem_ acl.py utils.py, tests/unit test_perm_lock_registry.py

Address review
DeltaFile
+89-0tests/unit/test_perm_lock_registry.py
+42-20src/middlewared/middlewared/plugins/filesystem_/acl.py
+7-3src/middlewared/middlewared/plugins/filesystem_/utils.py
+138-233 files

LLVM/project 9471fabclang/lib/CodeGen CGCall.cpp, clang/test/CodeGen struct-passing.c

[clang] Fix issues with const/pure on varargs function. (#190252)

There are two related issues here. On the declaration/definition side,
we need to make sure the markings are conservative. Then on the caller
side, we need to make sure we don't access parameters that don't exist.

Fixes #187535.
DeltaFile
+34-5clang/test/CodeGen/struct-passing.c
+13-1clang/lib/CodeGen/CGCall.cpp
+47-62 files

LLVM/project c061f33llvm/test/CodeGen/ARM cmp-to-cmn.ll

[ARM] Add new test that will demonstrate the cmn node in the ARM backend (NFC) (#179282)

No code changes yet, but this is going to change once the cmn node lands
in the backend.
DeltaFile
+478-0llvm/test/CodeGen/ARM/cmp-to-cmn.ll
+478-01 files

FreeBSD/ports d04d23abiology/py-PySCeS Makefile, math/py-cvxpy Makefile

python.mk: retire ${PYNUMPY}

With both math/py-numpy (2) and math/py-numpy1, the variable stopped
making sense. Also remove the upper version bound.
DeltaFile
+3-3math/py-yt/Makefile
+2-2science/cantera/Makefile
+2-2biology/py-PySCeS/Makefile
+2-2science/gnudatalanguage/Makefile
+2-2math/py-cvxpy/Makefile
+2-2math/py-uncertainties/Makefile
+13-13464 files not shown
+596-599470 files

FreeBSD/ports 1c9a29egraphics/nvidia-drm-kmod Makefile.common

graphics/nvidia-drm-*-kmod*: Fix build for 13.5, 14.3 and 15.0

Latest upgrade to 595.58.03 caused build failure as of
requirements for a stub function pm_vt_switch_required().

The commit introduced it is not MFC'ed to 13.5-RELEASE,
stable/13, 14.3-RELEASE and 15.0-RELEASE and unlikely
to be done as it's not a security fix, more, stable/13 is going
to be EoL'ed in 1 month.

As this function, defined in sys/compat/linuxkpi/common/linux/pm.h,
is still a blank, stub function even on main, drop the offending line
for affected versions, keeping as-is for versions which has it.

No PORTREVISION bumps, as this is build fix.

PR:             294096
Reported by:    alt2600 at icloud.com
Reviewed by:    ashafer

    [4 lines not shown]
DeltaFile
+4-0graphics/nvidia-drm-kmod/Makefile.common
+4-01 files

LLVM/project 88dabccclang/lib/Driver Driver.cpp

clang: Remove dead null toolchain check
DeltaFile
+0-2clang/lib/Driver/Driver.cpp
+0-21 files

FreeBSD/ports a92d927graphics/nvidia-drm-kmod Makefile.common

graphics/nvidia-drm-*-kmod*: Fix build for 13.5, 14.3 and 15.0

Latest upgrade to 595.58.03 caused build failure as of
requirements for a stub function pm_vt_switch_required().

The commit introduced it is not MFC'ed to 13.5-RELEASE,
stable/13, 14.3-RELEASE and 15.0-RELEASE and unlikely
to be done as it's not a security fix, more, stable/13 is going
to be EoL'ed in 1 month.

As this function, defined in sys/compat/linuxkpi/common/linux/pm.h,
is still a blank, stub function even on main, drop the offending line
for affected versions, keeping as-is for versions which has it.

No PORTREVISION bumps, as this is build fix.

PR:             294096
Reported by:    alt2600 at icloud.com
Reviewed by:    ashafer

    [2 lines not shown]
DeltaFile
+4-0graphics/nvidia-drm-kmod/Makefile.common
+4-01 files

LLVM/project 0732841lldb/packages/Python/lldbsuite/test/make Makefile.rules

Revert "[lldb/test] Codesign executables built with custom Makefile rules" (#190398)

Reverts llvm/llvm-project#189902 because this seems to cause hangs.
DeltaFile
+0-7lldb/packages/Python/lldbsuite/test/make/Makefile.rules
+0-71 files

LLVM/project 1bbcc5elldb/source/Plugins/Process/MacOSX-Kernel CommunicationKDP.cpp

[lldb] Fix the macOS builld after address size was removed from Stream (#190399)

This fixes the macOS build after #190375.
DeltaFile
+15-30lldb/source/Plugins/Process/MacOSX-Kernel/CommunicationKDP.cpp
+15-301 files

FreeNAS/freenas 5467799src/middlewared/middlewared/plugins acme_protocol.py, src/middlewared/middlewared/plugins/acme_dns_authenticator crud.py

NAS-140507 / 27.0.0-BETA.1 / Convert acme related services to typesafe implementation (#18619)
DeltaFile
+0-362src/middlewared/middlewared/plugins/acme_protocol.py
+141-0src/middlewared/middlewared/plugins/acme_registration/crud.py
+110-0src/middlewared/middlewared/plugins/acme_protocol/issue_cert.py
+108-0src/middlewared/middlewared/plugins/acme_dns_authenticator/authenticators/route53.py
+0-105src/middlewared/middlewared/plugins/acme_protocol_/issue_cert.py
+104-0src/middlewared/middlewared/plugins/acme_dns_authenticator/crud.py
+463-46733 files not shown
+1,142-1,02339 files

LLVM/project c34c044libc/src/stdio/printf_core float_dec_converter.h float_dec_converter_limited.h, libc/test/shared shared_rpc_test.cpp shared_str_to_num_test.cpp

[libc] Add str_to_* and rpc_* shared tests. (#190351)

Also fix several things for LIBC_TYPES_LONG_DOUBLE_IS_DOUBLE_DOUBLE to
make them build.
DeltaFile
+69-0libc/test/shared/shared_rpc_test.cpp
+56-0libc/test/shared/shared_str_to_num_test.cpp
+26-0libc/test/shared/CMakeLists.txt
+18-3libc/src/stdio/printf_core/float_dec_converter.h
+9-2libc/src/stdio/printf_core/float_dec_converter_limited.h
+10-1libc/src/stdio/printf_core/float_hex_converter.h
+188-66 files not shown
+215-1012 files

LLVM/project 1deab59clang-tools-extra/clang-doc Representation.cpp Representation.h, clang-tools-extra/unittests/clang-doc MergeTest.cpp ClangDocTest.cpp

[clang-doc] Migrate Namespaces to arena allocation (#190048)

This patch allocates the NamespaceInfo types in the local arenas, and
adapts the merging logic for the new list type and its children.
Memory use and performance improve slightly. Micro-benchmarks show a
regression in merge operations due to the more complex list operations.

 ## Build Clang-Doc Documentation
| Metric | Baseline | Prev | This | Culm% | Seq% |
| :--- | :--- | :--- | :--- | :--- | :--- |
| Time | 920.5s | 1009.2s | 1002.4s | +8.9% | -0.7% |
| Memory | 86.0G | 43.2G | 43.9G | -49.0% | +1.6% |

 ## Microbenchmarks (Filtered for >1% Delta)
| Benchmark | Baseline | Prev | This | Culm% | Seq% |
| :--- | :--- | :--- | :--- | :--- | :--- |
| BM_BitcodeReader_Scale/10 | 67.9us | 69.7us | 69.3us | +1.9% | -0.7% |
| BM_BitcodeReader_Scale/10000 | 70.5ms | 22.3ms | 24.8ms | -64.8% |
+11.4% |

    [29 lines not shown]
DeltaFile
+18-1clang-tools-extra/clang-doc/Representation.cpp
+8-8clang-tools-extra/unittests/clang-doc/MergeTest.cpp
+8-2clang-tools-extra/clang-doc/Representation.h
+7-3clang-tools-extra/unittests/clang-doc/ClangDocTest.cpp
+6-3clang-tools-extra/clang-doc/JSONGenerator.cpp
+4-4clang-tools-extra/unittests/clang-doc/SerializeTest.cpp
+51-217 files not shown
+75-3713 files

FreeNAS/freenas abc3ad1src/middlewared/middlewared/api/base/validators options.py, src/middlewared/middlewared/plugins/pool_ dataset_query_utils.py

Address some review
DeltaFile
+14-10src/middlewared/middlewared/plugins/pool_/dataset_query_utils.py
+4-1src/middlewared/middlewared/api/base/validators/options.py
+18-112 files

LLVM/project 1003a8dlldb/packages/Python/lldbsuite/test/make Makefile.rules

Revert "[lldb/test] Codesign executables built with custom Makefile rules (#1…"

This reverts commit 478a6abc0ceea812c9486d13fda4afbe876c670f.
DeltaFile
+0-7lldb/packages/Python/lldbsuite/test/make/Makefile.rules
+0-71 files

FreeNAS/freenas 6dd449csrc/middlewared/debian control, src/middlewared/middlewared/alert/service snmp_trap.py

NAS-140368 / 26.0.0-BETA.2 / Replace pysnmp with truenas_pysnmp C extension for SNMP traps (by ixhamza) (#18595)
DeltaFile
+22-99src/middlewared/middlewared/alert/service/snmp_trap.py
+2-2src/middlewared/debian/control
+24-1012 files