LLVM/project 6e8c2dcclang/lib/ScalableStaticAnalysisFramework/Core/Serialization/JSONFormat TUSummary.cpp LUSummaryEncoding.cpp, clang/unittests/ScalableStaticAnalysisFramework EntityLinkerTest.cpp

Revert "Reland "[clang][ssaf] Track target triple in TU and LU summaries"" (#204236)

Reverts llvm/llvm-project#204218

Fails amdgpu buildbots
DeltaFile
+1-24clang/lib/ScalableStaticAnalysisFramework/Core/Serialization/JSONFormat/TUSummary.cpp
+1-24clang/lib/ScalableStaticAnalysisFramework/Core/Serialization/JSONFormat/LUSummaryEncoding.cpp
+1-24clang/lib/ScalableStaticAnalysisFramework/Core/Serialization/JSONFormat/LUSummary.cpp
+1-24clang/lib/ScalableStaticAnalysisFramework/Core/Serialization/JSONFormat/TUSummaryEncoding.cpp
+9-12clang/unittests/ScalableStaticAnalysisFramework/EntityLinkerTest.cpp
+0-16clang/lib/ScalableStaticAnalysisFramework/Core/Serialization/JSONFormat/JSONFormatImpl.cpp
+13-124170 files not shown
+175-566176 files

LLVM/project 3aea0a0llvm/utils/gn/secondary/clang/lib/CodeGen BUILD.gn

[gn build] Port 930a46d23799 (#204244)
DeltaFile
+1-0llvm/utils/gn/secondary/clang/lib/CodeGen/BUILD.gn
+1-01 files

LLVM/project 4fd2a5cllvm/lib/BinaryFormat Magic.cpp, llvm/unittests/BinaryFormat TestFileMagic.cpp

[BinaryFormat] Fix UBSan negative-shift in identify_magic Mach-O path (#204122)

`identify_magic()` read the Mach-O filetype field at offset 12 by
left-shifting four bytes of the input StringRef:
```
    type = Magic[12] << 24 | Magic[13] << 12 | Magic[14] << 8 | Magic[15];
```
`StringRef::operator[]` returns a `signed char`. When a header byte has
its
high bit set (e.g. 0xFA == -6 after promotion to int), the expression
"-6 << 24" is undefined behavior; even positive bytes like 0xFF promote
to a value whose "<< 24" overflows a signed int. UBSan trapped this on a
crafted input found by lldb-target-fuzzer:

```
    Magic.cpp:177:26: runtime error: left shift of negative value -6
    SUMMARY: UndefinedBehaviorSanitizer: undefined-behavior
    libFuzzer: deadly signal
```

    [26 lines not shown]
DeltaFile
+2-2llvm/lib/BinaryFormat/Magic.cpp
+4-0llvm/unittests/BinaryFormat/TestFileMagic.cpp
+6-22 files

LLVM/project 1915af8llvm/lib/Target/AMDGPU/Disassembler AMDGPUDisassembler.cpp, llvm/test/MC/AMDGPU amdgcn_target_directive_from_eflags.s

AMDGPU: Teach disassembler to produce target id directives (#203979)

Inspect the binary's e_flags to reproduce the .amdgcn_target directive.
This is a step towards round-trip disassembly without depending
on command line state specifying the subtarget. I wasn't sure
where to put the emission to ensure it is always emitted. I
also do not know why it's OK to just write to outs(), but that's
what the other directives here were doing.

Co-Authored-By: Claude Opus 4.6 <noreply at anthropic.com>
DeltaFile
+72-0llvm/test/MC/AMDGPU/amdgcn_target_directive_from_eflags.s
+53-0llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp
+4-4llvm/test/tools/llvm-objdump/ELF/AMDGPU/kd-gfx11.s
+4-4llvm/test/tools/llvm-objdump/ELF/AMDGPU/kd-gfx10.s
+3-3llvm/test/tools/llvm-objdump/ELF/AMDGPU/kd-vgpr.s
+3-3llvm/test/tools/llvm-objdump/ELF/AMDGPU/kd-gfx90a.s
+139-1410 files not shown
+161-2616 files

LLVM/project c8d735dlibcxx/include/__numeric pstl.h transform_reduce.h, libcxx/test/libcxx/numerics nodiscard.verify.cpp

[libc++][numeric] Applied `[[nodiscard]]` to `<numeric>` (#202770)

https://libcxx.llvm.org/CodingGuidelines.html#apply-nodiscard-where-relevant

Applied `[[nodiscard]]` to the remaining functions.

Towards: https://github.com/llvm/llvm-project/issues/172124

This PR also eliminates
libcxx/test/libcxx/numerics/nodiscard.verify.cpp, which was misplaced
and contained unrelated tests. These tests were moved to where they
belong. This refactoring is included in this PR as the change is also
related to `<numeric>`.

Reference:
- https://eel.is/c++draft/numeric.ops.overview
- https://eel.is/c++draft/numeric.ops

---------

Co-authored-by: Hristo Hristov <zingam at outlook.com>
DeltaFile
+131-0libcxx/test/libcxx/numerics/numeric.ops/nodiscard.verify.cpp
+0-48libcxx/test/libcxx/numerics/nodiscard.verify.cpp
+6-6libcxx/include/__numeric/pstl.h
+4-4libcxx/include/__numeric/transform_reduce.h
+4-4libcxx/include/__numeric/reduce.h
+2-2libcxx/include/__numeric/accumulate.h
+147-643 files not shown
+155-689 files

LLVM/project 0677ebellvm/lib/Transforms/Vectorize VPlanRecipes.cpp

[VPlan] Use getSingleUser to improve code (NFC) (#203882)
DeltaFile
+3-7llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
+3-71 files

LLVM/project 94f6b80llvm/include/llvm/IR IntrinsicsAMDGPU.td, llvm/lib/Target/AMDGPU AMDGPUInstructionSelector.cpp SIISelLowering.cpp

[AMDGPU] Guard more intrinsics with target features
DeltaFile
+1-51llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp
+0-42llvm/lib/Target/AMDGPU/SIISelLowering.cpp
+0-24llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp
+15-2llvm/include/llvm/IR/IntrinsicsAMDGPU.td
+4-4llvm/test/CodeGen/AMDGPU/unsupported-av-store.ll
+4-4llvm/test/CodeGen/AMDGPU/unsupported-av-load.ll
+24-12712 files not shown
+45-14318 files

LLVM/project 53695bbllvm/lib/Target/RISCV RISCVInstrInfoC.td RISCVInstrInfoXqci.td

[𝘀𝗽𝗿] initial version

Created using spr 1.3.8-beta.1
DeltaFile
+30-30llvm/lib/Target/RISCV/RISCVInstrInfoC.td
+25-25llvm/lib/Target/RISCV/RISCVInstrInfoXqci.td
+18-18llvm/lib/Target/RISCV/RISCVInstrInfoZc.td
+16-16llvm/lib/Target/RISCV/RISCVInstrInfoXwch.td
+6-6llvm/lib/Target/RISCV/RISCVInstrInfoZclsd.td
+1-1llvm/lib/Target/RISCV/RISCVInstrInfo.td
+96-966 files

LLVM/project e9faee6lldb/packages/Python/lldbsuite/test dotest.py

[lldb][test] Skip watchpoint and expression tests on WebAssembly (#204235)

WebAssembly has no watchpoint support (Process/wasm reports no
watchpoints; the stop reason comes back as a plain signal) and cannot
JIT or interpret expressions (ProcessWasm sets CanJIT to false). Teach
the existing per-platform category checks about wasm so the whole
"watchpoint" and "expression" categories are skipped, rather than
decorating each test individually.
DeltaFile
+15-0lldb/packages/Python/lldbsuite/test/dotest.py
+15-01 files

FreeNAS/freenas b0034f7tests/api2 test_200_ftp.py test_boot_attach_replace_detach.py

api2: fix FTP default import and skip boot attach/replace/detach test

test_200_ftp: FTPModel moved to ftp.config submodule when the plugin
was converted to the typesafe pattern; update the generated script's
import accordingly.

test_boot_attach_replace_detach: skip until IT can provide larger
disks; current disks lack space for the required boot partitions.
DeltaFile
+1-1tests/api2/test_200_ftp.py
+1-0tests/api2/test_boot_attach_replace_detach.py
+2-12 files

LLVM/project 1190787clang/lib/CodeGen CodeGenAction.cpp, llvm/lib/CodeGen/SelectionDAG SelectionDAGBuilder.cpp

[RFC][CodeGen] Add generic target feature checks for intrinsics

This PR adds target-independent infrastructure for annotating LLVM intrinsics
with required subtarget feature expressions.

It introduces a TargetFeatures string field to intrinsic TableGen records.
TableGen emits an intrinsic-to-feature mapping table.

Both SelectionDAG and GlobalISel now perform this check before lowering target
intrinsics. This allows targets to opt in by annotating intrinsic definitions
directly, rather than adding custom checks during lowering, legalization, or
instruction selection.

This PR uses one AMDGPU intrinsic as an example.
DeltaFile
+96-3llvm/lib/MC/MCSubtargetInfo.cpp
+37-0clang/lib/CodeGen/CodeGenAction.cpp
+36-0llvm/lib/IR/DiagnosticInfo.cpp
+33-1llvm/utils/TableGen/Basic/IntrinsicEmitter.cpp
+28-0llvm/test/TableGen/intrinsic-target-features.td
+25-0llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+255-414 files not shown
+391-920 files

FreeNAS/freenas 81e75a8src/middlewared/middlewared/test/integration/utils shell.py, tests/api2 test_audit_websocket.py test_reporting_realtime.py

NAS-141383 / 26.0.0-RC.1 / Fix a few API tests (by anodos325) (#19134)

* Reporting realtime shows stats on boot pool and so we should expect
it.

* pam / auth stack now properly reports in *audit* messages why the
authentication failed (minimally including PAM error code).

* harden our webshell tests

Original PR: https://github.com/truenas/middleware/pull/19133

Co-authored-by: Andrew Walker <andrew.walker at truenas.com>
DeltaFile
+47-28src/middlewared/middlewared/test/integration/utils/shell.py
+5-1tests/api2/test_audit_websocket.py
+5-1tests/api2/test_reporting_realtime.py
+57-303 files

LLVM/project 7e26ecbllvm/include/llvm/IR IntrinsicsAMDGPU.td, llvm/lib/Target/AMDGPU AMDGPUInstructionSelector.cpp SIISelLowering.cpp

[AMDGPU] Guard more intrinsics with target features
DeltaFile
+1-51llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp
+0-42llvm/lib/Target/AMDGPU/SIISelLowering.cpp
+0-24llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp
+14-0llvm/include/llvm/IR/IntrinsicsAMDGPU.td
+4-4llvm/test/CodeGen/AMDGPU/unsupported-av-load.ll
+4-4llvm/test/CodeGen/AMDGPU/unsupported-av-store.ll
+23-12512 files not shown
+44-14118 files

LLVM/project b2c9be7clang/lib/CodeGen CodeGenAction.cpp, llvm/lib/CodeGen/SelectionDAG SelectionDAGBuilder.cpp

[RFC][CodeGen] Add generic target feature checks for intrinsics

This PR adds target-independent infrastructure for annotating LLVM intrinsics
with required subtarget feature expressions.

It introduces a TargetFeatures string field to intrinsic TableGen records.
TableGen emits an intrinsic-to-feature mapping table.

Both SelectionDAG and GlobalISel now perform this check before lowering target
intrinsics. This allows targets to opt in by annotating intrinsic definitions
directly, rather than adding custom checks during lowering, legalization, or
instruction selection.

This PR uses one AMDGPU intrinsic as an example.
DeltaFile
+96-3llvm/lib/MC/MCSubtargetInfo.cpp
+37-0clang/lib/CodeGen/CodeGenAction.cpp
+36-0llvm/lib/IR/DiagnosticInfo.cpp
+33-1llvm/utils/TableGen/Basic/IntrinsicEmitter.cpp
+32-0llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+28-0llvm/test/TableGen/intrinsic-target-features.td
+262-414 files not shown
+398-920 files

FreeBSD/src 556e793bin/sh sh.1

sh: Improve function documentation

* Mention that the function body can be in parentheses.  It is already
  implied since the function body can be any valid statement, but it may
  not be obvious to a reader who has only ever seen functions that used
  curly brackets and assumes that they are part of the function syntax.

* Remove the incorrect claim that a local statement may only occur at
  the top of a function.

* Show that a value may be assigned to a variable in a local statement.

* While here, replace unpaired double quotes with \(dq to avoid
  confusing syntax highlighters.

PR:             296050
MFC after:      1 week
Reviewed by:    ziaee, jilles
Differential Revision:  https://reviews.freebsd.org/D57596
DeltaFile
+16-9bin/sh/sh.1
+16-91 files

LLVM/project cab48fallvm/lib/Target/RISCV RISCVRegisterInfo.td, llvm/test/MC/RISCV rv32c-invalid.s rv64c-invalid.s

[𝘀𝗽𝗿] initial version

Created using spr 1.3.8-beta.1
DeltaFile
+12-12llvm/test/MC/RISCV/rv32c-invalid.s
+4-4llvm/test/MC/RISCV/rv64c-invalid.s
+2-2llvm/test/MC/RISCV/rvc-hints-invalid.s
+2-2llvm/test/MC/RISCV/xqcibm-invalid.s
+1-0llvm/lib/Target/RISCV/RISCVRegisterInfo.td
+21-205 files

FreeBSD/src 34e1553lib/libpfctl libpfctl.c, sbin/pfctl pfctl_radix.c

pfctl: pfctl_get_astats() doesn't set errno

After commit 08f54dfca197 pfctl_get_astats() doesn't set errno anymore,
except in one place.  Fix up that one place and adjust callers
appropriately.

Reviewed by:    kp
Fixes:          08f54dfca197 ("pf: convert DIOCRGETASTATS to netlink")
Differential Revision:  https://reviews.freebsd.org/D57608
DeltaFile
+8-1sbin/pfctl/pfctl_radix.c
+2-4lib/libpfctl/libpfctl.c
+3-3usr.sbin/bsnmpd/modules/snmp_pf/pf_snmp.c
+13-83 files

LLVM/project 4033370clang/lib/ScalableStaticAnalysisFramework/Core/Serialization/JSONFormat LUSummaryEncoding.cpp TUSummary.cpp, clang/unittests/ScalableStaticAnalysisFramework EntityLinkerTest.cpp

Revert "Reland "[clang][ssaf] Track target triple in TU and LU summaries" (#2…"

This reverts commit 9434d4ab865319c443826c2eb408329d0011dc71.
DeltaFile
+1-24clang/lib/ScalableStaticAnalysisFramework/Core/Serialization/JSONFormat/LUSummaryEncoding.cpp
+1-24clang/lib/ScalableStaticAnalysisFramework/Core/Serialization/JSONFormat/TUSummary.cpp
+1-24clang/lib/ScalableStaticAnalysisFramework/Core/Serialization/JSONFormat/LUSummary.cpp
+1-24clang/lib/ScalableStaticAnalysisFramework/Core/Serialization/JSONFormat/TUSummaryEncoding.cpp
+9-12clang/unittests/ScalableStaticAnalysisFramework/EntityLinkerTest.cpp
+0-16clang/lib/ScalableStaticAnalysisFramework/Core/Serialization/JSONFormat/JSONFormatImpl.cpp
+13-124170 files not shown
+175-566176 files

LLVM/project fee56f1llvm/lib/Target/AMDGPU/AsmParser AMDGPUAsmParser.cpp, llvm/lib/Target/AMDGPU/Utils AMDGPUBaseInfo.cpp AMDGPUBaseInfo.h

AMDGPU: Refactor AMDGPUTargetID to not store MCSubtargetInfo

Store the triple string and GPUKind instead. The dependence
on checking AMDHSA seems like an anti-feature, but maintain the
behavior of not printing the modifiers for other OSes. Start
parsing the target ID instead of performing a direct string
comparison. Also improve test coverage for the treatment of the
environment component of the triple. The main behavioral change
is this will now produce normalized triples in the output and
diagnostics. Practially, this means all of the places that
currently emit "--" will be expanded into "-unknown-".

Co-Authored-By: Claude Opus 4.6 <noreply at anthropic.com>
DeltaFile
+79-36llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
+36-10llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
+27-1llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h
+16-0llvm/test/MC/AMDGPU/amdgcn-target-directive-triple-env.s
+5-5llvm/test/MC/AMDGPU/hsa-diag-v4.s
+4-4llvm/test/MC/AMDGPU/isa-version-pal.s
+167-5615 files not shown
+197-7621 files

LLVM/project 4e5d348llvm/lib/Target/AMDGPU/Disassembler AMDGPUDisassembler.cpp, llvm/test/MC/AMDGPU amdgcn_target_directive_from_eflags.s

AMDGPU: Teach disassembler to produce target id directives

Inspect the binary's e_flags to reproduce the .amdgcn_target directive.
This is a step towards round-trip disassembly without depending
on command line state specifying the subtarget. I wasn't sure
where to put the emission to ensure it is always emitted. I
also do not know why it's OK to just write to outs(), but that's
what the other directives here were doing.

Co-Authored-By: Claude Opus 4.6 <noreply at anthropic.com>
DeltaFile
+72-0llvm/test/MC/AMDGPU/amdgcn_target_directive_from_eflags.s
+53-0llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp
+4-4llvm/test/tools/llvm-objdump/ELF/AMDGPU/kd-gfx10.s
+4-4llvm/test/tools/llvm-objdump/ELF/AMDGPU/kd-gfx11.s
+3-3llvm/test/tools/llvm-objdump/ELF/AMDGPU/kd-vgpr.s
+3-3llvm/test/tools/llvm-objdump/ELF/AMDGPU/kd-sgpr.s
+139-1410 files not shown
+161-2616 files

LLVM/project e8b2205llvm/lib/Target/AMDGPU GCNSchedStrategy.cpp, llvm/test/CodeGen/AMDGPU vgpr-excess-threshold-percent.ll vgpr-excess-threshold-percent-invalid.ll

[AMDGPU] Add flag to control VGPR pressure limits (#203797)

The RP trackers don't accurately measure the RA problem, and can
underestimate the number of registers required. Currently, for VGPR
pressure, we account for these inaccuracies using VGPRLimitBias, and
ErrorMargin. These are used to reduce the VGPRCriticalLimit /
VGPRExcessLimit . During scheduling, we check RP against these limits,
and if we start to see RP exceeding these limits, we will trigger RP
reduction heuristics (when deciding which instructions to schedule
next). Thus VGPRLimitBias + ErrorMargin effectively reduce the amount of
allowable RP during scheduling, as a means to compensate for RP tracker
inaccuracies. Currently, ErrorMargin is set to 3, and VGPRLimitBias is
set to 0.

However, the degree of inaccuracy tends to scale with the number of
registers we have available for allocation. In other words, the RP
trackers inaccuracy is better expressed as a percent of the register
budget, rather than some literal value. This PR adds some functionality
to express this inaccuracy compensation is a percent - and exposes a

    [7 lines not shown]
DeltaFile
+194-0llvm/test/CodeGen/AMDGPU/vgpr-excess-threshold-percent.ll
+44-2llvm/lib/Target/AMDGPU/GCNSchedStrategy.cpp
+13-0llvm/test/CodeGen/AMDGPU/vgpr-excess-threshold-percent-invalid.ll
+251-23 files

LLVM/project b3d0487llvm/lib/Target/AMDGPU GCNHazardRecognizer.cpp SIInstrInfo.h

[AMDGPU] NFC: Obviously show isVALU includes LDSDMA instructions (#203548)

In https://reviews.llvm.org/D124472 we started labelling LDSDMA as VALU
-- this was due to SPG stating that these instructions act as both
memory + VALU instructions.

This is buried in the isVALU methods - I'd argue that most users without
knowledge of this characteristic would not expect this behavior, and
looking at the implementation of these methods, there is nothing that
would suggest this behavior. This PR forces users to confront this
characteristic and decide if that is what they want to do for their
usecase.

I've personally seen at least two bugs in upstream code caused by this,
and have seen it cause problems a dozen + times in downstream code / in
WIP things.
DeltaFile
+61-49llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp
+19-7llvm/lib/Target/AMDGPU/SIInstrInfo.h
+11-8llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
+3-5llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
+4-4llvm/lib/Target/AMDGPU/AMDGPUIGroupLP.cpp
+3-3llvm/lib/Target/AMDGPU/SIISelLowering.cpp
+101-767 files not shown
+114-8713 files

FreeNAS/freenas 3b10616src/middlewared/middlewared/utils/account authenticator.py, tests/stig test_03_stig_auditing.py conftest.py

Fix missing 2FA account flag and re-enable STIG tests

AccountFlag.TWOFACTOR was set in _get_user_obj() based on
self.twofactor_user, which only becomes true after the PAM OATH
conversation runs -- i.e. it was always false at that point. As a
result 2FA web sessions never carried the '2FA' flag and
validate_stig() rejected every credential, blocking STIG
enablement. This is why the suite had been failing for months.

Set TWOFACTOR in authenticate_oath() on success instead, where
the second factor has actually been verified, mirroring how OTPW
is recorded. Drop the now-dead check from _get_user_obj().

Re-enable tests/stig test_01 and test_02 and restore the conftest
server setup. test_03 stays skipped: its auditd-event checks need
the auditd daemon (Debian auditd.service + tnaudit), which is
managed outside middleware.
DeltaFile
+8-2tests/stig/test_03_stig_auditing.py
+5-5src/middlewared/middlewared/utils/account/authenticator.py
+2-5tests/stig/conftest.py
+0-3tests/stig/test_01_stig.py
+0-2tests/stig/test_02_openssl.py
+15-175 files

LLVM/project 698648fllvm/include/llvm/Transforms/Vectorize/SandboxVectorizer DependencyGraph.h Scheduler.h, llvm/lib/Transforms/Vectorize/SandboxVectorizer DependencyGraph.cpp Scheduler.cpp

[SandboxVec][DAG] Implement UnscheduledPreds API (#201240)

Mirroring UnscheduledSuccs, this patch adds an UnscheduledPreds DAG node
counter that counts how many predecessors are not scheduled yet.

It also renames the existing ready() to readyBottomUp() to help us
differentiate between the two variants that are now available.
DeltaFile
+145-9llvm/unittests/Transforms/Vectorize/SandboxVectorizer/DependencyGraphTest.cpp
+26-4llvm/include/llvm/Transforms/Vectorize/SandboxVectorizer/DependencyGraph.h
+20-4llvm/lib/Transforms/Vectorize/SandboxVectorizer/DependencyGraph.cpp
+7-0llvm/unittests/Transforms/Vectorize/SandboxVectorizer/SchedulerTest.cpp
+3-3llvm/lib/Transforms/Vectorize/SandboxVectorizer/Scheduler.cpp
+1-1llvm/include/llvm/Transforms/Vectorize/SandboxVectorizer/Scheduler.h
+202-216 files

FreeBSD/ports 0e9715bsysutils/boxrun distinfo Makefile

sysutils/boxrun: Update to 0.4.3

ChangeLog:
  - support for VNET/epair networking
  - support for devfs, and mountpoints
  - several security improvements
  - bugfixes

MFH:            2026Q2
(cherry picked from commit 1f686502344979246e35b30a6972388660bc672b)
DeltaFile
+3-3sysutils/boxrun/distinfo
+1-1sysutils/boxrun/Makefile
+4-42 files

LLVM/project 1b4d463llvm/test/ExecutionEngine/MCJIT frem.ll, llvm/tools/lli CMakeLists.txt

[MCJIT] Fix frem.ll test failure with LLVM_ENABLE_RPMALLOC on Windows (#200319)

When compiled with `LLVM_ENABLE_RPMALLOC`, `lli.exe` links statically to
the runtime. With `LLVM_EXPORT_SYMBOLS_FOR_PLUGINS` enabled, `lli.exe`
exports a subset of symbols from the runtime library, but not all. In
particular, `printf()` is exported from the application binary, but
`fflush()` and `exit()` are not. For a JITted module, unresolved
external symbols are loaded either from the application or dynamic
libraries, in this case, from `msvcrt.dll`. The `MCJIT/frem.ll` test
attempts to flush the output, but because the functions resolve to
different CRT instances, the output data is lost.

The patch avoids the test failure by disabling exporting symbols from
`lli.exe` when it is linked with the static runtime library.
DeltaFile
+15-1llvm/tools/lli/CMakeLists.txt
+0-2llvm/test/ExecutionEngine/MCJIT/frem.ll
+15-32 files

FreeBSD/ports 1f68650sysutils/boxrun distinfo Makefile

sysutils/boxrun: Update to 0.4.3

ChangeLog:
  - support for VNET/epair networking
  - support for devfs, and mountpoints
  - several security improvements
  - bugfixes

MFH:            2026Q2
DeltaFile
+3-3sysutils/boxrun/distinfo
+1-1sysutils/boxrun/Makefile
+4-42 files

LLVM/project dcd41b4llvm/include/llvm/Target TargetSelectionDAG.td, llvm/lib/Target/X86 X86InstrFragmentsSIMD.td X86InstrAVX512.td

[X86] Extend alignedstore PatFrag to cover atomic_store (#197861)

Smaller FP vectors (`<N x half>`, `<N x bfloat>`) are left to the DAG
widen path on subtargets without native FP16/BF16 support; the
v8f16/v8bf16 bitconvert variants added to the Atomic Store Split
commit's patterns let the
widened path collapse to a single instruction on AVX+ targets.

Store-side counterpart to #148899 (and now
https://github.com/llvm/llvm-project/pull/199520). Stacked on top of
https://github.com/llvm/llvm-project/pull/201980; and below of
https://github.com/llvm/llvm-project/pull/201566.
DeltaFile
+86-0llvm/test/CodeGen/X86/atomic-load-store.ll
+4-2llvm/lib/Target/X86/X86InstrFragmentsSIMD.td
+3-2llvm/lib/Target/X86/X86InstrAVX512.td
+1-1llvm/include/llvm/Target/TargetSelectionDAG.td
+94-54 files

LLVM/project 3a7f3fdllvm/test/Transforms/SLPVectorizer/RISCV rotated-strided-loads.ll

[SLP] Add test demonstrating bug in widened strided store logic (#204012)

See #204011
DeltaFile
+418-0llvm/test/Transforms/SLPVectorizer/RISCV/rotated-strided-loads.ll
+418-01 files

FreeBSD/ports dfda477devel/py-maturin distinfo Makefile.crates

devel/py-maturin: Update to 1.14.0

Changelog:

https://github.com/PyO3/maturin/releases/tag/v1.14.0
DeltaFile
+9-9devel/py-maturin/distinfo
+3-3devel/py-maturin/Makefile.crates
+1-2devel/py-maturin/Makefile
+13-143 files