FreeNAS/freenas 8e5ba15tests/api2 test_300_nfs.py test_200_ftp.py

Remove tests
DeltaFile
+0-2,224tests/api2/test_300_nfs.py
+0-1,411tests/api2/test_200_ftp.py
+0-701tests/api2/test_011_user.py
+0-565tests/api2/test_audit_websocket.py
+0-495tests/api2/test_440_snmp.py
+0-488tests/api2/test_420_smb.py
+0-5,884249 files not shown
+0-30,672255 files

LLVM/project 9dc6537clang-tools-extra/clang-tidy/misc ConstCorrectnessCheck.cpp, clang-tools-extra/docs/clang-tidy/checks/misc const-correctness.rst

[clang-tidy] Don't report unnamed params for misc-const-correctness (#184388)

Previously misc-const-correctness warned about non-const unnamed
parameters; but this commit excludes them because these warnings are not
actually useful. An unnamed parameter cannot be referenced at all, so
marking them as 'const' doesn't add additional information.

Also the diagnostic messages look awkward without a name.

Fixes #184330
DeltaFile
+31-0clang-tools-extra/test/clang-tidy/checkers/misc/const-correctness-parameters.cpp
+7-1clang-tools-extra/clang-tidy/misc/ConstCorrectnessCheck.cpp
+3-3clang-tools-extra/docs/clang-tidy/checks/misc/const-correctness.rst
+41-43 files

LLVM/project df52bb4llvm/lib/Transforms/Scalar LoopUnrollPass.cpp

[LoopUnrollPass] Don't use clang specific syntax in optimization remarks (#182430)

DeltaFile
+15-17llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp
+15-171 files

FreeNAS/freenas 5169bd7tests/api2 test_pool_dataset_encryption.py test_audit_basic.py

fix tests

(cherry picked from commit 3eb73340e992219616911abdcea572f3d6cc6e2f)
DeltaFile
+3-3tests/api2/test_pool_dataset_encryption.py
+1-1tests/api2/test_audit_basic.py
+1-1tests/api2/test_encrypted_dataset_services_restart.py
+1-1tests/api2/test_420_smb.py
+1-1tests/api2/test_pool_dataset_unlock.py
+1-1tests/api2/test_sharing_service_encrypted_dataset_info.py
+8-86 files

FreeNAS/freenas f9b9537tests/api2 test_pool_dataset_encryption.py test_audit_basic.py

