LLVM/project dd907edllvm/test/CodeGen/X86 sjlj-do-not-merge-stack-slots.ll

[StackColoring] Introduce test for PR196542 (NFC) (#196951)
DeltaFile
+49-0llvm/test/CodeGen/X86/sjlj-do-not-merge-stack-slots.ll
+49-01 files

LLVM/project fd30f5bclang/include/clang/CIR/Dialect/IR CIRAttrs.td, clang/lib/CIR/CodeGen CIRGenDeclCXX.cpp

[CIR] Implement Namespace/global TLS CIR CodeGen (#196332)

Unlike local TLS, global TLS functions need to be initialized upon their
first use in a thread.

First, all attempts to 'get' said TLS global are replaced with calls to
a 'wrapper' function, which calls an 'init' alias function, then returns
the global. While classic codegen manages to omit this in simple cases
sometimes, this CIR implementation doesn't attempt to do such constant
folding/inlining. The call to the 'init' is omitted if there is no
ctor/dtor setup required, so sometimes the wrapper is just a 'no-op'
(intentionally!).

There are also two types of 'global' TLS functions: unordered, and
ordered. Unordered are typically variable templates, and their 'init'
function initializes JUST them. The rest are ordered, which requires all
ordered initializations to happen as soon as any happen.

The Wrapper:

    [25 lines not shown]
DeltaFile
+65-0clang/test/CIR/CodeGen/global-tls-simple-init.cpp
+59-0clang/include/clang/CIR/Dialect/IR/CIRAttrs.td
+50-0clang/test/CIR/CodeGen/global-tls-dyn-init.cpp
+39-0clang/lib/CIR/CodeGen/CIRGenDeclCXX.cpp
+34-0clang/test/CIR/CodeGen/global-tls-templates.cpp
+18-0clang/test/CIR/IR/invalid-tls.cir
+265-06 files not shown
+294-1612 files

LLVM/project b150adallvm/test/CodeGen/AMDGPU/GlobalISel legalize-load-private.mir legalize-llvm.amdgcn.image.sample.a16.ll

AMDGPU/GlobalISel: Switch to extended LLTs

Switch is required to be able to translate bfloat.

After the switch most of the codegen patterns now require explicit
type on register to match instead of LLT::scalar.
So we can still use LLT::scalar for type checks but new instructions
created during lowerings/combines need to use propper extended LLT.

inst select test sources fully switched to i32/f32 so patterns can match
for legalizer and regbanklegalize left as is (should probably be switched
as well)

New functionality worth noting is f16 and bitcast lowering to i32
f16 = g_bitcast i16
->
i32 = g_anyext i16
f16 = g_trunc i32

f16 = trunc i32 is legal
DeltaFile
+6,753-6,685llvm/test/CodeGen/AMDGPU/GlobalISel/legalize-load-private.mir
+5,732-5,732llvm/test/CodeGen/AMDGPU/GlobalISel/legalize-llvm.amdgcn.image.sample.a16.ll
+5,570-5,519llvm/test/CodeGen/AMDGPU/GlobalISel/legalize-load-local.mir
+5,045-5,045llvm/test/CodeGen/AMDGPU/GlobalISel/legalize-store-global.mir
+5,017-4,999llvm/test/CodeGen/AMDGPU/GlobalISel/legalize-load-global.mir
+3,948-3,900llvm/test/CodeGen/AMDGPU/GlobalISel/legalize-llvm.amdgcn.image.dim.a16.ll
+32,065-31,880581 files not shown
+107,437-105,033587 files

LLVM/project fe69360llvm/lib/Transforms/IPO AlwaysInliner.cpp, llvm/test/Transforms/Inline flatten.ll

Revert "[LLVM] Fix use-after-free in AlwaysInliner flatten worklist (#194485)"

This reverts commit b40c1d511b2e84842707939a1332b90ebb1a50a0.
DeltaFile
+42-39llvm/lib/Transforms/IPO/AlwaysInliner.cpp
+0-38llvm/test/Transforms/Inline/flatten.ll
+42-772 files

LLVM/project b9613dcclang/include/clang/Basic TargetInfo.h, clang/lib/AST ASTContext.cpp

convert to exec-charset inside getPredefinedStringLiteralFromCache, test __builtin_FILE()
DeltaFile
+28-0clang/test/CodeGen/systemz-charset.cpp
+10-0clang/lib/AST/ASTContext.cpp
+5-4clang/lib/Lex/TextEncodingConfig.cpp
+3-0clang/lib/Basic/TargetInfo.cpp
+2-0clang/include/clang/Basic/TargetInfo.h
+48-45 files

LLVM/project c687b82clang/docs LanguageExtensions.rst, clang/include/clang/Options Options.td

Enable driver changes for fexec-charset
DeltaFile
+14-6clang/lib/Driver/ToolChains/Clang.cpp
+14-4clang/include/clang/Options/Options.td
+11-3clang/test/Driver/clang_f_opts.c
+10-0llvm/lib/Support/TextEncoding.cpp
+4-3clang/test/Driver/cl-options.c
+3-3clang/docs/LanguageExtensions.rst
+56-193 files not shown
+60-199 files

LLVM/project 390277bclang/lib/AST PrintfFormatString.cpp FormatString.cpp, clang/lib/Sema SemaChecking.cpp

Add format string handling
DeltaFile
+58-31clang/lib/AST/PrintfFormatString.cpp
+46-40clang/lib/AST/FormatString.cpp
+33-21clang/lib/Sema/SemaChecking.cpp
+25-11clang/lib/AST/FormatStringParsing.h
+15-8clang/lib/AST/ScanfFormatString.cpp
+19-0llvm/lib/Support/TextEncoding.cpp
+196-11111 files not shown
+257-12117 files

LLVM/project ad90e98clang/include/clang/Sema Sema.h

Fix build failure
DeltaFile
+1-0clang/include/clang/Sema/Sema.h
+1-01 files

FreeNAS/freenas 8625b07

Empty commit to create PR on github.

You should reset it
DeltaFile
+0-00 files

FreeNAS/freenas 5d0bbc0src/middlewared/middlewared/plugins/alert alert.py, src/middlewared/middlewared/utils __init__.py

NAS-140959 / 27.0.0-BETA.1 / get rid of misleading bisect function (#18925)

Remove the misleadingly-named `bisect` helper from
`middlewared/utils/__init__.py`. Despite the name, it wasn't a bisection
it was a partition (split an iterable into two lists by predicate),
which collided with Python's stdlib `bisect` module that does binary
search on sorted sequences.

It had a single caller (`plugins/alert/alert.py`, two call sites).
Inlined as a small file-local `partition[T](...)` helper using PEP 695
generic syntax — no TypeVar boilerplate, no shared utility for one
consumer.

## Change

- `middlewared/utils/__init__.py`: dropped `bisect`, the `_V` TypeVar,
and the now-unused `Callable`/`Iterable`/`TypeVar` imports.
- `plugins/alert/alert.py`: added a local `partition` helper with
docstring; updated both call sites; added `Iterable` to the
`TYPE_CHECKING` block.
DeltaFile
+19-4src/middlewared/middlewared/plugins/alert/alert.py
+1-15src/middlewared/middlewared/utils/__init__.py
+20-192 files

NetBSD/pkgsrc vYd2XIwdoc CHANGES-2026

   Updated textproc/py-tomlkit, textproc/ugrep, net/haproxy
VersionDeltaFile
1.2977+4-1doc/CHANGES-2026
+4-11 files

NetBSD/pkgsrc beXwK5Jnet/haproxy distinfo Makefile

   haproxy: updated to 3.3.9

   3.3.9
   - BUG/MINOR: sink: do not free existing sinks on allocation error
   - BUG/MINOR: vars: make parse_store() return error on var_set() failure
   - BUG/MINOR: vars: don't store the variable twice with set-var-fmt
   - BUG/MINOR: vars: only print first invalid char in fill_desc()
   - BUG/MINOR: hpack: validate idx > 0 in hpack_valid_idx()
   - BUG/MEDIUM: cli: fix master CLI connection slot leak on client disconnect
   - BUG/MINOR: acl: fix a possible arg corruption in smp_fetch_acl_parse()
   - BUG/MINOR: map: do not leak a map descriptor on load error
   - CLEANUP: map/cli: fix some map-related help messages
   - BUG/MINOR: pattern: release the reference on failure to load from file
   - CI: github: add DEBUG_STRICT=2 to ASAN jobs
   - BUG/MEDIUM: mux-h2: fix the body_len to check when parsing request trailers
   - BUG/MAJOR: mux-h2: preset MSGF_BODY_CL on H2_SF_DATA_CLEN in h2c_dec_hdrs()
   - BUG/MINOR: dns: always validate the source address in responses
   - BUG/MINOR: tcpcheck: Properly report error for http health-checks
   - BUG/MINOR: resolvers: Free new requester on error when linking a resolution

    [17 lines not shown]
VersionDeltaFile
1.148+4-4net/haproxy/distinfo
1.156+2-2net/haproxy/Makefile
+6-62 files

NetBSD/pkgsrc 2EV4mkHtextproc/ugrep distinfo Makefile

   ugrep: updated to 7.8.1

   7.8.1
   Fixed two issues:

   fix 545 --disable-avx512 tested and working
   fix 544 (same as 537) a bug in the ugrep v7.6 ~ v7.8 (since March 5, 2026) that can't handle very long lines in huge files properly, outputting uninitialized input file buffer contents as if part of the matching line or contents read after the input file buffer as if part of the matching line.
VersionDeltaFile
1.98+4-4textproc/ugrep/distinfo
1.107+2-2textproc/ugrep/Makefile
+6-62 files

FreeNAS/freenas 4b2d839src/middlewared/middlewared/utils __init__.py

fix update crash

(cherry picked from commit f0e3fb7a40a195c0a2d20f1a1a5a834efc509acc)
DeltaFile
+1-6src/middlewared/middlewared/utils/__init__.py
+1-61 files

FreeNAS/freenas ad0a685src/middlewared/middlewared/utils __init__.py

NAS-140958 / 27.0.0-BETA.1 / fix update crash (#18923)

We don't officially support jumping multiple major versions when doing
updates. We have always said that you need to go to the next major
version during upgrade process. However, internally, I was working on
something unrelated and tried to bump an internal system from a nightly
running 25.04 to latest 27 nightly. It failed in a rather peculiar way.
The long-story kept short is that it's failing on an import in
`utils/__init__.py` which is kind of gross. The very simple solution is
to remove the import which I've done in this PR. It's safe to remove
this import because we already set the default executor in`main.py`.
With the changes in this PR, I was able to upgrade the system without
issues.The crash looked something like this:
```
Status: Preparing GRUB configuration
[EFAULT] Error: Command ['chroot', '/tmp/tmp9p1rlsk3', '/usr/local/bin/truenas-grub.py'] failed with exit code -6: Fatal Python error: init_py_struct_prop_state: Hidden property in zfs_prop_table. [src/libzfs/py_zfs_prop.c:148]
Python runtime state: initialized

Current thread 0x00007f7328236100 (most recent call first):

    [80 lines not shown]
DeltaFile
+1-6src/middlewared/middlewared/utils/__init__.py
+1-61 files

LLVM/project 9830c43clang/lib/AST/ByteCode Descriptor.cpp, clang/test/AST/ByteCode literals.cpp

[clang][bytecode] Fix a crash in Descriptor::getElemDataSize() (#196929)

`FIXED_SIZE_INT_TYPE_SWITCH` does not handle `PT_Bool`, handle it
explicitly before.
DeltaFile
+4-0clang/test/AST/ByteCode/literals.cpp
+2-0clang/lib/AST/ByteCode/Descriptor.cpp
+6-02 files

NetBSD/pkgsrc qBAcJ0Wtextproc/py-tomlkit distinfo Makefile

   py-tomlkit: updated to 0.15.0

   0.15.0

   Changed
   - Update parser to support TOML spec v1.1.0.
VersionDeltaFile
1.25+4-4textproc/py-tomlkit/distinfo
1.27+2-2textproc/py-tomlkit/Makefile
+6-62 files

OPNSense/core 869c992src/etc/inc interfaces.inc, src/etc/inc/plugins.inc.d captiveportal.inc

Merge remote-tracking branch 'origin/master' into kea-dynamic-poc
DeltaFile
+70-25src/opnsense/scripts/captiveportal/lib/ipfw.py
+44-47src/etc/inc/plugins.inc.d/captiveportal.inc
+63-24src/etc/inc/interfaces.inc
+67-16src/opnsense/mvc/app/views/OPNsense/Diagnostics/traffic.volt
+65-2src/opnsense/scripts/kea/get_kea_leases.py
+35-22src/opnsense/mvc/app/controllers/OPNsense/Interfaces/Api/VipSettingsController.php
+344-13623 files not shown
+530-24529 files

LLVM/project 9a3193bclang/lib/CodeGen CGOpenMPRuntime.cpp CGExpr.cpp, clang/lib/Sema SemaOpenMP.cpp

[clang][OpenMP 6.0][CodeGen] Codegen for declare_target 'local' clause (#196431)

Implement code generation for the OpenMP 6.0 declare_target 'local'
clause, which creates device-only variables with per-device static
storage.

A 'local' variable exists in the device image with its static
initializer and is always accessed directly by device code. This is the
same as 'to'/'enter' without unified shared memory, except that no
offload entry is registered.

Using 'device_type(nohost)' with 'local' is not yet supported. Sema
generates a warning and converts it to 'device_type(any)'.

Testing:
- Updated tests:
     clang/test/OpenMP/declare_target_messages.cpp
     clang/test/OpenMP/declare_target_ast_print.cpp
- New tests:

    [2 lines not shown]
DeltaFile
+430-0clang/test/OpenMP/declare_target_local_codegen.cpp
+52-0clang/test/OpenMP/declare_target_local_usm_codegen.cpp
+40-0offload/test/offloading/declare_target_local.cpp
+16-10clang/lib/CodeGen/CGOpenMPRuntime.cpp
+9-10clang/lib/CodeGen/CGExpr.cpp
+10-5clang/lib/Sema/SemaOpenMP.cpp
+557-256 files not shown
+581-4712 files

LLVM/project 0aa4619llvm/utils/gn/secondary/clang/lib/CodeGen BUILD.gn, llvm/utils/gn/secondary/llvm/lib/ABI BUILD.gn

[gn] port 07b5dfe9473c6 + deps (LLVMABI dep in clang) (#196944)

Also adds build files for llvm/lib/ABI, which was dead code before
07b5dfe9473c6 (at least in the GN build).
DeltaFile
+15-0llvm/utils/gn/secondary/llvm/lib/ABI/BUILD.gn
+1-0llvm/utils/gn/secondary/clang/lib/CodeGen/BUILD.gn
+16-02 files

LLVM/project 2243f63llvm/lib/Target/AMDGPU/AsmParser AMDGPUAsmParser.cpp

[AMDGPU] Replace vdst_in opcode exclusion list with position check

Use getNamedOperandIdx to detect if vdst_in has already been added
by a prior converter, instead of maintaining a hardcoded opcode list.
DeltaFile
+6-42llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
+6-421 files

OPNSense/ports bb5dadcsecurity/openvpn distinfo Makefile, security/openvpn/files pkg-message.in patch-tests__t_cltsrv.sh

Revert "security/openvpn: sync with upstream"

This reverts commit 79cc01b3d886ca3cac70328d887ca82058f64f1f.

Defer this to avoid premature noise on 26.1.8 since it will be
a long weekend for many.
DeltaFile
+3-14security/openvpn/files/pkg-message.in
+3-3security/openvpn/distinfo
+4-2security/openvpn/Makefile
+3-3security/openvpn/files/patch-tests__t_cltsrv.sh
+3-2security/openvpn/files/openvpn-client.in
+2-2security/openvpn/files/patch-doc_man-sections_generic-options.rst
+18-261 files not shown
+20-277 files

FreeNAS/freenas bde3ecbsrc/middlewared/middlewared/plugins/alert alert.py, src/middlewared/middlewared/utils __init__.py

get rid of misleading bisect func
DeltaFile
+19-4src/middlewared/middlewared/plugins/alert/alert.py
+1-15src/middlewared/middlewared/utils/__init__.py
+20-192 files

LLVM/project a9257f7clang/docs ReleaseNotes.rst, clang/test/CodeGenCXX typeid-most-derived.cpp

address review comments
DeltaFile
+14-14clang/test/CodeGenCXX/typeid-most-derived.cpp
+3-0clang/docs/ReleaseNotes.rst
+17-142 files

NetBSD/pkgsrc gkvoxoOdoc CHANGES-2026

   Updated audio/taglib, graphics/libsquish
VersionDeltaFile
1.2976+3-1doc/CHANGES-2026
+3-11 files

NetBSD/pkgsrc yUVlqyCgraphics/libsquish distinfo Makefile

   libsquish: updated to 1.15.1.4

   1.15.1.4
   https://github.com/oblivioncth/libsquish/compare/v1.15.1.3...v1.15.1.4
VersionDeltaFile
1.2+7-7graphics/libsquish/distinfo
1.2+3-3graphics/libsquish/Makefile
1.2+2-2graphics/libsquish/PLIST
+12-123 files

NetBSD/pkgsrc b7RmxSdaudio/taglib PLIST distinfo

   taglib: updated to 2.3

   TagLib 2.3 (May 10, 2026)

   * MP4: Support for chapters (Nero and QuickTime).
   * WAV: Support for BEXT and iXML chunks.
   * FLAC: Support for BEXT and iXML application blocks.
   * Opus: New audio property `outputGain()`.
   * Speed up Matroska reading by using seek head for element lookup.
   * Speed up Matroska writing by offering multiple write style modes.
   * More tolerant handling of files with oversized RIFF chunks, zero size ID3v2
     frames and Matroska chapters without edition.
   * Avoid wrong content-based detection as MPEG files.
   * Fix bitrate calculations for MPEG ADTS and MP4 ESDS.
   * Fix data race with multi-threaded use of `MP4::ItemFactory`.
   * Fix unbounded recursion in EBML/Matroska `MasterElement` and MP4 atoms.
   * Limit number of MP4 atoms at top level.
   * Fix writing too many offsets when updating MP4 stco/co64 atoms.
   * Fix k bounds in Shorten Rice-Golomb coding.
VersionDeltaFile
1.28+8-3audio/taglib/PLIST
1.35+4-4audio/taglib/distinfo
1.58+2-2audio/taglib/Makefile
+14-93 files

OpenBSD/src LzBdRxilib/libc/sys open.2

   For clarity, improve the __pledge_open documentation
VersionDeltaFile
1.59+7-6lib/libc/sys/open.2
+7-61 files

LLVM/project 75813d0llvm/lib/Transforms/Vectorize LoopVectorizationPlanner.cpp, llvm/test/Transforms/LoopVectorize if-conversion-scalable.ll

[LV] Add test showing lack of gather/scatter can prevent if-convert

This introduces a new force-target-supports-gather-scatter-ops CLI
option for testing, as well a new isLegalMaskedLoadOrStore() helper.
DeltaFile
+120-0llvm/test/Transforms/LoopVectorize/if-conversion-scalable.ll
+7-1llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.cpp
+127-12 files

LLVM/project bc2dedbclang/lib/AST ExprCXX.cpp, clang/test/CodeGenCXX typeid-most-derived.cpp

[clang][AST] Teach `CXXTypeidExpr::isMostDerived` to use `isEffectivelyFinal`
DeltaFile
+57-0clang/test/CodeGenCXX/typeid-most-derived.cpp
+5-0clang/lib/AST/ExprCXX.cpp
+62-02 files