OpenZFS/src 2289f4ctests/test-runner/bin zts-report.py.in, tests/zfs-tests/tests/functional/cli_root/zpool_initialize zpool_initialize_import_export.ksh zpool_initialize_suspend_resume.ksh

ZTS: stop zpool_initialize tests racing initialize to completion

zpool_initialize_import_export and zpool_initialize_suspend_resume start
initializing a one-disk pool, wait a fixed couple of seconds, and then
expect initializing to still be running so it can be observed across an
export/import and suspended.  On a small or fast vdev the default 1 MiB
initialize chunk lets the whole disk finish within that window, after
which "zpool initialize -s" fails with "there is no active
initialization" and the test fails.

Throttle initializing with zfs_initialize_chunk_size, exactly as the
zpool_wait_initialize_* tests already do, so it stays active long enough
to observe regardless of vdev size or speed.  The tunable is saved and
restored per test.  Cleanup destroys the pool before restoring the chunk
size: the initialize thread rereads zfs_initialize_chunk_size on every
write but allocates its fill buffer once at the smaller size, so raising
it back while the thread is still running would issue a write larger
than that buffer.


    [13 lines not shown]
DeltaFile
+19-0tests/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize_import_export.ksh
+19-0tests/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize_suspend_resume.ksh
+0-4tests/test-runner/bin/zts-report.py.in
+38-43 files

OpenZFS/src 5be00eatests/zfs-tests/tests/functional/migration setup.ksh

ZTS: migration/setup: clear stale zfs_member label before new_fs

During a full ZTS run functional/migration/setup fails intermittently
when it mounts the non-ZFS device.  That device is often one an earlier
test used as a pool vdev.  'zpool destroy' leaves the vdev labels in
place and new_fs only overwrites the front of the device, so the
trailing labels can survive.  libblkid then probes the device as
ambiguous (both the new filesystem and zfs_member) and the
auto-detecting mount refuses, which setup reports as a spurious failure.

Wipe any residual signatures with wipefs before laying down the new
filesystem so the device carries a single, unambiguous type, and let
udev settle before the mount.  Skip the wipe in the single-disk case,
where the non-ZFS device is the same one the test pool was just created
on, so the live pool is left untouched.

Verified on Linux: after a pool create and destroy the scratch device
still carries a zfs_member label (blkid -p reports zfs_member); a
wipefs -a removes it so the following new_fs is the only signature and

    [6 lines not shown]
DeltaFile
+20-0tests/zfs-tests/tests/functional/migration/setup.ksh
+20-01 files

LLVM/project a2fc238llvm/test/Transforms/InstCombine/AMDGPU image-d16.ll sendmsg-m0-poison.ll, llvm/test/Transforms/LoadStoreVectorizer/AMDGPU merge-stores-private.ll

