LLVM/project ad7d6fcllvm/include/llvm/Support JSON.h

Revert "[ASan][JSON] Unpoison memory before its reuse (#79065)"

This reverts commit c416b2efe89c11db593fe8041c366e0cb63d4eeb.
DeltaFile
+1-14llvm/include/llvm/Support/JSON.h
+1-141 files

LLVM/project f5efc08lldb/source/Commands Options.td

Make it clear that log enable's output file is per channel not per category (#196178)

It is natural to try:

```
log enable -f file1 lldb step
log enable -f file2 lldb process

```
or whatever, and then be surprised that all the logs end up in
`file2`... The help on `log enable`'s `-f` option didn't specify what
you were setting the file for. This PR just changes the help text to be
clear about the current state of things.
DeltaFile
+2-1lldb/source/Commands/Options.td
+2-11 files

LLVM/project 637bd86llvm/include/llvm/ADT FunctionExtras.h

Revert "[ASan][ADT] Don't scribble with ASan (#79066)"

This reverts commit 51a11f1c44b7bd7655687471d8c8912afb637efc.
DeltaFile
+2-5llvm/include/llvm/ADT/FunctionExtras.h
+2-51 files

LLVM/project 1d2a123lldb/source/Commands CommandObjectCommands.cpp CommandObjectTarget.cpp, lldb/source/Expression Materializer.cpp

