LLVM/project 01e089eflang/include/flang/Parser parse-tree-visitor.h

[flang] Remove unnecessary overloads of Walk in parse tree visitor (#175563)

These actions are now performed by the trait-based Walk functions.
DeltaFile
+0-72flang/include/flang/Parser/parse-tree-visitor.h
+0-721 files

FreeBSD/src 2b60e62. RELNOTES

RELNOTES:  Correct commit hash in commit a3f28d70969c
DeltaFile
+1-1RELNOTES
+1-11 files

LLVM/project 48d1636libcxx/include/__memory_resource polymorphic_allocator.h synchronized_pool_resource.h, libcxx/test/libcxx/diagnostics memory_resource.nodiscard.verify.cpp

[libc++][memory_resource] Applied `[[nodiscard]]` (#172134)

`[[nodiscard]]` should be applied to functions where discarding the
return value is most likely a correctness issue.

- https://libcxx.llvm.org/CodingGuidelines.html
- https://wg21.link/mem.res

Towards #172124

---------

Co-authored-by: Hristo Hristov <zingam at outlook.com>
Co-authored-by: Nikolas Klauser <nikolasklauser at berlin.de>
DeltaFile
+57-11libcxx/test/libcxx/mem/mem.res/nodiscard.verify.cpp
+0-25libcxx/test/libcxx/diagnostics/memory_resource.nodiscard.verify.cpp
+4-2libcxx/include/__memory_resource/polymorphic_allocator.h
+4-2libcxx/include/__memory_resource/synchronized_pool_resource.h
+4-2libcxx/include/__memory_resource/memory_resource.h
+1-1libcxx/include/__memory_resource/monotonic_buffer_resource.h
+70-431 files not shown
+71-447 files

LLVM/project a3f6a10flang/include/flang/Parser parse-tree-visitor.h parse-tree.h, flang/lib/Lower/OpenMP Utils.cpp

[flang] Add traits to more AST nodes

Follow-up to PR175211.

There are still a few AST nodes that don't have any of the standard
traits (Wrapper/Tuple/etc). Because of that they require special
handling in the parse tree visitor.

Convert a subset of these nodes to the typical format, and remove the
special cases from the parse tree visitor.

The members of these nodes were frequently used, so instead of extracting
them by hand each time use helper member functions to access them.
DeltaFile
+40-38flang/lib/Semantics/expression.cpp
+0-65flang/include/flang/Parser/parse-tree-visitor.h
+21-24flang/include/flang/Parser/parse-tree.h
+20-19flang/lib/Semantics/resolve-names.cpp
+12-10flang/lib/Lower/OpenMP/Utils.cpp
+10-10flang/lib/Semantics/check-do-forall.cpp
+103-16617 files not shown
+194-24923 files

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

ValueTracking: Fix handling of fadd with mixed denormal modes (#175454)

Fix case where the input mode is IEEE, the output flushes, and the
input could be subnormal. Also improves accuracy with positive zero
case.
DeltaFile
+45-1llvm/test/Transforms/Attributor/nofpclass.ll
+4-1llvm/lib/Analysis/ValueTracking.cpp
+49-22 files

FreeBSD/src a3f28d7. RELNOTES

RELNOTES: Add entry for c558eca47970
DeltaFile
+4-0RELNOTES
+4-01 files

LLVM/project 9ad052ellvm/test/MC/AMDGPU hsa-diag-v4.s unknown-target-cpu.s, llvm/test/MC/Disassembler/AMDGPU decode-err.txt

[AMDGPU] Remove unneeded -show-encoding option from MC tests. NFC. (#175569)

DeltaFile
+7-7llvm/test/MC/AMDGPU/hsa-diag-v4.s
+2-2llvm/test/MC/Disassembler/AMDGPU/decode-err.txt
+1-1llvm/test/MC/AMDGPU/unknown-target-cpu.s
+10-103 files

LLVM/project 9c5708cllvm/test/MC/AMDGPU smem.s gfx1030_err.s

[AMDGPU] Use -filetype=null for more MC tests. NFCI. (#175567)

Following on from #175543 which did the same only for tests not using
`FileCheck -implicit-check-not=error:` or similar.
DeltaFile
+7-7llvm/test/MC/AMDGPU/smem.s
+7-7llvm/test/MC/AMDGPU/gfx1030_err.s
+6-6llvm/test/MC/AMDGPU/sopk-err.s
+6-6llvm/test/MC/AMDGPU/ds_swizzle.s
+6-6llvm/test/MC/AMDGPU/gfx10_asm_err.s
+6-6llvm/test/MC/AMDGPU/sop2.s
+38-38249 files not shown
+444-444255 files

LLVM/project 9864022clang/examples/LLVMPrintFunctionNames CMakeLists.txt, clang/examples/PrintFunctionNames CMakeLists.txt

[CMake][NFC] Don't use uninitialized LLVM_REQUIRES_* (#175554)

LLVM_REQUIRES_* are per-target flags that are never set globally. Yet,
some files used these (undefined) flags for some logic. This patch
emoves these dead checks/unconditionally executes the logic. Note that
the referenced *.exports files are empty, so there is no need to make
related logic conditional on MSVC.
DeltaFile
+2-10clang/examples/LLVMPrintFunctionNames/CMakeLists.txt
+2-10clang/examples/PrintFunctionNames/CMakeLists.txt
+2-7llvm/tools/bugpoint-passes/CMakeLists.txt
+1-1offload/unittests/Conformance/lib/CMakeLists.txt
+7-284 files

LLVM/project a698f7eclang/lib/CrossTU CrossTranslationUnit.cpp

[clang] Prevent sandbox violations in `CrossTranslationUnitContext` (#175097)

This uses the VFS to load a file instead of using
`MemoryBuffer::getBufferForFile()` directly to avoid sandbox violation.
Sandbox is then disabled for `CreateASTUnitFromCommandLine()` which
invokes the driver which is not expected to be free of sandbox
violations.
DeltaFile
+4-1clang/lib/CrossTU/CrossTranslationUnit.cpp
+4-11 files

LLVM/project fd90b7cclang/lib/Frontend ModuleDependencyCollector.cpp

[clang] Bypass sandbox in `ModuleDependencyCollector` (#175220)

This PR disables the sandbox for file collection within
`ModuleDependencyCollector`. This is typically only invoked when the
`-module-dependency-dir` option is specified for generating a crash
report, where the sandbox is not as crucial as for regular compilation.
DeltaFile
+11-5clang/lib/Frontend/ModuleDependencyCollector.cpp
+11-51 files

LLVM/project e531f48llvm/lib/Target/SPIRV SPIRVPostLegalizer.cpp, llvm/test/CodeGen/SPIRV/instructions zext_sext_deduce_type.ll

[SPIRV] Deduce result type for `G_SEXT` and `G_ZEXT` (#175401)

During legalisation we can fold / combine `sext` followed by a widening
via `zext`. Unfortunately, this yields a new result register with no
SPIRV Type, which leads to incorrect behaviour during post legalisation
when we end up deducing the (narrower) type from the operand. This patch
corrects the behaviour in that it ensures that we use the (widened) type
of the result to yield the SPIRV Type for the register.
DeltaFile
+23-0llvm/test/CodeGen/SPIRV/instructions/zext_sext_deduce_type.ll
+2-0llvm/lib/Target/SPIRV/SPIRVPostLegalizer.cpp
+25-02 files

NetBSD/pkgsrc-wip 5924ea8xdg-desktop-portal PLIST Makefile, xdg-desktop-portal/patches patch-src_xdp-sealed-fd.c patch-document-portal_meson.build

xdg-desktop-portal: update to 1.20.3
DeltaFile
+100-3xdg-desktop-portal/PLIST
+50-0xdg-desktop-portal/patches/patch-src_xdp-sealed-fd.c
+40-0xdg-desktop-portal/patches/patch-document-portal_meson.build
+29-3xdg-desktop-portal/Makefile
+30-0xdg-desktop-portal/patches/patch-document-portal_permission-db.c
+25-0xdg-desktop-portal/patches/patch-src_xdp-app-info-flatpak.c
+274-65 files not shown
+356-1011 files

LLVM/project 68239d5llvm/cmake/modules AddLLVM.cmake

[CMake][NFC] Drop unnecessary GTest RTTI define (#175555)

gtest automatically determines GTEST_HAS_RTTI from pre-defined compiler
macros, there is no need to explicitly define this and especially no
need to define this for every single source file.
DeltaFile
+0-3llvm/cmake/modules/AddLLVM.cmake
+0-31 files

FreeBSD/src cf34eb8lib Makefile, usr.bin Makefile

build: Remove duplicate SUBDIR entries

Fixes:  f74f891581bc ("src.opts: Introduce MK_SOUND")
DeltaFile
+0-2usr.bin/Makefile
+0-2usr.sbin/Makefile
+0-1lib/Makefile
+0-53 files

LLVM/project 123b6a2llvm/lib/Transforms/Vectorize VPlanTransforms.cpp

[VPlan] Give VPInstruction::ExplicitVectorLength name. NFC (#175493)

This makes it a tad easier to read VPlan dumps, e.g.

    WIDEN vp.store vp<%7>, ir<%val>, vp<%5>
    ->
    WIDEN vp.store vp<%7>, ir<%val>, vp<%evl>
DeltaFile
+1-1llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+1-11 files

FreeBSD/src 668423fsys/dev/aq aq_hw_llh.c aq_ring.c

aq(4): style(9) cleanup
DeltaFile
+62-34sys/dev/aq/aq_hw_llh.c
+11-7sys/dev/aq/aq_ring.c
+10-6sys/dev/aq/aq_fw.c
+10-5sys/dev/aq/aq_hw.c
+4-2sys/dev/aq/aq_dbg.c
+1-4sys/dev/aq/aq_fw2x.c
+98-585 files not shown
+106-6711 files

FreeBSD/ports b70a688sysutils/mods Makefile

sysutils/mods: Only build on supported architectures

PR:             292305
Reviewed by:    fuz, jrm, vvd
Sponsored by:   The FreeBSD Foundation
DeltaFile
+3-0sysutils/mods/Makefile
+3-01 files

LLVM/project 727ca13flang/include/flang/Parser parse-tree-visitor.h parse-tree.h, flang/lib/Lower/OpenMP Utils.cpp

[flang] Add traits to more AST nodes

Follow-up to PR175211.

There are still a few AST nodes that don't have any of the standard
traits (Wrapper/Tuple/etc). Because of that they require special
handling in the parse tree visitor.

Convert a subset of these nodes to the typical format, and remove the
special cases from the parse tree visitor.

The members of these nodes were frequently used, so instead of extracting
them by hand each time use helper member functions to access them.
DeltaFile
+40-38flang/lib/Semantics/expression.cpp
+0-65flang/include/flang/Parser/parse-tree-visitor.h
+21-24flang/include/flang/Parser/parse-tree.h
+20-19flang/lib/Semantics/resolve-names.cpp
+12-10flang/lib/Lower/OpenMP/Utils.cpp
+10-10flang/lib/Semantics/check-do-forall.cpp
+103-16617 files not shown
+194-24923 files

FreeBSD/ports b59c749graphics/jogl Makefile

graphics/jogl: pin to java 8

After removing source="1.4" from build.xml it still errors on
classes that are removed from jdk11.

gluegen/src/java/net/highteq/nativetaglet/NativeTaglet.java:3: error: package com.sun.tools.doclets does not exist

PR:     292241
Approved-by:    peterj@
DeltaFile
+2-0graphics/jogl/Makefile
+2-01 files

LLVM/project 04e5bc7clang/lib/CodeGen/TargetBuiltins ARM.cpp, clang/test/CodeGen builtins-arm64.c arm_acle.c

[AArch64] Add support for range prefetch intrinsic (#170490)

This patch adds support in Clang for the RPRFM instruction, by adding
the following intrinsics:

```
void __pldx_range(unsigned int *access_kind*, unsigned int retention_policy,
                               signed int length*, unsigned int count, signed int stride,
                               size_t reuse distance,  void const *addr);

void __pld_range(unsigned int access_kind*, unsigned int retention_policy,
                              uint64_t metadata, void const *addr);
```

The `__ARM_PREFETCH_RANGE` macro can be used to test whether these
intrinsics are implemented. If the RPRFM instruction is not available, this
instruction is a NOP.

This implements the following ACLE proposal:
https://github.com/ARM-software/acle/pull/423
DeltaFile
+54-0clang/lib/CodeGen/TargetBuiltins/ARM.cpp
+49-0clang/test/CodeGen/builtins-arm64.c
+22-0clang/test/CodeGen/arm_acle.c
+18-0llvm/test/CodeGen/AArch64/range-prefetch.ll
+14-1clang/test/Sema/builtins-arm64.c
+14-0llvm/lib/Target/AArch64/GISel/AArch64LegalizerInfo.cpp
+171-112 files not shown
+254-118 files

LLVM/project 38023b2flang/include/flang/Parser parse-tree.h, flang/lib/Semantics resolve-names.cpp expression.cpp

format
DeltaFile
+3-3flang/lib/Semantics/resolve-names.cpp
+2-2flang/include/flang/Parser/parse-tree.h
+2-2flang/lib/Semantics/expression.cpp
+7-73 files

LLVM/project 3c45c54llvm/cmake/modules HandleLLVMOptions.cmake AddLLVM.cmake

[CMake] Move RTTI flag calculation to AddLLVM.cmake (#175553)

This should help users who use AddLLVM.cmake without HandleLLVMOptions.
Note that remains MSVC is unlikely to work.

Follow up of #174084.
DeltaFile
+3-12llvm/cmake/modules/HandleLLVMOptions.cmake
+12-0llvm/cmake/modules/AddLLVM.cmake
+15-122 files

pfSense/pfsense 088bf1bsrc/etc/inc priv.defs.inc, src/etc/inc/priv user.priv.inc

Fixup some privilege/tab names. Fixes #16630
DeltaFile
+4-4src/usr/local/www/status_logs_vpn.php
+2-2src/etc/inc/priv/user.priv.inc
+2-2src/etc/inc/priv.defs.inc
+8-83 files

LLVM/project 0899be9flang/lib/Parser parse-tree.cpp

Remove leftover comment
DeltaFile
+0-1flang/lib/Parser/parse-tree.cpp
+0-11 files

LLVM/project 16078f0llvm/include/llvm/Support JSON.h, llvm/lib/Support JSON.cpp

[Support][NFC] Move JSON::dump out-of-line (#175558)

Prevents redundant compilation into all objects that include the header.
DeltaFile
+7-0llvm/lib/Support/JSON.cpp
+1-4llvm/include/llvm/Support/JSON.h
+8-42 files

FreeBSD/doc 0f68b2awebsite/content/en/cgi man.cgi

man.cgi: add SPDX-License-Identifier
DeltaFile
+4-3website/content/en/cgi/man.cgi
+4-31 files

FreeBSD/doc 9d8b641website/content/en/copyright freebsd-doc-license.adoc freebsd-license.adoc

Happy New Year 2026!
DeltaFile
+1-1website/content/en/copyright/freebsd-doc-license.adoc
+1-1website/content/en/copyright/freebsd-license.adoc
+2-22 files

LLVM/project 527d0aflibcxx/include/__numeric midpoint.h

[libc++] Removed unused internal helper functions from the midpoint.h header (#175514)

DeltaFile
+0-5libcxx/include/__numeric/midpoint.h
+0-51 files

FreeBSD/doc 335f026website/content/en/cgi ports.cgi

ports.cgi: add SPDX-License-Identifier
DeltaFile
+2-1website/content/en/cgi/ports.cgi
+2-11 files