NAS-140121 / 27.0.0-BETA.1 / Fix tests following change to pbkfd2iters validation (#18353)

and also address the fact that root is no longer an SMB user.
DeltaFile
+3-3tests/api2/test_pool_dataset_encryption.py
+1-1tests/api2/test_audit_basic.py
+1-1tests/api2/test_420_smb.py
+1-1tests/api2/test_encrypted_dataset_services_restart.py
+1-1tests/api2/test_pool_dataset_unlock.py
+1-1tests/api2/test_sharing_service_encrypted_dataset_info.py
+8-86 files

LLVM/project 0baf5a0libunwind/src Unwind-wasm.c

Revert "Silence -Wunused-parameter warnings in Unwind-wasm.c" (#175776)

Reverts llvm/llvm-project#125412

See the discussion in #125412 for why this is necessary. The summary is
that:

- Eliding arguments is the C23 extension, but libunwind builds its C
files with `-std=c99`, so this change broke the build.
- `-Wno-unused-parameter` is part of the build for libunwind, so the
codebase does allow them.
DeltaFile
+4-2libunwind/src/Unwind-wasm.c
+4-21 files

FreeBSD/src 8d5e8df. ObsoleteFiles.inc

ObsoleteFiles.inc: revert accidental merge failure

Reported by:    des
DeltaFile
+0-16ObsoleteFiles.inc
+0-161 files

LLVM/project 2bc84fallvm/include/llvm/CodeGen MachineFunction.h, llvm/lib/CodeGen MachineFunction.cpp

[AMDGPU][MC] Replace shifted registers in CFI instructions

Change-Id: I0d99e9fe43ec3b6fecac20531119956dca2e4e5c
DeltaFile
+67-67llvm/test/CodeGen/AMDGPU/sgpr-spill-overlap-wwm-reserve.mir
+33-0llvm/lib/MC/MCDwarf.cpp
+15-15llvm/test/CodeGen/AMDGPU/dwarf-multi-register-use-crash.ll
+10-0llvm/lib/CodeGen/MachineFunction.cpp
+4-4llvm/test/CodeGen/AMDGPU/debug-frame.ll
+4-0llvm/include/llvm/CodeGen/MachineFunction.h
+133-864 files not shown
+141-8810 files

LLVM/project 7981b2allvm/lib/Target/AMDGPU SIFrameLowering.cpp SIMachineFunctionInfo.h, llvm/test/CodeGen/AMDGPU amdgpu-spill-cfi-saved-regs.ll

[AMDGPU] Implement -amdgpu-spill-cfi-saved-regs

These spills need special CFI anyway, so implementing them directly
where CFI is emitted avoids the need to invent a mechanism to track them
from ISel.

Change-Id: If4f34abb3a8e0e46b859a7c74ade21eff58c4047
Co-authored-by: Scott Linder scott.linder at amd.com
Co-authored-by: Venkata Ramanaiah Nalamothu VenkataRamanaiah.Nalamothu at amd.com
DeltaFile
+2,998-0llvm/test/CodeGen/AMDGPU/amdgpu-spill-cfi-saved-regs.ll
+37-12llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
+11-2llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h
+9-0llvm/lib/Target/AMDGPU/SIRegisterInfo.cpp
+7-0llvm/lib/Target/AMDGPU/SIFrameLowering.h
+2-1llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.cpp
+3,064-152 files not shown
+3,067-168 files

LLVM/project 2bc69e5llvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll gfx-callable-argument-types.ll

[AMDGPU] Implement CFI for CSR spills

Introduce new SPILL pseudos to allow CFI to be generated for only CSR
spills, and to make ISA-instruction-level accurate information.

Other targets either generate slightly incorrect information or rely on
conventions for how spills are placed within the entry block. The
approach in this change produces larger unwind tables, with the
increased size being spent on additional DW_CFA_advance_location
instructions needed to describe the unwinding accurately.

Change-Id: I9b09646abd2ac4e56eddf5e9aeca1a5bebbd43dd
Co-authored-by: Scott Linder <scott.linder at amd.com>
Co-authored-by: Venkata Ramanaiah Nalamothu <VenkataRamanaiah.Nalamothu at amd.com>
DeltaFile
+3,360-1,955llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+1,924-1,929llvm/test/CodeGen/AMDGPU/gfx-callable-argument-types.ll
+2,700-12llvm/test/CodeGen/AMDGPU/accvgpr-spill-scc-clobber.mir
+531-531llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+508-508llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.960bit.ll
+405-406llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.896bit.ll
+9,428-5,341103 files not shown
+13,413-7,714109 files

LLVM/project f07d684llvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll amdgcn.bitcast.512bit.ll

[AMDGPU] Use register pair for PC spill

Change-Id: Ibedeef926f7ff235a06de65a83087c151f66a416
DeltaFile
+2,562-2,562llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+1,276-1,274llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+818-816llvm/test/CodeGen/AMDGPU/materialize-frame-index-sgpr.ll
+613-613llvm/test/CodeGen/AMDGPU/gfx-callable-argument-types.ll
+552-552llvm/test/CodeGen/AMDGPU/indirect-call.ll
+100-898llvm/test/CodeGen/AMDGPU/bf16.ll
+5,921-6,71586 files not shown
+9,565-10,29692 files

LLVM/project b559ab2llvm/test/CodeGen/AMDGPU accvgpr-spill-scc-clobber.mir pei-build-av-spill.mir

[AMDGPU] Implement CFI for non-kernel functions

This does not implement CSR spills other than those AMDGPU handles
during PEI. The remaining spills are handled in a subsequent patch.

Change-Id: I5e3a9a62cf9189245011a82a129790d813d49373
Co-authored-by: Scott Linder <scott.linder at amd.com>
Co-authored-by: Venkata Ramanaiah Nalamothu <VenkataRamanaiah.Nalamothu at amd.com>
DeltaFile
+5,568-0llvm/test/CodeGen/AMDGPU/accvgpr-spill-scc-clobber.mir
+3,000-96llvm/test/CodeGen/AMDGPU/pei-build-av-spill.mir
+2,208-72llvm/test/CodeGen/AMDGPU/pei-build-spill.mir
+2,196-0llvm/test/CodeGen/AMDGPU/eliminate-frame-index-s-mov-b32.mir
+2,136-0llvm/test/CodeGen/AMDGPU/vgpr-spill-scc-clobber.mir
+1,671-1llvm/test/CodeGen/AMDGPU/debug-frame.ll
+16,779-16978 files not shown
+22,562-60884 files

LLVM/project 1607b8bllvm/lib/Target/AMDGPU SIFrameLowering.cpp, llvm/test/CodeGen/AMDGPU debug-frame.ll eliminate-frame-index-v-add-u32.mir

[AMDGPU] Emit entry function Dwarf CFI

Entry functions represent the end of unwinding, as they are the
outer-most frame. This implies they can only have a meaningful
definition for the CFA, which AMDGPU defines using a memory location
description with a literal private address space address. The return
address is set to undefined as a sentinel value to signal the end of
unwinding.

Change-Id: I21580f6a24f4869ba32939c9c6332506032cc654
Co-authored-by: Scott Linder <scott.linder at amd.com>
Co-authored-by: Venkata Ramanaiah Nalamothu <VenkataRamanaiah.Nalamothu at amd.com>
DeltaFile
+1,405-0llvm/test/CodeGen/AMDGPU/debug-frame.ll
+204-12llvm/test/CodeGen/AMDGPU/eliminate-frame-index-v-add-u32.mir
+134-6llvm/test/CodeGen/AMDGPU/eliminate-frame-index-v-add-co-u32.mir
+114-10llvm/test/CodeGen/AMDGPU/eliminate-frame-index-s-add-i32.mir
+42-5llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
+34-0llvm/test/CodeGen/AMDGPU/entry-function-cfi.mir
+1,933-3321 files not shown
+2,040-4527 files

LLVM/project 827ee52clang/lib/Driver/ToolChains Gnu.cpp, clang/test/Driver amdgpu-unwind.cl

[Clang] Default to async unwind tables for amdgcn

To avoid codegen changes when enabling debug-info (see
https://bugs.llvm.org/show_bug.cgi?id=37240) we want to
enable unwind tables by default.

There is some pessimization in post-prologepilog scheduling, and a
general solution to the problem of CFI_INSTRUCTION-as-scheduling-barrier
should be explored.

Change-Id: I83625875966928c7c4411cd7b95174dc58bda25a
DeltaFile
+26-0clang/test/Driver/amdgpu-unwind.cl
+1-0clang/lib/Driver/ToolChains/Gnu.cpp
+27-02 files

LLVM/project fbc3a31mlir/lib/Dialect/GPU/Pipelines GPUToXeVMPipeline.cpp

[mlir][xevm] Remove unnecessary attach target pass.  (#184432)

DeltaFile
+0-1mlir/lib/Dialect/GPU/Pipelines/GPUToXeVMPipeline.cpp
+0-11 files

LLVM/project 2c95b8dllvm/lib/Target/AMDGPU/MCTargetDesc AMDGPUTargetStreamer.cpp, llvm/lib/Target/AMDGPU/Utils AMDGPUBaseInfo.cpp AMDGPUBaseInfo.h

AMDGPU: Clean up print handling of AMDGPUTargetID (#184643)

Provide print to raw_ostream method and use it where applicable.
DeltaFile
+7-5llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
+8-3llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp
+9-0llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h
+24-83 files

LLVM/project 2b3e30dllvm/lib/CodeGen MachineInstr.cpp, llvm/test/CodeGen/AArch64 sme-streaming-checkvl.ll

[CodeGen] Treat hasOrderedMemoryRef as implying arbitrary loads or stores (#182000)

This prevents MachineSink from sinking loads past fences (or any other instruction marked as hasSideEffects).

Fixes: #181708
DeltaFile
+250-5llvm/test/CodeGen/AMDGPU/misched-remat-revert.ll
+44-0llvm/test/CodeGen/AMDGPU/machine-sink-fence.ll
+12-13llvm/test/CodeGen/AMDGPU/iglp-no-clobber.ll
+13-6llvm/test/CodeGen/AArch64/sme-streaming-checkvl.ll
+5-5llvm/test/CodeGen/Thumb2/mve-postinc-lsr.ll
+1-2llvm/lib/CodeGen/MachineInstr.cpp
+325-316 files

LLVM/project d9d6b16llvm/lib/Analysis ValueTracking.cpp, llvm/test/Transforms/Attributor nofpclass.ll

ValueTracking: Handle ConstantDataSequential in computeKnownFPClass (#184191)

DeltaFile
+16-17llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-aggregates.ll
+18-0llvm/test/Transforms/Attributor/nofpclass.ll
+7-0llvm/lib/Analysis/ValueTracking.cpp
+41-173 files

LLVM/project ff0220dflang/docs OpenACC.md, flang/lib/Semantics check-acc-structure.cpp check-acc-structure.h

[flang][acc] Allow orphaned acc cache directive (#184448)

While the spec allows the cache directive at the top of a loop body, the
directive has also been utilized at the top of an acc routine. This PR
removes the semantic check that rejects the cache directive outside of a
loop, allowing orphaned `!$acc cache` similar to CIR.

The OpenACC.md deviation document is updated to note this extension.
DeltaFile
+0-10flang/lib/Semantics/check-acc-structure.cpp
+1-0flang/docs/OpenACC.md
+0-1flang/lib/Semantics/check-acc-structure.h
+0-1flang/test/Semantics/OpenACC/acc-cache-validity.f90
+1-124 files

LLVM/project 937bf9cutils/bazel/llvm-project-overlay/bolt BUILD.bazel

[bazel] Fix parse_headers in bolt (#184648)

DeltaFile
+2-0utils/bazel/llvm-project-overlay/bolt/BUILD.bazel
+2-01 files

LLVM/project 56a5355clang/lib/CodeGen CGDebugInfo.cpp, clang/test/DebugInfo/CXX debug-info-constexpr-array.cpp

[DebugInfo] Emit DW_AT_const_value for constexpr array static members (#182442)

Clang does not emit a `DW_AT_const_value` in DWARF, while GCC does. This
patch fixes this issue through handling Array `APValues` and respective
handling in the backend through `ConstantDataSequential`

Fixes #165220
DeltaFile
+192-0llvm/test/DebugInfo/X86/debug-info-constexpr-array.ll
+53-0clang/test/DebugInfo/CXX/debug-info-constexpr-array.cpp
+52-0clang/lib/CodeGen/CGDebugInfo.cpp
+12-1llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp
+309-14 files

FreeNAS/freenas 3eb7334tests/api2 test_pool_dataset_encryption.py test_audit_basic.py

fix tests
DeltaFile
+3-3tests/api2/test_pool_dataset_encryption.py
+1-1tests/api2/test_audit_basic.py
+1-1tests/api2/test_encrypted_dataset_services_restart.py
+1-1tests/api2/test_pool_dataset_unlock.py
+1-1tests/api2/test_sharing_service_encrypted_dataset_info.py
+1-1tests/api2/test_420_smb.py
+8-86 files

FreeBSD/src 4dfeadcusr.sbin/bhyve pci_virtio_scsi.c

bhyve/virtio-scsi: Check LUN address validity

Instead of blindly trusting the guest OS driver that it sends us well-
formed LUN addresses, check the LUN address for validity and fail the
request if it is invalid. While here, constify the members of the virtio
requests which aren't device-writable anyway.

Reviewed by:    markj
Differential Revision: https://reviews.freebsd.org/D53470
DeltaFile
+109-16usr.sbin/bhyve/pci_virtio_scsi.c
+109-161 files

FreeBSD/src 2a514d3usr.sbin/bhyve pci_virtio_scsi.c

bhyve/virtio-scsi: Preallocate all I/O requests

By preallocating all I/O requests on all queues, we can take most
allocations out of the hot I/O code paths and simplify the code
significantly. While here, make sure we check all allocations for
success and make sure to handle failures gracefully.

Additionally, check for I/O request validity as early as possible,
and return illegal requests immediately.

Reviewed by:    markj
Differential Revision: https://reviews.freebsd.org/D53469
DeltaFile
+360-118usr.sbin/bhyve/pci_virtio_scsi.c
+360-1181 files

FreeBSD/src a28cf86usr.sbin/bhyve pci_virtio_scsi.c iov.c

bhyve/virtio: Rework iovec handling functions for efficiency and clarity

Add check_iov_len() to check whether an iovec array covers a certain
length without the need to call count_iov() on the whole array first.

Garbage-collect the 'seek' argument to buf_to_iov(), used only by
virtio-scsi control request handling. The apparent benefit of using it
to copy only the final status byte instead of the whole TMF or AN
request (25 and 21 bytes, respectively) is dubious at best, given that
the extra code to handle this in buf_to_iov() allocates and frees a new
iovec array and uses seek_iov(), which traverses the whole array and
copies iovecs around.

Replace seek_iov() and truncate_iov(), used only by virtio-scsi, with
a single function split_iov() which combines the functionality of both
in a more efficient way:
While seek_iov() always copies all iovecs past the seek offset into a
new iovec array, split_iov() works in place and doesn't copy iovecs
unless actually necessary. By using split_iov(), we can avoid almost

    [4 lines not shown]
DeltaFile
+69-47usr.sbin/bhyve/pci_virtio_scsi.c
+55-51usr.sbin/bhyve/iov.c
+11-7usr.sbin/bhyve/iov.h
+1-1usr.sbin/bhyve/net_backends.c
+136-1064 files

FreeNAS/freenas 6d943d2src/middlewared/middlewared/plugins/filesystem_ acl.py, tests/api2 test_filesystem_setacl.py test_acl_by_who.py

Add ACL traverse validation

This commit adds validation to prevent people from trying to
traverse ACL changes to child datasets if the children have
different ACL types on them (there's no way to apply a POSIX
ACL to an NFS4 ACL dataset or a dataset where ACL is disabled).

Some test tweaks are opportunistically added to help test runtime.
DeltaFile
+126-6tests/api2/test_filesystem_setacl.py
+41-1src/middlewared/middlewared/plugins/filesystem_/acl.py
+4-4tests/api2/test_acl_by_who.py
+4-4tests/api2/test_427_smb_acl.py
+2-1tests/api2/test_011_user.py
+2-1tests/api2/test_user_create_dir.py
+179-172 files not shown
+181-198 files

LLVM/project b80248aclang-tools-extra/clang-doc JSONGenerator.cpp MDMustacheGenerator.cpp, clang-tools-extra/clang-doc/assets/md namespace-template.mustache

[clang-doc] Add a Mustache Markdown generator (#177221)

Adds a Markdown generator that uses Mustache templates. This patch adds
the templates themselves and implements changes to the JSONGenerator to
allow for the creation of specific files needed by the MD tests like
`all-files.json`.

This backend should be considered experimental. It satisfies all the
same tests that the current MD backend is tested against, but those
don't seem to provide full coverage for all functionality inside that
backend. It also doesn't output everything provided by JSON. It doesn't
use the MD unittests because the Mustache templates must currently be
written to files.
DeltaFile
+127-0clang-tools-extra/test/clang-doc/basic-project.mustache.test
+118-5clang-tools-extra/test/clang-doc/namespace.cpp
+98-17clang-tools-extra/clang-doc/JSONGenerator.cpp
+115-0clang-tools-extra/clang-doc/MDMustacheGenerator.cpp
+63-0clang-tools-extra/clang-doc/assets/md/namespace-template.mustache
+45-17clang-tools-extra/clang-doc/tool/ClangDocMain.cpp
+566-3922 files not shown
+844-7428 files

LLVM/project c2db12dllvm/lib/MC XCOFFObjectWriter.cpp, llvm/test/CodeGen/PowerPC aix-reloc-sorting.ll

[AIX] Sort relocations in XCOFF object writer. (#180807)

Some relocations (like R_REF) are emitted to an offset 0 within the CSECT. If other relocations have already been emitted then the relocations are not in increasing order and the linker will emit an error. Sort the relocations before emitting to fix the problem.
DeltaFile
+77-0llvm/test/CodeGen/PowerPC/aix-reloc-sorting.ll
+8-3llvm/lib/MC/XCOFFObjectWriter.cpp
+85-32 files

LLVM/project 3028604utils/bazel/llvm-project-overlay/clang BUILD.bazel

[bazel] Add target for `clang-nvlink-wrapper` (#184644)

DeltaFile
+30-0utils/bazel/llvm-project-overlay/clang/BUILD.bazel
+30-01 files

OpenBSD/ports W40faxPdevel/luarings Makefile

   fix lua52 flavour
VersionDeltaFile
1.26+5-9devel/luarings/Makefile
+5-91 files