[lldb] Fix misconstructed FromErrorStringWithFormatv format strings (#196189)

Fix mistakes in `FromErrorStringWithFormatv` format strings. Uses
https://github.com/llvm/llvm-project/pull/195974

---------

Co-authored-by: Jonas Devlieghere <jonas at devlieghere.com>
DeltaFile
+2-3lldb/source/Commands/CommandObjectCommands.cpp
+2-2lldb/source/Expression/Materializer.cpp
+1-1lldb/source/Commands/CommandObjectTarget.cpp
+5-63 files

LLVM/project 623dc4dclang/lib/CodeGen CodeGenModule.cpp CodeGenModule.h, clang/test/CodeGenSYCL sycl-module-id.cpp kernel-caller-entry-point.cpp

[clang][SYCL] Emit "sycl-module-id" function attribute (#195965)

Attach the "sycl-module-id" LLVM function attribute to SYCL device
functions that are candidates for entry points in device-code splitting.
The attribute value is the module identifier (translation unit name),
which clang-sycl-linker uses to group kernels by translation unit when
splitting device code.

The attribute is emitted at two sites:

1. SYCL kernel caller functions (spir_kernel) are synthesized by
EmitSYCLKernelCaller and do not go through EmitFunction, so the
attribute is set directly after SetSYCLKernelAttributes.

2. sycl_external function definitions go through
SetLLVMFunctionAttributesForDefinition; the attribute is added there
when SYCLIsDevice and SYCLExternalAttr are present.

Both sites call the new CodeGenModule::addSYCLModuleIdAttr helper.

Co-authored-by: Claude
DeltaFile
+27-0clang/test/CodeGenSYCL/sycl-module-id.cpp
+13-0clang/lib/CodeGen/CodeGenModule.cpp
+7-0clang/lib/CodeGen/CodeGenModule.h
+3-3clang/test/CodeGenSYCL/kernel-caller-entry-point.cpp
+1-0clang/lib/CodeGen/CodeGenSYCL.cpp
+51-35 files

LLVM/project db86c25llvm/docs CodingStandards.rst

add rule for nested statements
DeltaFile
+18-11llvm/docs/CodingStandards.rst
+18-111 files

LLVM/project 41c3779llvm/lib/Target/AMDGPU/AsmParser AMDGPUAsmParser.cpp, llvm/test/MC/AMDGPU gfx1250_asm_vop3_err.s

[AMDGPU] Validate forced lit64() on VOP3 instructions (#196171)

Lit64 cannot be used with VOP3* but we did not validate it
in case it can be encoded as lit32, but forced with the
operand modifier.
DeltaFile
+23-8llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
+5-0llvm/test/MC/AMDGPU/gfx1250_asm_vop3_err.s
+28-82 files

LLVM/project 1661a23llvm/docs CodingStandards.rst

[RFC][Docs] Clarify brace omission for single-line bodies

Update the Coding Standards brace guidance to emphasize that braces should be
omitted only for simple bodies that do not wrap across multiple physical lines.
DeltaFile
+22-9llvm/docs/CodingStandards.rst
+22-91 files

LLVM/project 3776d8dclang/cmake/caches Fuchsia.cmake

[Fuchsia] Enable OpenCSD by default for Fuchsia (#195194)

Pass LLVM_ENABLE_OPENCSD and OPENCSD_ROOT through the Fuchsia stage 1
cache.
DeltaFile
+2-0clang/cmake/caches/Fuchsia.cmake
+2-01 files

LLVM/project 020b0a0llvm/include/llvm/ADT DenseMap.h

Revert "[DenseMap] Add memory barrier for sanitizers in getInlineBuckets/getLargeRep (#183457)" (#196143)

Revert #183457 and fixup #193695 as they are not needed after #194208.

Related issue #182720.

This reverts commit b5ac484470b9ceda96addcbc946f9ded4c5ef972.
This reverts commit 8d5b74db2d8f54da2609d18040504153c1afe5df.
DeltaFile
+0-11llvm/include/llvm/ADT/DenseMap.h
+0-111 files

LLVM/project 7e74c78lldb/cmake/modules LLDBConfig.cmake, lldb/include/lldb/Host Config.h.cmake

[lldb] Add LLDB_ENABLE_DYNAMIC_SCRIPTINTERPRETERS option (#196110)

Add a CMake option that will gate building the script interpreter
plugins as separate shared libraries, and expose it to C++ via
lldb/Host/Config.h.

The option defaults to OFF and currently has no consumers; subsequent
patches wire up the plugin, binding, and test build to use it.

Because dynamic plugins resolve lldb_private symbols against liblldb at
runtime, enabling this option implies LLDB_EXPORT_ALL_SYMBOLS. The
default for LLDB_EXPORT_ALL_SYMBOLS now follows
LLDB_ENABLE_DYNAMIC_SCRIPTINTERPRETERS, and a FATAL_ERROR is raised if
the user explicitly disables symbol export while requesting dynamic
plugins.

Extracted from #189718 for easier reviewing.
DeltaFile
+6-1lldb/cmake/modules/LLDBConfig.cmake
+2-0lldb/include/lldb/Host/Config.h.cmake
+8-12 files

LLVM/project 8acf74flldb/source/Plugins/ExpressionParser/Clang IRForTarget.cpp

[lldb] Partially support ConstantPtrAuth in IRForTarget::UnfoldConstant (#195899)

IRForTarget aims to make generated LLVM IR relocatable. This is because
LLDB JITs and executes code in an environment where the location/value
of something may not be known ahead of runtime.

My motivation here is ObjC constant strings. They are generally emitted
as global variables with a constant global initializer. On arm64e, these
global initializers may have a ptrauth constant as the address
discriminator. These can be safely skipped because address
discriminators encode information about the signed value, they don't
actually need to be unfolded.

In this commit I explicitly do not handle the non-address discriminator
scenario. As I work through the arm64e test suite, I may come back to
implement this if I find it is needed.
DeltaFile
+10-0lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp
+10-01 files

LLVM/project 4988b3allvm/lib/Analysis ValueTracking.cpp, llvm/test/CodeGen/AMDGPU srem64.ll urem64.ll

[ValueTracking] Extend computeConstantRange for add/sub, sext/zext/trunc

Recursively compute operand ranges for add/sub and propagate ranges
through sext/zext/trunc.
For add/sub, the computed range is intersected with any existing range
from setLimitsForBinOp, and NSW/NUW flags are used via
addWithNoWrap/subWithNoWrap to tighten bounds.

The motivation is to enable further folding of reduce.add expressions
in comparisons, where the result range can be bounded by the input
element ranges.
DeltaFile
+44-51llvm/test/CodeGen/AMDGPU/srem64.ll
+63-9llvm/lib/Analysis/ValueTracking.cpp
+22-28llvm/test/CodeGen/AMDGPU/urem64.ll
+13-21llvm/test/CodeGen/AMDGPU/udiv64.ll
+10-17llvm/test/CodeGen/AMDGPU/sdiv64.ll
+9-12llvm/test/Transforms/LoopVectorize/epilog-vectorization-reductions.ll
+161-1386 files not shown
+173-15112 files

LLVM/project d607565llvm/docs AMDGPUOperandSyntax.rst, llvm/docs/AMDGPU AMDGPUAsmGFX950.rst gfx950_operands.rst

[AMDGPU] Fix some links in the GFX950 documentation (#195951)

Some links in the GFX950 documentation are incorrect. For example all
the links for the operand 'simm16' in SOPK. This patch fixes those
problems. As part of the fix, an entry fo simm16 was added to
AMDGPUOperandSyntax.rst.
DeltaFile
+581-920llvm/docs/AMDGPU/AMDGPUAsmGFX950.rst
+237-58llvm/docs/AMDGPU/gfx950_operands.rst
+10-0llvm/docs/AMDGPUOperandSyntax.rst
+828-9783 files

NetBSD/pkgsrc-wip 6b7627dpitchfork distinfo cargo-depends.mk

pitchfork: add new package, doesn't build on NetBSD
DeltaFile
+1,640-0pitchfork/distinfo
+547-0pitchfork/cargo-depends.mk
+104-0pitchfork/TODO
+18-0pitchfork/Makefile
+13-0pitchfork/DESCR
+4-0pitchfork/PLIST
+2,326-01 files not shown
+2,327-07 files

FreeBSD/ports 6e724a0graphics/mesa-devel distinfo Makefile, graphics/mesa-devel/files patch-libdrm-2.4.131

graphics/mesa-devel: update to 26.1.b.905

Changes:        https://gitlab.freedesktop.org/mesa/mesa/-/compare/aac8787fdaf...0f75fa5bfd2
DeltaFile
+38-0graphics/mesa-devel/files/patch-libdrm-2.4.131
+3-3graphics/mesa-devel/distinfo
+2-2graphics/mesa-devel/Makefile
+43-53 files

FreeBSD/ports c0d64aeemulators/rpcs3 distinfo Makefile

emulators/rpcs3: update to 0.0.40.19334

Changes:        https://github.com/RPCS3/rpcs3/compare/e26c80c129...4f47fee360
DeltaFile
+3-3emulators/rpcs3/distinfo
+2-2emulators/rpcs3/Makefile
+5-52 files

FreeBSD/ports 5e02498graphics/mesa-devel distinfo Makefile

graphics/mesa-devel: update to 26.1.b.543

Changes:        https://gitlab.freedesktop.org/mesa/mesa/-/compare/c5edb900465...aac8787fdaf
DeltaFile
+3-3graphics/mesa-devel/distinfo
+2-3graphics/mesa-devel/Makefile
+5-62 files

FreeBSD/ports 5c01f60cad/solvespace distinfo Makefile, cad/solvespace/files patch-src_CMakeLists.txt

cad/solvespace: Update to 3.2
DeltaFile
+0-17cad/solvespace/files/patch-src_CMakeLists.txt
+7-9cad/solvespace/distinfo
+2-6cad/solvespace/Makefile
+6-1cad/solvespace/pkg-plist
+15-334 files

OpenBSD/ports l573qTBnet/bro distinfo Makefile, net/bro/patches patch-scripts_policy_frameworks_cluster_backend_zeromq_main_zeek

   update to zeek 8.1.2
VersionDeltaFile
1.61+2-2net/bro/distinfo
1.164+1-2net/bro/Makefile
1.2+0-0net/bro/patches/patch-scripts_policy_frameworks_cluster_backend_zeromq_main_zeek
+3-43 files

OpenBSD/ports Uxr0iMadevel/git distinfo Makefile, devel/git/patches patch-gitweb_gitweb_perl

   update to git 2.54.0
VersionDeltaFile
1.218+4-4devel/git/distinfo
1.43+2-2devel/git/patches/patch-gitweb_gitweb_perl
1.296+1-1devel/git/Makefile
1.124+2-0devel/git/pkg/PLIST-main
+9-74 files

LLVM/project e32f427llvm/test/CodeGen/AArch64 bf16-v8-instructions.ll bf16-v4-instructions.ll

Revert "[AArch64][GlobalISel] Clean up and extend BF16 tests. NFC (#196175)" (#196192)

This reverts commit c4091d14fe6dd5c2961d22ef6785a0b25bd73b16 as the new
tests are causing expensive-check failures.
DeltaFile
+880-5,910llvm/test/CodeGen/AArch64/bf16-v8-instructions.ll
+504-3,306llvm/test/CodeGen/AArch64/bf16-v4-instructions.ll
+9-40llvm/test/CodeGen/AArch64/bf16-instructions.ll
+1-0llvm/test/CodeGen/AArch64/itofp-bf16.ll
+1,394-9,2564 files

FreeBSD/ports 65f72b6graphics/nvidia-drm-61-kmod/files patch-nvidia-drm-freebsd-lkpi.c-20250918-01 extra-patch-nvidia-drm-freebsd-lkpi.c-20250918-01, graphics/nvidia-drm-66-kmod/files patch-nvidia-drm-freebsd-lkpi.c-20250918-01 extra-patch-nvidia-drm-freebsd-lkpi.c-20250918-01

x11/nvidia-driver{-devel}, x11/nvidia-kmod{-devel}, x11/linux-nvidia-libs{-devel}, graphics/nvidia-drm*-kmod{-devel}, x11/nvidia-settings, x11/nvidia-xconfig: Update to 595.71.05

Update to latest Production Branch of drivers 595.71.05:
https://www.nvidia.com/en-us/drivers/details/267226/

Linux counterparts for x11/linux-nvidia-libs:
https://www.nvidia.com/en-us/drivers/details/267223/

PR:             295058
Differential Revision:  https://reviews.freebsd.org/D56851
DeltaFile
+0-47graphics/nvidia-drm-latest-kmod/files/patch-nvidia-drm-freebsd-lkpi.c-20250918-01
+47-0graphics/nvidia-drm-latest-kmod/files/extra-patch-nvidia-drm-freebsd-lkpi.c-20250918-01
+0-47graphics/nvidia-drm-66-kmod/files/patch-nvidia-drm-freebsd-lkpi.c-20250918-01
+47-0graphics/nvidia-drm-66-kmod/files/extra-patch-nvidia-drm-freebsd-lkpi.c-20250918-01
+0-47graphics/nvidia-drm-61-kmod/files/patch-nvidia-drm-freebsd-lkpi.c-20250918-01
+47-0graphics/nvidia-drm-61-kmod/files/extra-patch-nvidia-drm-freebsd-lkpi.c-20250918-01
+141-14129 files not shown
+203-19935 files

LLVM/project 1232bc0openmp/device/src Reduction.cpp Mapping.cpp

[OpenMP] Fix incorrect use of align instead of round (#196191)
DeltaFile
+2-2openmp/device/src/Reduction.cpp
+1-1openmp/device/src/Mapping.cpp
+3-32 files

OpenBSD/ports oS0T6opnet/telemt distinfo crates.inc

   update to telemt 3.4.10
VersionDeltaFile
1.5+76-70net/telemt/distinfo
1.5+37-34net/telemt/crates.inc
1.6+1-1net/telemt/Makefile
+114-1053 files

LLVM/project d9b3a60llvm/lib/Target/AMDGPU/AsmParser AMDGPUAsmParser.cpp, llvm/test/MC/AMDGPU gfx1250_asm_vop3_err.s

[AMDGPU] Validate forced lit64() on VOP3 instructions

Lit64 cannot be used with VOP3* but we did not validate it
in case it can be encoded as lit32, but forced with the
operand modifier.
DeltaFile
+23-8llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
+5-0llvm/test/MC/AMDGPU/gfx1250_asm_vop3_err.s
+28-82 files

LLVM/project 3637547libc/src/stdlib environ_internal.cpp environ_internal.h

[libc][stdlib] Use structure bindings instead of output params (#196169)

Refactored alloc_and_copy to return cpp::optional<AllocResult> instead
of using reference-to-pointer output parameters. The combination of char
**& parameters with array new/delete is known to trigger a segfault in
GCC 12's waccess GIMPLE pass.

The AllocResult struct holds the two allocated arrays (storage and
ownership). Call sites use structured bindings to unpack the result
after checking for nullopt.

Hopefully fixes the build failure in PR #195260 on the
libc-x86_64-debian-gcc-fullbuild-dbg builder.

Assisted-by: Automated tooling, human reviewed.
DeltaFile
+14-18libc/src/stdlib/environ_internal.cpp
+11-4libc/src/stdlib/environ_internal.h
+25-222 files

LLVM/project 9f968a8lldb/source/Expression Expression.cpp, lldb/source/Host/macosx/objcxx Host.mm

[lldb] Fix misconstructed log/formatv calls (#196129)

Fixes `LLDB_LOG` and `formatv` source errors found using
https://github.com/llvm/llvm-project/pull/195974
DeltaFile
+5-5lldb/source/Host/macosx/objcxx/Host.mm
+6-3lldb/source/Plugins/ObjectFile/wasm/ObjectFileWasm.cpp
+3-4lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.cpp
+2-3lldb/source/Expression/Expression.cpp
+2-3lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
+2-3lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
+20-218 files not shown
+30-3214 files

OpenBSD/ports tkkgbR0security/gnupg distinfo Makefile

   Update to gnupg-2.5.19

   ChangeLog: https://dev.gnupg.org/T7998
VersionDeltaFile
1.52+2-2security/gnupg/distinfo
1.148+1-1security/gnupg/Makefile
+3-32 files

OpenBSD/ports mX47t2ushells/dash distinfo Makefile

   Update to dash-0.5.13.3
VersionDeltaFile
1.16+2-2shells/dash/distinfo
1.22+1-1shells/dash/Makefile
+3-32 files