AMDGPU: Migrate Analysis/Transforms tests to amdgpu subarch triple (3) (#208811)

Continue migrating command-line target spelling on RUN lines to the
folded amdgpu subarch triple form, covering more Transforms tests.

Co-Authored-By: Claude <noreply at anthropic.com> (Claude-Opus-4.8)
DeltaFile
+6-6llvm/test/Transforms/LoadStoreVectorizer/AMDGPU/merge-stores-private.ll
+6-6llvm/test/Transforms/PhaseOrdering/AMDGPU/infer-address-space.ll
+5-5llvm/test/Transforms/InstCombine/AMDGPU/image-d16.ll
+4-4llvm/test/Transforms/InstCombine/AMDGPU/sendmsg-m0-poison.ll
+3-3llvm/test/Transforms/InstCombine/AMDGPU/lane-index-simplify-demanded-bits.ll
+3-3llvm/test/Transforms/OpenMP/spmdization.ll
+27-2776 files not shown
+125-12582 files

LLVM/project ddbce7bllvm/test/Transforms/ExpandIRInsts/AMDGPU pass-parameters.ll frem-inf.ll, llvm/test/Transforms/InferFunctionAttrs enable-builtin.ll

AMDGPU: Migrate Analysis/Transforms tests to amdgpu subarch triple (2) (#208810)
DeltaFile
+8-8llvm/test/Transforms/ExpandIRInsts/AMDGPU/pass-parameters.ll
+5-5llvm/test/Transforms/InstCombine/AMDGPU/amdgcn-simplify-image-buffer-stores.ll
+3-3llvm/test/Transforms/InstCombine/AMDGPU/fmed3-fpext-fold.ll
+2-2llvm/test/Transforms/InferFunctionAttrs/enable-builtin.ll
+2-2llvm/test/Transforms/InstCombine/AMDGPU/canonicalize-add-to-gep.ll
+2-2llvm/test/Transforms/ExpandIRInsts/AMDGPU/frem-inf.ll
+22-2291 files not shown
+113-11397 files

LLVM/project ac88468clang/docs ReleaseNotes.md, clang/lib/AST ExprConstant.cpp

[Clang] Adjust assert in addUnsizedArray to check Base is set before … (#208112)

In addUnsizedArray we attempt to check the type of Base in an assert but
don't verify if it set before doing so. This can lead to a crash, check
Base is set before checking its type and add a regression test.

Fixes: https://github.com/llvm/llvm-project/issues/44212
DeltaFile
+6-0clang/test/SemaCXX/constexpr-array-unknown-bound.cpp
+1-1clang/lib/AST/ExprConstant.cpp
+1-0clang/docs/ReleaseNotes.md
+8-13 files

LLVM/project a0c1347lldb/include/lldb/ValueObject DILAST.h, lldb/source/ValueObject DILEval.cpp DILParser.cpp

[lldb] Add nullptr literal to DIL
DeltaFile
+15-0lldb/include/lldb/ValueObject/DILAST.h
+14-0lldb/source/ValueObject/DILEval.cpp
+14-0lldb/source/ValueObject/DILParser.cpp
+6-1lldb/test/API/commands/frame/var-dil/expr/Literals/TestFrameVarDILLiterals.py
+5-0lldb/source/ValueObject/DILAST.cpp
+3-0lldb/source/ValueObject/DILLexer.cpp
+57-15 files not shown
+66-111 files

LLVM/project 8fa0c73clang/lib/Sema SemaExpand.cpp SemaStmt.cpp, clang/test/CodeGenCXX cxx2c-enumerating-expansion-statements.cpp cxx2c-iterating-expansion-stmt.cpp

[Clang] [C++26] Expansion Statements (Part 2: Parsing and Parser Tests) (#169681)

This patch implements parsing of expansion statements and expansion
initialiser lists. I’ve also had to implement sema for
`CXXExpansionStmtDecl` because parsing doesn’t really work without that
node.
DeltaFile
+1,590-0clang/test/SemaCXX/cxx2c-expansion-stmts.cpp
+1,518-0clang/test/CodeGenCXX/cxx2c-enumerating-expansion-statements.cpp
+641-0clang/lib/Sema/SemaExpand.cpp
+551-0clang/test/CodeGenCXX/cxx2c-iterating-expansion-stmt.cpp
+313-229clang/lib/Sema/SemaStmt.cpp
+532-0clang/test/CodeGenCXX/cxx2c-destructuring-expansion-stmt.cpp
+5,145-22936 files not shown
+7,156-33342 files

LLVM/project 2705f46libc/docs/dev date_and_time.md, libc/src/time time_utils.cpp time_constants.h

[libc] Implement fast date conversion algorithm of Ben Joffe (#208312)

Replaced the loop-based year/month/day extraction in update_from_seconds
with Ben Joffe's "Very Fast 64-bit" date algorithm using multiply-shift
division (4 multiplications, 0 hardware divisions). Also replaced the
mktime inverse with Ben Joffe's inverse date algorithm.

Updated is_leap_year to use the Drepper-Neri-Schneider algorithm (% 25
instead of % 100). Replaced the O(n) yday month-length loop with a
constant-time cumulative-days table lookup.

Uses UInt128 for portable 128-bit support across 64-bit (native) and
32-bit (software fallback) targets.

Raman's benchmarks on x86-64 show a ~13% wall-time improvement:

  Before: real 2.215s, user 2.214s
  After:  real 1.919s, user 1.913s


    [7 lines not shown]
DeltaFile
+141-147libc/src/time/time_utils.cpp
+149-1libc/test/src/time/gmtime_test.cpp
+52-0libc/docs/dev/date_and_time.md
+20-19libc/test/src/time/CMakeLists.txt
+6-13libc/src/time/time_constants.h
+12-7libc/src/time/CMakeLists.txt
+380-1872 files not shown
+390-1938 files

LLVM/project 4c5e156llvm/cmake/modules FindDIASDK.cmake

[cmake] Fix VSINSTALLDIR check in FindDIASDK module (#208524)

elseif($ENV{VSINSTALLDIR}) expands the env value into the condition,
where CMake treats it as an undefined variable, so the branch is always
false. Fix this by testing if the env variable is defined instead.
DeltaFile
+1-1llvm/cmake/modules/FindDIASDK.cmake
+1-11 files

OpenZFS/src 7d565cdcmd/zfs zfs_main.c, man/man8 zfs-bookmark.8

zfs bookmark: add recursive (-r) bookmark creation

"zfs snapshot -r" and "zfs destroy -r" already operate recursively, but
there was no way to create bookmarks for a recursive snapshot in one
step, so users had to script a loop over every dataset.

Add a -r flag to "zfs bookmark" that, given a snapshot source, creates
a bookmark of that snapshot on every descendant dataset that has it.
Descendants that lack the snapshot (for example one created after the
recursive snapshot) or that are still inconsistent are skipped instead
of failing the whole request, mirroring how "zfs snapshot -r" gathers
its targets.  The pairs are submitted to lzc_bookmark() in a single
call and any per-dataset failures are reported individually.  The -r
flag requires a snapshot source; a bookmark source is rejected.

Reviewed-by: Brian Behlendorf <behlendorf1 at llnl.gov>
Signed-off-by: MorganaFuture <103630661+MorganaFuture at users.noreply.github.com>
Closes #9460
Closes #18763
DeltaFile
+137-43cmd/zfs/zfs_main.c
+94-0tests/zfs-tests/tests/functional/cli_root/zfs_bookmark/zfs_bookmark_recursive.ksh
+9-0man/man8/zfs-bookmark.8
+1-1tests/runfiles/common.run
+1-0tests/zfs-tests/tests/Makefile.am
+242-445 files

LLVM/project 4e5a44alld/ELF SyntheticSections.cpp Relocations.cpp, lld/test/ELF mips-tls-64-pic-local-variable.s x86-64-tls-gd-local.s

[ELF] Fix TLS GD against non-preemptible dynamic symbols in DSOs (#207881)

Consider a DSO that uses TLS GD against a dynamic non-preemptible symbol
(e.g.  protected, or linked with -Bsymbolic). The expected meaning of
this is to always reference the DSO's own TLS segment for that symbol,
regardless of any attempts to preempt it at load time, and LLD will
indeed emit a constant offset rather than a symbolic DTPOFF relocation
for the second GOT word. However, for the first GOT word, because we
currently only treat the isLocalInExecutable case as special (where the
module index is 1), we end up creating a symbolic DTPMOD relocation,
rather than a non-symbolic (i.e. against the null symbol) one to get
this DSO's index, and so any load-time preemption will cause us to use a
different module's TLS block. As a result, not only do we have symbol
preemption when we shouldn't, but also the two halves of the TLS GD GOT
entry end up inconsistent, using the offset of the symbol in this
module's TLS block for a different module's.

Fix this by breaking down the two !isLocalInExecutable cases, emitting
the expected non-symbolic DTPMOD relocation for any non-preemptible

    [15 lines not shown]
DeltaFile
+17-15lld/ELF/SyntheticSections.cpp
+11-11lld/ELF/Relocations.cpp
+15-6lld/test/ELF/mips-tls-64-pic-local-variable.s
+5-5lld/test/ELF/x86-64-tls-gd-local.s
+48-374 files

LLVM/project 4a71757llvm/lib/Transforms/AggressiveInstCombine AggressiveInstCombine.cpp, llvm/test/Transforms/AggressiveInstCombine/X86 lower-table-based-log2-basics.ll

[AggressiveInstCombine] Support alternate deBruijn log2 table that isolates the MSB before the multiply. (#208532)

The existing deBruijn log2 match expects the multiply input to be a mask
that has all bits below the most significant set bit to be 1.

There is an alternate form in some programs where this mask is modified
to isolate the MSB by doing (mask - (mask >> 1)). A cttz table is then
used instead of a log2 table.

This patch teaches tryToRecognizeTableBasedLog2 to match this form too.

I think there's still some additional work needed elsewhere to recognize
that the sub+select in the output can be done with not+and.

Fixes #207571

Assisted-by: Claude
DeltaFile
+53-0llvm/test/Transforms/AggressiveInstCombine/X86/lower-table-based-log2-basics.ll
+45-3llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp
+98-32 files

LLVM/project f588b7ellvm/docs ORCv2.md Remarks.md

[docs] Finish MyST migration for selected docs
DeltaFile
+261-271llvm/docs/ORCv2.md
+215-236llvm/docs/Remarks.md
+233-182llvm/docs/AMDGPUExecutionSynchronization.md
+127-119llvm/docs/SPIRVUsage.md
+56-55llvm/docs/CompileCudaWithLLVM.md
+53-53llvm/docs/NVPTXUsage.md
+945-91613 files not shown
+1,093-1,04819 files

LLVM/project 8292245.github/workflows ids-check.yml

[Github] Make ids-check workflow use container (#208780)

4bf0737d68bbb86d9d693e96a94c4175f27acebe introduced a container for this
to enable the use of a PGO optimized compiler and to bake the idt build
into the container. This patch updates the workflow to use it.
DeltaFile
+10-45.github/workflows/ids-check.yml
+10-451 files

LLVM/project a195671llvm/test/Analysis/CostModel/AMDGPU fadd.ll fmul.ll

AMDGPU: Migrate Analysis/Transforms tests to amdgpu subarch triple (1) (#208809)

Mechanically migrate the command-line target spelling on RUN lines from
-mtriple=amdgcn ... -mcpu=<gfx> to the folded subarch triple form (e.g.
-mtriple=amdgpu9.00-amd-amdhsa), dropping the redundant -mcpu.

This first batch covers Analysis and Transforms tests. Tests whose
output materially depends on -mcpu (e.g. opt runs that record a target-cpu
attribute, or cost-model tests whose default subtarget differs) are left for
separate handling. This begins a series of ~62 PRs covering backend tests.

Co-Authored-By: Claude <noreply at anthropic.com> (Claude-Opus-4.8)
DeltaFile
+10-10llvm/test/Analysis/CostModel/AMDGPU/fadd.ll
+10-10llvm/test/Analysis/CostModel/AMDGPU/fmul.ll
+10-10llvm/test/Analysis/CostModel/AMDGPU/canonicalize.ll
+10-10llvm/test/Analysis/CostModel/AMDGPU/minimumnum.ll
+10-10llvm/test/Analysis/CostModel/AMDGPU/fdiv.ll
+10-10llvm/test/Analysis/CostModel/AMDGPU/fma.ll
+60-6073 files not shown
+405-40579 files

LLVM/project 2fd1419clang/include/clang/Options Options.td, clang/lib/Driver/ToolChains Clang.cpp

[SystemZ][z/OS] Add options -m[no-]zos-ppa1-name to remove the function name in PPA1. (#207416)

This PR adds a pair of flag options `-m[no-]zos-ppa1-name` to clang,
which controls whether the function name is emitted in PPA1 on z/OS.
DeltaFile
+22-0llvm/test/CodeGen/SystemZ/zos-ppa1.ll
+18-0clang/test/CodeGen/SystemZ/zos-ppa1-name.c
+15-0clang/test/Driver/zos-ppa1-name.c
+6-0clang/include/clang/Options/Options.td
+3-1llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
+4-0clang/lib/Driver/ToolChains/Clang.cpp
+68-12 files not shown
+74-18 files

LLVM/project 304c660flang/lib/Lower/OpenMP OpenMP.cpp DataSharingProcessor.cpp, flang/test/Lower/OpenMP metadirective-loop.f90

[flang][OpenMP] Support lowering of metadirective (part 3)

Enable lowering of metadirectives that resolve to a loop-associated
variant such as `do`, `simd`, `parallel do`, and `do simd`. The
associated DO construct is made available to the selected variant so the
existing OpenMP loop lowering can process it. A standalone metadirective
uses the following sibling DO, and a begin/end metadirective uses the
first substantive evaluation nested in its block.

For example, when the `vendor(llvm)` selector matches, the `parallel do`
variant is lowered together with the DO loop that follows it:

```fortran
!$omp metadirective when(implementation={vendor(llvm)}: parallel do)
do i = 1, n
  y(i) = a*x(i) + y(i)
end do
```


    [30 lines not shown]
DeltaFile
+476-0flang/test/Lower/OpenMP/metadirective-loop.f90
+255-8flang/lib/Lower/OpenMP/OpenMP.cpp
+90-2flang/lib/Lower/OpenMP/DataSharingProcessor.cpp
+36-4flang/lib/Lower/OpenMP/Utils.cpp
+15-0flang/test/Lower/OpenMP/Todo/metadirective-target-loop.f90
+0-12flang/test/Lower/OpenMP/Todo/metadirective-loop.f90
+872-262 files not shown
+883-268 files

LLVM/project 9c8485aclang/docs ReleaseNotes.md, clang/lib/Basic/Targets AArch64.h

[clang] Use a 128-byte destructive interference size on Apple AArch64 (#208716)

Apple arm64 cores use a 128-byte cache line, as reported by `sysctl -a`.
However, Clang inherited the generic AArch64 value and was setting
`__GCC_DESTRUCTIVE_SIZE` to 256 for Apple targets (see bce2cc15133a).
While the value of 256 matches what GCC uses and is what's documented by
ARM, 128 seems to be a better value for Apple arm64 specifically, with
256 simply being wasteful.

Note that changing this value should in principle not be an issue since
it (and constructive interference) are explicitly documented as being
"ABI unstable" values, in the sense that users should not rely on them
in ABI-sensitive places.

Fixes #182951
DeltaFile
+13-0clang/lib/Basic/Targets/AArch64.h
+5-0clang/docs/ReleaseNotes.md
+2-0clang/test/Preprocessor/init-aarch64.c
+2-0clang/test/Preprocessor/init.c
+22-04 files

FreeBSD/src 7cc2f18sys/x86/cpufreq hwpstate_intel.c

hwpstate_intel(4): Introduce a CPU ID cache

To minimize the diff with hwpstate_intel(4).  See previous commit there
for the rationale.

Reviewed by:    aokblast
Sponsored by:   The FreeBSD Foundation
DeltaFile
+29-31sys/x86/cpufreq/hwpstate_intel.c
+29-311 files

FreeBSD/src 1a3d615sys/x86/cpufreq hwpstate_amd.c

hwpstate_amd(4): Restore CPU ID cache after introducing cpu_get_pcpuid()

Using cpu_get_pcpuid() directly or having a CPU ID cache does not really
make any significant difference.  With cache: Less function calls, less
space on stack, but an additional allocation in the softc, who stays
permanently.  Without cache: Some function calls, but one less slot in
the softc, and no data duplication (but that info never changes).

The main reason for this change is to reduce conflicts with some
work-in-progress by aokblast@.

While here, move the check that a per-CPU structure is provided by the
bus from the attach to the probe method, as it is already used by
hwpstate_probe_pstate() there.

Reviewed by:    aokblast
Sponsored by:   The FreeBSD Foundation
DeltaFile
+23-23sys/x86/cpufreq/hwpstate_amd.c
+23-231 files

FreeBSD/src 6cd16efsys/dev/ice ice_lib.c ice_adminq_cmd.h

ice(4): Add support for 40G maximal PMD speed

E823 backplane devices may support 40G as maximal PMD speed.
Extend port topology reading logic to handle this case.
While at that fix indentation according to FreeBSD style(9).

Signed-off-by: Krzysztof Galazka <krzysztof.galazka at intel.com>

Tested by:      gowtham.kumar.ks_intel.com
Approved by:    kbowling (mentor), erj (mentor)
Sponsored by:   Intel Corporation
MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D53587

(cherry picked from commit c6212b7da110d82b1d0086ec525deb216993021e)
DeltaFile
+4-3sys/dev/ice/ice_lib.c
+1-0sys/dev/ice/ice_adminq_cmd.h
+5-32 files

LLVM/project 4568712clang/lib/Sema SemaTemplate.cpp, clang/test/SemaTemplate concepts-out-of-line-def.cpp

fixup
DeltaFile
+16-0clang/test/SemaTemplate/concepts-out-of-line-def.cpp
+3-2clang/lib/Sema/SemaTemplate.cpp
+19-22 files

LLVM/project 1e713b2clang/test/Driver offload-parallel-device-cc1.cu

[Clang][Driver][NFC] Fix offload-parallel-device-cc1.cu failing in read-only runfiles sandbox (#208801)

When running offload-parallel-device-cc1.cu with multiple
--cuda-gpu-arch
flags and --cuda-device-only -S, Clang generates multiple .s outputs in
the
current working directory (.). In sandboxed test environments, . is
read-only,
causing compilation to fail with "Permission denied".
Fix by executing the CUDA compilation step inside a temporary directory
(%t).

This pattern is being used in other tests like in
clang/test/Driver/ftime-trace-offload.cpp and
clang/test/Driver/unix-conformance.c.
DeltaFile
+2-1clang/test/Driver/offload-parallel-device-cc1.cu
+2-11 files

LLVM/project 15480d2clang/test/CodeGenCXX ms-mangle-requires.cpp

[Clang][NFC] Add two CWG2369 regression tests (#186380)

Some of the MS ABI regressions, which were caused by CWG2369, were fixed
by https://github.com/llvm/llvm-project/pull/197215. Let's add those
regressions to our tests.

Closes https://github.com/llvm/llvm-project/issues/173160
Closes https://github.com/llvm/llvm-project/issues/191588
DeltaFile
+55-0clang/test/CodeGenCXX/ms-mangle-requires.cpp
+55-01 files

FreeBSD/src 15ef9adsys/dev/ice ice_lib.c

ice(4): Fix link speed after changing cable type

When interface was connected to a link partner with a cable
type limitting maximum supported speed, e.g. SFP+ cable
in 25G port, driver incorrectly saved a supported speed
as the user configured speed. This prevented interface
from using all supported speeds after switching cable to SFP28.
Link was established at 10G as supported by previously used
SFP+ cable. Don't set user requested speed unless actually
configured by an user, to allow automatic selection of highest
available speed. Only when user sets custom config
using advertise_speed sysctl save it and try
to apply after cable is changed.

Also don't save initial supported speeds if FW supports
reporting default PHY config.

Signed-off-by: Krzysztof Galazka <krzysztof.galazka at intel.com>


    [5 lines not shown]
DeltaFile
+11-7sys/dev/ice/ice_lib.c
+11-71 files

FreeBSD/src f243651sys/dev/ice ice_drv_info.h

ice(4): Add support for new E810-XXV-2 adapters

Add two new subdevice IDs for E810-XXV-2 and E810-XXV-2 for OCP 3.0.

Signed-off-by: Krzysztof Galazka <krzysztof.galazka at intel.com>

Reviewed by:    kbowling, erj, mateusz.moga_intel.com
Sponsored by:   Intel Corporation
Differential Revision:  https://reviews.freebsd.org/D54069

(cherry picked from commit bea6f7d02dfbef8f8209f0ca5f1d76877d549f46)
DeltaFile
+6-0sys/dev/ice/ice_drv_info.h
+6-01 files

FreeBSD/src 074ff66sys/dev/ice ice_lib.c ice_adminq_cmd.h

ice(4): Add support for 40G maximal PMD speed

E823 backplane devices may support 40G as maximal PMD speed.
Extend port topology reading logic to handle this case.
While at that fix indentation according to FreeBSD style(9).

Signed-off-by: Krzysztof Galazka <krzysztof.galazka at intel.com>

Tested by:      gowtham.kumar.ks_intel.com
Approved by:    kbowling (mentor), erj (mentor)
Sponsored by:   Intel Corporation
Differential Revision:  https://reviews.freebsd.org/D53587

(cherry picked from commit c6212b7da110d82b1d0086ec525deb216993021e)
DeltaFile
+4-3sys/dev/ice/ice_lib.c
+1-0sys/dev/ice/ice_adminq_cmd.h
+5-32 files

LLVM/project 3bc47c8clang/lib/ScalableStaticAnalysis/Analyses/OperatorNewDelete OperatorNewDeletePointers.cpp OperatorNewDeletePointersExtractor.cpp, clang/test/Analysis/Scalable/OperatorNewDelete operator-new-delete.cpp

[SSAF][WPA] Operator new/delete overload entities that shall retain their types (#208342)

A follow-up change to #206600. This commit adds the WPA implementation
for those operator new/delete overload entities that shall retain their
types. This WPA result will later be used to filter unsafe buffer
analysis results.

rdar://179151541

Assisted by Claude Sonnet 4.6
DeltaFile
+258-0clang/lib/ScalableStaticAnalysis/Analyses/OperatorNewDelete/OperatorNewDeletePointers.cpp
+0-118clang/lib/ScalableStaticAnalysis/Analyses/OperatorNewDelete/OperatorNewDeletePointersExtractor.cpp
+71-0clang/test/Analysis/Scalable/OperatorNewDelete/Inputs/tu-summary.json
+58-0clang/test/Analysis/Scalable/OperatorNewDelete/operator-new-delete.cpp
+40-0clang/test/Analysis/Scalable/OperatorNewDelete/Inputs/tu-summary-bad-id.json
+38-0clang/test/Analysis/Scalable/OperatorNewDelete/Inputs/tu-summary-no-key.json
+465-1188 files not shown
+568-12014 files

LLVM/project b2ae07fllvm/utils/TableGen SubtargetEmitter.cpp

[TableGen] Add MCReadAdvanceEntry to vector first, then write its fields. NFC (#208789)
DeltaFile
+1-2llvm/utils/TableGen/SubtargetEmitter.cpp
+1-21 files

LLVM/project 58bb20eclang/include/clang/Options Options.td, clang/lib/Driver/ToolChains Clang.cpp

address comments
DeltaFile
+3-3clang/include/clang/Options/Options.td
+1-1clang/lib/Driver/ToolChains/Clang.cpp
+4-42 files