LLVM/project b559a53libcxx/docs/Status Cxx26Papers.csv Cxx23Papers.csv

[libc++][docs] Avoid talking about other implementations on DR status (#210637)

Standard library implementations consistently treat (or will
consistently treat) some LWG papers as Defect Reports that are also
applied to old modes, despite that they are not officially listed as
Defect Reports in WG21 meeting minutes. We used to say "other
implementations (namely MSVC STL and libstdc++) will do the same" for
some of them.

However, such sentences will become outdated soon when other
implementations actually do so. It is possibly better to avoid saying
so, which potentially requires synchronizing our documentation with
other implementations.
DeltaFile
+3-3libcxx/docs/Status/Cxx26Papers.csv
+2-2libcxx/docs/Status/Cxx23Papers.csv
+1-1libcxx/docs/Status/Cxx26Issues.csv
+1-1libcxx/docs/Status/Cxx17Papers.csv
+7-74 files

LLVM/project dbd3c08flang/lib/Lower Bridge.cpp, flang/lib/Lower/OpenMP OpenMP.cpp

Merge branch 'main' into users/el-ev/_itaniumdemangle_fix_template_args_subst
DeltaFile
+648-0flang/test/Lower/OpenMP/collapse-imperfect-nest.f90
+0-428flang/lib/Lower/Bridge.cpp
+241-0mlir/lib/Dialect/EmitC/Transforms/MLGOAddReflectionMap.cpp
+216-4flang/lib/Lower/OpenMP/OpenMP.cpp
+181-0mlir/test/Dialect/EmitC/mlgo-add-reflection-map.mlir
+24-141llvm/test/CodeGen/ARM/fp-intrinsics-vector.ll
+1,310-57381 files not shown
+2,722-1,08087 files

LLVM/project d2e70aalldb/source/Plugins/DynamicLoader/MacOSX-DYLD DynamicLoaderDarwin.cpp DynamicLoaderDarwin.h

[lldb] Remove unused method DynamicLoaderDarwin::ImageInfo::FindSegment (#210155)

This method is unused.
DeltaFile
+0-10lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp
+0-2lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.h
+0-122 files

LLVM/project ee121ecclang/test/Driver amdgpu-xnack-sramecc-flags.c, llvm/lib/Target/AMDGPU AMDGPUAsmPrinter.cpp

AMDGPU: Use module flags to control xnack and sramecc

This ensures these ABI details are encoded in the IR module
rather than depending on external state from command-line flags.
Previously, these were encoded as function-level subtarget features.
The code object output was a single target ID directive implied
by the global subtarget. The backend would previously check if a
function's subtarget feature mismatched the global subtarget. This
is avoided by making xnack and sramecc module-level properties from
the start. This also provides proper linker compatibility
enforcement, moving the error point earlier.

The old encoding was also an abuse of the subtarget feature system.
Subtarget features are a bitvector, and later features in the string
can override earlier ones. The old handling added a special case
where explicit settings were preserved: ordinarily +feature,-feature
should result in the feature being disabled, but +xnack,-xnack would
preserve the explicit "-xnack" state, which differs from the absence
of any xnack setting.

    [25 lines not shown]
DeltaFile
+52-52llvm/test/CodeGen/AMDGPU/directive-amdgcn-target-legacy-triples.ll
+30-46llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
+75-0llvm/test/CodeGen/AMDGPU/module-flag-xnack.ll
+36-33clang/test/Driver/amdgpu-xnack-sramecc-flags.c
+66-0llvm/test/CodeGen/AMDGPU/module-flag-sramecc.ll
+54-0llvm/test/CodeGen/AMDGPU/module-flag-xnack-no-on-off-modes.ll
+313-13193 files not shown
+1,154-36299 files

LLVM/project 50ffad6flang/docs fstack-arrays.md, flang/include/flang/Optimizer/Passes CommandLineOpts.h

[flang] Enable allocation-placement pass by default

Make the unified allocation-placement pass the default in the FIR optimizer
pipeline in place of the legacy stack-arrays and memory-allocation-opt passes,
by defaulting -enable-allocation-placement to true. Passing
-enable-allocation-placement=false restores the legacy passes for comparison.

Add a -disable-allocation-placement switch that skips the pass entirely (wired
through addAllocationPlacement like the other optimizer passes), so codegen
tests can opt out of placement policy independently of the legacy fallback.

Update the pipeline-dump tests to expect AllocationPlacement, and disable the
pass in the alloca/allocmem codegen tests (alloc.fir, coordinateof.fir) so they
keep testing lowering rather than placement policy. Document the unified pass,
its policy, thresholds, and options in fstack-arrays.md.
DeltaFile
+64-0flang/docs/fstack-arrays.md
+10-3flang/lib/Optimizer/Passes/CommandLineOpts.cpp
+8-5flang/lib/Optimizer/Passes/Pipelines.cpp
+6-6flang/test/Fir/allocation-placement-pipeline.fir
+6-2flang/include/flang/Optimizer/Passes/CommandLineOpts.h
+4-2flang/test/Fir/alloc.fir
+98-185 files not shown
+104-2311 files

LLVM/project 83ba8adcompiler-rt/cmake/Modules AddCompilerRT.cmake, compiler-rt/lib/asan asan_ignorelist.txt

[compiler-rt] Move sanitizer ignorelists to sanitizer-ignorelists target (#200518)

This adds a `sanitizer-ignorelists` target to compiler-rt, allowing the
ignorelists to be built independently of the sanitizer runtimes. The
ignorelists are still built by default, but this change is not quite
NFC: when any of the sanitizers are built, all of the ignorelists will
be included (rather than the individual runtime ignorelists being built
with their respective runtimes).

For _why_ we want to be able to build these independently of the
runtimes, see
https://github.com/llvm/llvm-project/pull/195690#issuecomment-4384573223

I did not move the dfsan abilist to this new target because it is not as
straightforward as a copying a static file.

Assisted-by: Claude

rdar://175962064
DeltaFile
+45-0compiler-rt/lib/sanitizer_ignorelists/CMakeLists.txt
+13-17compiler-rt/cmake/Modules/AddCompilerRT.cmake
+0-17compiler-rt/lib/cfi/cfi_ignorelist.txt
+17-0compiler-rt/lib/sanitizer_ignorelists/cfi_ignorelist.txt
+14-0compiler-rt/lib/sanitizer_ignorelists/asan_ignorelist.txt
+0-14compiler-rt/lib/asan/asan_ignorelist.txt
+89-489 files not shown
+116-7015 files

LLVM/project 543c7cellvm/include/llvm/Passes CodeGenPassBuilder.h, llvm/lib/Target/AMDGPU AMDGPUTargetMachine.cpp

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+7-12llvm/include/llvm/Passes/CodeGenPassBuilder.h
+4-4llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp
+0-2llvm/test/CodeGen/X86/llc-pipeline-npm.ll
+0-1llvm/test/CodeGen/Lanai/llc-pipeline-npm.ll
+11-194 files

LLVM/project 331e564mlir/include/mlir/Dialect/EmitC/IR EmitC.td, mlir/include/mlir/Dialect/EmitC/Transforms Passes.td Transforms.h

[mlir][EmitC] Create a pass to add a reflection map to a class (#205464)

This creates the `add-reflection-map` pass to add a reflection map and a
helper method to EmitC classes for runtime field lookup.

Details:
- Add headers to import `map` and `string` if not already present.
- For every `ClassOp`:
- Collect all the `FieldOp`s that contain the attribute whose value we
want as the reflection map key. We ignore all `FieldOp`s that contain an
attribute present in `excludedFieldAttrs` and if there's a `FieldOp`
that neither has the attribute we're looking for and isn't excluded by
the presence of one of the `excludedFieldAttrs`, emit and error.
- Create the reflection map where the key is the value of the attribute
in each applicable `FieldOp`'s attribute dictionary and the value is a
pointer to the field's contents.
- Create a `getBufferForName` method which serves as a getter method for
the reflection map.


    [6 lines not shown]
DeltaFile
+241-0mlir/lib/Dialect/EmitC/Transforms/MLGOAddReflectionMap.cpp
+181-0mlir/test/Dialect/EmitC/mlgo-add-reflection-map.mlir
+79-0mlir/test/Target/Cpp/mlgo-add-reflection-map.mlir
+40-0mlir/include/mlir/Dialect/EmitC/Transforms/Passes.td
+8-0mlir/include/mlir/Dialect/EmitC/Transforms/Transforms.h
+1-1mlir/include/mlir/Dialect/EmitC/IR/EmitC.td
+550-12 files not shown
+553-18 files

FreeBSD/ports 2416c07irc/weechat distinfo Makefile

irc/weechat: Security update to 4.9.4

Security:       f4c57c5a-845a-11f1-b72c-8447094a420f
MFH:            2026Q3
(cherry picked from commit cb767af8707a0447c1f0fd234d30b13453677103)
DeltaFile
+3-3irc/weechat/distinfo
+1-1irc/weechat/Makefile
+4-42 files

LLVM/project cfddcacflang/test/Semantics/OpenMP metadirective-loop-nest.f90

[flang][OpenMP] Fix new metadirective-loop-nest.f90 test expectation with collapse changes in #208528 (#210753)
DeltaFile
+1-1flang/test/Semantics/OpenMP/metadirective-loop-nest.f90
+1-11 files

FreeBSD/ports cb767afirc/weechat distinfo Makefile

irc/weechat: Security update to 4.9.4

Security:       f4c57c5a-845a-11f1-b72c-8447094a420f
MFH:            2026Q3
DeltaFile
+3-3irc/weechat/distinfo
+1-1irc/weechat/Makefile
+4-42 files

FreeBSD/ports 1d5795asecurity/vuxml/vuln 2026.xml

security/vuxml: Fix version in previous Weechat vuln
DeltaFile
+1-1security/vuxml/vuln/2026.xml
+1-11 files

FreeBSD/ports f16a2e9security/vuxml/vuln 2026.xml

security/vuxml: Register Weechat vulnerabilities
DeltaFile
+26-0security/vuxml/vuln/2026.xml
+26-01 files

LLVM/project 68b9dbbflang/include/flang/Optimizer/Passes CommandLineOpts.h, flang/lib/Optimizer/Passes CommandLineOpts.cpp Pipelines.cpp

[flang] Add command-line control of allocation-placement thresholds

Expose the small-array byte-size threshold and the per-function stack budget
used by the allocation-placement pass as shared command-line options
(-allocation-placement-small-array-size and -allocation-placement-stack-limit),
and thread them through addAllocationPlacement so the pipeline honors them.
DeltaFile
+12-0flang/lib/Optimizer/Passes/CommandLineOpts.cpp
+8-0flang/include/flang/Optimizer/Passes/CommandLineOpts.h
+2-2flang/lib/Optimizer/Passes/Pipelines.cpp
+22-23 files

LLVM/project 160f9c1flang/lib/Parser openacc-parsers.cpp, flang/test/Parser acc-unparse.f90

[flang][OpenACC] Allow blanks around ':' in more clause separators (#210446)

Several OpenACC clause parsers glue a keyword directly to its `:`
separator in the token string (`"DEVNUM:"`, `"QUEUES:"`, `"FORCE:"`,
`"ZERO:"`, `"READONLY:"`). A blank in a `TokenStringMatch` pattern is
the only place a blank is accepted between characters of the token, so
these spellings rejected an otherwise valid separating space, e.g.

```fortran
!$acc wait(devnum : 1 : 2, 3)
!$acc loop collapse(force : 2)
!$acc data copyin(readonly : a) create(zero : b)
```

This moves the blank in each token string to before the `:` so zero or
more blanks are accepted on either side of the separator, matching
free-form Fortran's treatment of blanks and the spec grammar (which
writes these with spaces around the `:`). It mirrors the earlier fix for
the gang `static`/`dim`/`num` arguments.

    [5 lines not shown]
DeltaFile
+25-0flang/test/Parser/acc-unparse.f90
+5-5flang/lib/Parser/openacc-parsers.cpp
+30-52 files

FreeBSD/doc 363d64cwebsite/content/en/status/report-2026-04-2026-06 sylve.adoc

Status/2026Q2: grammar
DeltaFile
+1-1website/content/en/status/report-2026-04-2026-06/sylve.adoc
+1-11 files

FreeNAS/freenas c7f2fc9src/middlewared/middlewared/plugins/directoryservices_ ipa_join_mixin.py secrets.py, src/middlewared/middlewared/utils/directoryservices ipa_constants.py

Fix IPA SMB machine account setup and self-heal old joins

Set the SMB machine-account password from the generated value when
retrieving the keytab and write that same value to secrets.tdb as raw
bytes, so the keytab and secrets.tdb agree. Report changesecretpw
stderr on failure and drop the unawaited backup() call.

Regenerate smb.conf before creating the SMB service principal so the
machine account uses the current NetBIOS name, and make principal
creation failures fatal so partial joins roll back.

Stamp a credential version in secrets.tdb; the IPA health check
regenerates the SMB machine account in place, via the host credential,
for systems joined by an earlier build that wrote it wrong. Expose the
same regeneration as an explicit recovery action.

Add unit and integration tests.
DeltaFile
+110-42src/middlewared/middlewared/plugins/directoryservices_/ipa_join_mixin.py
+69-0tests/unit/test_directoryservices_secrets.py
+47-0tests/directory_services/test_ipa_join.py
+35-5src/middlewared/middlewared/plugins/directoryservices_/secrets.py
+18-0src/middlewared/middlewared/plugins/directoryservices_/ipa_health_mixin.py
+7-0src/middlewared/middlewared/utils/directoryservices/ipa_constants.py
+286-472 files not shown
+288-488 files

LLVM/project b80af9cmlir/lib/Dialect/XeGPU/Transforms XeGPUUnroll.cpp, mlir/test/Dialect/XeGPU xegpu-blocking.mlir

[MLIR][XeGPU] Enhance unrolling of convert layout (#209822)

This PR adds rewriteWithRegrouping to unroll ConvertLayoutOp by
extracting at the input inst_data granularity and inserting at the
target inst_data granularity for cancellation during canonicalization.

Assisted by Claude
DeltaFile
+111-15mlir/lib/Dialect/XeGPU/Transforms/XeGPUUnroll.cpp
+48-5mlir/test/Dialect/XeGPU/xegpu-blocking.mlir
+159-202 files

LLVM/project bdfcef5clang/docs ReleaseNotes.md, clang/include/clang/AST PrettyPrinter.h

[clang] improve diagnostics for enums (#204682)

This patch makes clang attempt printing enumerator names rather than
C-style cast expressions in more diagnostics (notably static_assert) iff
the value matches an enumerator exactly.

For example, consider a static assertion `static_assert(E ==
TestEnum::B);` where `E` is a constant template argument. Assuming
`(TestEnum)1 == TestEnum::A`, this changes emitted diagnostics as
follows:
```
// old
static assertion failed due to requirement '(TestEnum)1 == TestEnum::B'

// new
static assertion failed due to requirement 'TestEnum::A == TestEnum::B'
```
DeltaFile
+64-0clang/test/SemaCXX/static-assert.cpp
+18-0clang/lib/AST/StmtPrinter.cpp
+6-1clang/include/clang/AST/PrettyPrinter.h
+3-0clang/test/AST/ast-print-enum-decl.c
+3-0clang/docs/ReleaseNotes.md
+1-1clang/test/Misc/diag-template-diffing-cxx11.cpp
+95-22 files not shown
+97-28 files

FreeBSD/ports 0b93a7bnet-mgmt/librenms distinfo Makefile

net-mgmt/librenms: Update to 26.7.0

re: https://github.com/librenms/librenms/releases/tag/26.7.0

This release requires a database update.

Sponsored by:   Yes
DeltaFile
+5-5net-mgmt/librenms/distinfo
+2-2net-mgmt/librenms/Makefile
+7-72 files

LLVM/project 272378eclang/include/clang/Sema Sema.h, clang/lib/Sema SemaOverload.cpp

[clang][NFC] Extract LookupOverloadedUnaryOp (#210567)

This patch extracts `LookupOverloadedUnaryOp` from
`CreateOverloadedUnaryOp` for consistency with
`LookupOverloadedBinOp`/`CreateOverloadedBinOp`.
DeltaFile
+19-16clang/lib/Sema/SemaOverload.cpp
+6-0clang/include/clang/Sema/Sema.h
+25-162 files

FreeBSD/src f6e0e0dsbin/ipf/ippool ippool.5, sys/netinet/libalias libalias.3

man: Fix RFC 1918 network prefix lengths

According to RFC 1918, the following IP prefixes are reserved for
private internets:

    10.0.0.0/8
    172.16.0.0/12
    192.168.0.0/16

This PR fixes the prefix lengths in references to private networks
("RFC 1918 networks", "the standard private IP address ranges").
The changes are limited to man pages.

Signed-off-by:  Yusuke Ichiki <public at yusuke.pub>
Pull Request:   https://github.com/freebsd/freebsd-src/pull/2328

(cherry picked from commit 1403ca10189c47ad1de3915eeb030deddc114685)
DeltaFile
+3-3sys/netinet/libalias/libalias.3
+1-1sbin/ipf/ippool/ippool.5
+4-42 files

FreeBSD/src 047effasbin/ipf/ippool ippool.5, sys/netinet/libalias libalias.3

man: Fix RFC 1918 network prefix lengths

According to RFC 1918, the following IP prefixes are reserved for
private internets:

    10.0.0.0/8
    172.16.0.0/12
    192.168.0.0/16

This PR fixes the prefix lengths in references to private networks
("RFC 1918 networks", "the standard private IP address ranges").
The changes are limited to man pages.

Signed-off-by:  Yusuke Ichiki <public at yusuke.pub>
Pull Request:   https://github.com/freebsd/freebsd-src/pull/2328

(cherry picked from commit 1403ca10189c47ad1de3915eeb030deddc114685)
DeltaFile
+2-2sys/netinet/libalias/libalias.3
+1-1sbin/ipf/ippool/ippool.5
+3-32 files

LLVM/project 4158229clang/lib/Sema SemaCXXScopeSpec.cpp, clang/test/SemaTemplate destructor-template.cpp

[clang] fix a crash for uses of a pseudo-destructor of enum without definition (#210424)

Lookup for the destuctor name in the object type only applies to record
types.

Since this will be backported, there are no release notes.

Fixes #209808
DeltaFile
+7-0clang/test/SemaTemplate/destructor-template.cpp
+1-1clang/lib/Sema/SemaCXXScopeSpec.cpp
+8-12 files

LLVM/project 53136bdflang/lib/Lower Bridge.cpp

[flang][NFC] Remove unreachable legacy FORALL/WHERE lowering code from Bridge.cpp (#210639)

The HLFIR lowering migration left a cluster of legacy, now-unreachable
code in Bridge.cpp behind. None of it has a live caller (FORALL is
lowered by genForallNest; DO CONCURRENT by getConcurrentControl):

- forceControlVariableBinding and the old DoLoopOp-based genFIR(const
parser::ConcurrentHeader &) FORALL-nest lowering (the ConcurrentHeader
is not a PFT evaluation node and is never visited).
- The member genInitializerExprValue, implicitIterationSpace/
explicitIterationSpace, genArrayAssignment, and the NDEBUG-only
isFuncResultDesignator.
- The analyzeExplicitSpace overload set, analyzeExplicitSpacePop, and
addMaskVariable.
  - The explicitIterSpace / implicitIterSpace members.

These were the only Bridge.cpp users of the legacy expression lowering
(createSome*Assignment / createSomeInitializerExpression) and of
IterationSpace, so their includes (ConvertExpr.h, IterationSpace.h, and

    [2 lines not shown]
DeltaFile
+0-428flang/lib/Lower/Bridge.cpp
+0-4281 files

FreeBSD/ports 75f2d79devel/buf distinfo Makefile

devel/buf: update 1.71.0 → 1.72.0
DeltaFile
+5-5devel/buf/distinfo
+2-3devel/buf/Makefile
+7-82 files

FreeBSD/ports a983bdemisc/eightctl distinfo Makefile

misc/eightctl: update g20260418 → 0.2.1
DeltaFile
+7-85misc/eightctl/distinfo
+5-47misc/eightctl/Makefile
+12-1322 files

FreeBSD/ports 73c17aemisc/grok-build distinfo Makefile

misc/grok-build: update 0.2.103 → 0.2.106
DeltaFile
+5-5misc/grok-build/distinfo
+1-1misc/grok-build/Makefile
+6-62 files

FreeBSD/ports d4d0412net/mihomo distinfo Makefile

net/mihomo: update 1.19.28 → 1.19.29
DeltaFile
+5-5net/mihomo/distinfo
+3-3net/mihomo/Makefile
+8-82 files

FreeBSD/ports cabc72dmisc/sonoscli distinfo Makefile

misc/sonoscli: update 0.3.3 → 0.3.4
DeltaFile
+5-5misc/sonoscli/distinfo
+2-2misc/sonoscli/Makefile
+7-72 files