LLVM/project ca70db3clang/lib/AST StmtOpenMP.cpp, clang/lib/Sema SemaOpenMP.cpp

[Clang][OpenMP] Canonicalize Intra-tiles in Loop Tiling (#191114)

This PR canonicalizes the intra-tile loop in OpenMP loop tiling.

Take a simple example:

```cpp
#pragma omp tile sizes(4)
for (int i = 0; i < 6; ++i)
  body(i);
```

`clang` turns the above into **2 nested loops**:

- Outer (aka *floor*) loop iterating in steps of 4.
- Inner (aka *intra-tile*) loop iterating over the tiles — `(0, 1, 2,
3)` and `(4, 5)` — since 6 is not a multiple of 4, this results in the
last **partial tile**.


    [42 lines not shown]
DeltaFile
+1,738-2,433clang/test/OpenMP/interchange_codegen.cpp
+252-450clang/test/OpenMP/tile_codegen.cpp
+200-24clang/lib/Sema/SemaOpenMP.cpp
+174-0clang/test/OpenMP/tile_collapse_reinterpret_codegen.cpp
+168-0clang/test/OpenMP/tile_rect_codegen_ir.cpp
+64-12clang/lib/AST/StmtOpenMP.cpp
+2,596-2,91915 files not shown
+3,129-2,92221 files

LLVM/project 47bafb7llvm/lib/Target/Sparc SparcAsmPrinter.cpp, llvm/test/CodeGen/SPARC inlineasm-global-memory.ll

[SPARC] Preserve inline asm relocation modifiers (#219971)

Make sure that inline assembly that references a global symbol gets the
correct relocation.

sethi %hi(fsr_storage), %i0
st %fsr, [%i0+fsr_storage]
ld [%i0+fsr_storage], %i0
-->
sethi %hi(fsr_storage), %i0
st %fsr, [%i0+%lo(fsr_storage)]
ld [%i0+%lo(fsr_storage)], %i0

(cherry picked from commit cf584bda4c3434086f7fdfebd1c0ce8ecb9423bb)
DeltaFile
+14-0llvm/test/CodeGen/SPARC/inlineasm-global-memory.ll
+12-0llvm/lib/Target/Sparc/SparcAsmPrinter.cpp
+26-02 files

LLVM/project 91d740bclang/lib/Sema SemaConcept.cpp, clang/test/SemaCXX cxx2c-fold-exprs.cpp

release/23.x: Backport '[Clang] Fix C++26 fold expression normalization of PackIndexingExpr'

It turns out that PackIndexingExpr doesn't create any PackExpansionTypes
for unexpanded packs and thus we don't have to remove the packs during the normalization.
DeltaFile
+30-0clang/test/SemaCXX/cxx2c-fold-exprs.cpp
+6-0clang/lib/Sema/SemaConcept.cpp
+36-02 files

LLVM/project 8e18109llvm/lib/Target/LoongArch LoongArchLASXInstrInfo.td, llvm/test/CodeGen/LoongArch/lasx vec-zext-invec.ll vec-sext-invec-mask.ll

[LoongArch] Add omitted LASX patterns for vector extend (#219351)

Adds omitted 128-bit to 256-bit patterns for `sign_extend_vector_inreg`,
including `v16i8 -> v4i64` and `v8i16 -> v4i64`, which will generate by
the combination of `icmp + or/and/xor + zext/sext`, all related tests
are added.

Fix: https://github.com/llvm/llvm-project/issues/219224
(cherry picked from commit 715901096defbb408d9fb1a6f7e1959938d950c8)
DeltaFile
+251-0llvm/test/CodeGen/LoongArch/lasx/vec-sext-invec-mask.ll
+57-0llvm/test/CodeGen/LoongArch/lasx/vec-zext-invec.ll
+20-8llvm/lib/Target/LoongArch/LoongArchLASXInstrInfo.td
+328-83 files

NetBSD/pkgsrc KZ4E6DKsecurity/py-acme Makefile, security/py-certbot distinfo Makefile

   py-acme py-certbot*: updated to 5.8.0

   5.8.0

   Changed

   certbot and its acme library now require cryptography>=47.0.0.

   Fixed

   Fixed removed domains being omitted from the certificate update confirmation prompt.
VersionDeltaFile
1.55+6-9security/py-certbot/Makefile
1.40+6-6security/py-acme/Makefile
1.109+4-4security/py-certbot/distinfo
1.74+4-4security/py-certbot-dns-dnsmadeeasy/distinfo
1.74+4-4security/py-certbot-dns-dnsimple/distinfo
1.67+4-4security/py-certbot-dns-digitalocean/distinfo
+28-3129 files not shown
+102-12135 files

LLVM/project 6b81601llvm/lib/Target/AArch64 AArch64ISelLowering.cpp, llvm/test/CodeGen/AArch64 intrinsic-vector-match-sve2.ll

[AArch64] Widen v3i8/v4i8 VECTOR_MATCH needles (#218972)

The default legalization behaviour for v3i8 and v4i8 types is to promote
them to v4i16. This currently results in VECTOR_MATCH operations with
needles of v3i8/v4i8 needles being expanded for AArch64.

It's generally preferable to widen the needle instead (especially if the
needle is a constant vector, which becomes an immediate splat). For SVE,
this can fold multiple vector compares into a dup + match.
DeltaFile
+111-38llvm/test/CodeGen/AArch64/intrinsic-vector-match-sve2.ll
+32-2llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
+143-402 files

LLVM/project 2c2cffallvm/lib/Transforms/Scalar LoopInterchange.cpp, llvm/test/Transforms/LoopInterchange reduction-minmax-multi-use.ll

[LoopInterchange] Bail out on reductions with uses outside their chain. (#220263)

getMinMaxRecurrence() can return a descriptor for a min/max phi that has
users outside of the reduction chain, e.g. the comparison of an
argmin/argmax idiom. Such descriptors have no loop exit instruction, and
the extra uses make the order in which the elements are visited
observable.

Bail out for such reductions, matching what
canParallelizeReductionWhenUnrolling() already does.

This fixes a crash on the added test cases.

PR: https://github.com/llvm/llvm-project/pull/220263
DeltaFile
+129-0llvm/test/Transforms/LoopInterchange/reduction-minmax-multi-use.ll
+5-0llvm/lib/Transforms/Scalar/LoopInterchange.cpp
+134-02 files

FreeBSD/ports 78dc08cnet-im/py-zapzap Makefile distinfo

net-im/py-zapzap: Update to 7.4.4

ChangeLog:

1. https://github.com/rafatosta/zapzap/releases/tag/7.4.4

Reported by:    Rafael Tosta <notifications at github.com>
DeltaFile
+3-3net-im/py-zapzap/distinfo
+1-1net-im/py-zapzap/Makefile
+4-42 files

NetBSD/pkgsrc 9QdEU6pdoc CHANGES-2026

   Updated net/py-botocore, net/py-s3transfer, net/py-boto3, net/py-awscli
VersionDeltaFile
1.5750+5-1doc/CHANGES-2026
+5-11 files

NetBSD/pkgsrc dgnZ5fWnet/py-awscli distinfo Makefile

   py-awscli: updated to 1.46.1

   1.46.1

   * enhancement:CodeArtifact: Updated npm login to write configuration directly to .npmrc, consistent with how other package manager integrations handle their config files.
   * enhancement:SSM SessionManager: Add warning message for outdated SessionManagerPlugin version


   1.46.0

   * feature:dependencies: Vendor botocore and s3transfer
VersionDeltaFile
1.59+2,178-1net/py-awscli/PLIST
1.85+5-4net/py-awscli/Makefile
1.78+4-4net/py-awscli/distinfo
+2,187-93 files

NetBSD/pkgsrc dq07ul9net/py-boto3 Makefile distinfo

   py-boto3: updated to 1.43.86

   1.43.86

   * api-change:``bedrock-agentcore-control``: [``botocore``] Online evaluation configurations now support up to 25 evaluators. CloudWatch Logs data sources for online evaluation now support up to 10 log groups.
   * api-change:``guardduty``: [``botocore``] Amazon GuardDuty now supports custom detection rules, including APIs to manage rule associations and organization-level configurations.
   * api-change:``iotsitewise``: [``botocore``] AWS IoT SiteWise Scenario Discovery now supports mounting Amazon S3 data directly into pipeline task containers via S3 Access Points, and configuring additional ephemeral storage per task. Mount configurations can be overridden at execution time. See the API guide for details.
   * api-change:``kinesis``: [``botocore``] Amazon Kinesis Data Streams now supports a dry run feature for data-plane APIs to validate the permissions and request parameters. If all checks complete successfully, the API returns a 'DryRunOperationException', confirming the request would have succeeded without the 'DryRun' parameter.
   * api-change:``lambda``: [``botocore``] AWS Lambda now provides configurable control over S3 direct access, allowing you to explicitly enable or disable how functions stream file reads directly from S3 buckets. This gives you flexibility to tune data access behavior based on your workload requirements, independent of memory size.
   * api-change:``lightsail``: [``botocore``] This release adds support for the Amazon Lightsail GetProfile API, which returns the profile for the specified account.
   * api-change:``marketplace-agreement``: [``botocore``] This release adds renewal support for AWS Marketplace private offers. Agreements report whether they renew and, if not, why. Renewal terms add price increases, renewal limits, renewal decision deadlines, and payment schedule templates. SearchAgreements adds filters.
   * api-change:``marketplace-discovery``: [``botocore``] GetOfferTerms now returns renewalTerm for offers with pre-authorized renewals, exposing maxRenewals, lockoutPeriod, adjustmentDeadline, priceIncrease (fixed percentage or percentage range), and termTemplates (renewal payment schedules). Enables buyers to view renewal pricing and terms.
   * api-change:``mediaconvert``: [``botocore``] Adds support for AAC passthrough. Adds ManifestCues option to support HLS manifest Cue marker passthrough. Adds playback device compatibility mode for DASH H.265 outputs. Adds TTML caption styling options. Adds interlace mode support for XAVC HD Intra CBG profile.
   * api-change:``sesv2``: [``botocore``] Added support for managing SMIME signing certificates for email identities, including associating, listing, and disassociating certificates. Added the UpdateConfigurationSet operation to configure message security options such as signing scheme.
   * api-change:``taxsettings``: [``botocore``] France and Monaco Additional Info changes


   1.43.85


    [63 lines not shown]
VersionDeltaFile
1.66+4-4net/py-boto3/distinfo
1.70+2-2net/py-boto3/Makefile
+6-62 files

LLVM/project e4e18dbllvm/lib/Transforms/Scalar ConstraintElimination.cpp, llvm/test/Transforms/ConstraintElimination induction-relational-predicate-latch.ll

[ConstraintElim] Derive IV bound from an relation predicate in latch. (#220107)

A loop whose latch has a relational predicate of the IV post-increment
as exit condition steps *past* the bound rather than landing on it, so
the
existing EQ/NE step reasoning does not apply.

But the condition (IV+Step Pred N) holds for the induction phi each
iteration after the first (when the header is entered via the guarded
 latch).

In the first iteration, the induction phi's value is its start value.
Together with a precondition (Start Pred N), (IV Pred N) hold in each
iteration.

Add this as fact enables removing a few redundant conditions in
practice:
https://github.com/dtcxzyw/llvm-opt-benchmark-nightly/pull/1148.


    [4 lines not shown]
DeltaFile
+715-0llvm/test/Transforms/ConstraintElimination/induction-relational-predicate-latch.ll
+24-11llvm/lib/Transforms/Scalar/ConstraintElimination.cpp
+739-112 files

NetBSD/pkgsrc zTkqgppnet/py-s3transfer Makefile distinfo

   py-s3transfer: updated to 0.19.2

   0.19.2

   bugfix:TLS: Return a configuration error when the CA bundle value (ca_bundle, AWS_CA_BUNDLE, REQUESTS_CA_BUNDLE, or verify) resolves to an empty or whitespace-only string.
VersionDeltaFile
1.30+4-4net/py-s3transfer/distinfo
1.31+2-2net/py-s3transfer/Makefile
+6-62 files

NetBSD/pkgsrc JbBcgPbnet/py-botocore Makefile distinfo

   py-botocore: updated to 1.43.86

   1.43.86

   * api-change:``bedrock-agentcore-control``: Online evaluation configurations now support up to 25 evaluators. CloudWatch Logs data sources for online evaluation now support up to 10 log groups.
   * api-change:``guardduty``: Amazon GuardDuty now supports custom detection rules, including APIs to manage rule associations and organization-level configurations.
   * api-change:``iotsitewise``: AWS IoT SiteWise Scenario Discovery now supports mounting Amazon S3 data directly into pipeline task containers via S3 Access Points, and configuring additional ephemeral storage per task. Mount configurations can be overridden at execution time. See the API guide for details.
   * api-change:``kinesis``: Amazon Kinesis Data Streams now supports a dry run feature for data-plane APIs to validate the permissions and request parameters. If all checks complete successfully, the API returns a 'DryRunOperationException', confirming the request would have succeeded without the 'DryRun' parameter.
   * api-change:``lambda``: AWS Lambda now provides configurable control over S3 direct access, allowing you to explicitly enable or disable how functions stream file reads directly from S3 buckets. This gives you flexibility to tune data access behavior based on your workload requirements, independent of memory size.
   * api-change:``lightsail``: This release adds support for the Amazon Lightsail GetProfile API, which returns the profile for the specified account.
   * api-change:``marketplace-agreement``: This release adds renewal support for AWS Marketplace private offers. Agreements report whether they renew and, if not, why. Renewal terms add price increases, renewal limits, renewal decision deadlines, and payment schedule templates. SearchAgreements adds filters.
   * api-change:``marketplace-discovery``: GetOfferTerms now returns renewalTerm for offers with pre-authorized renewals, exposing maxRenewals, lockoutPeriod, adjustmentDeadline, priceIncrease (fixed percentage or percentage range), and termTemplates (renewal payment schedules). Enables buyers to view renewal pricing and terms.
   * api-change:``mediaconvert``: Adds support for AAC passthrough. Adds ManifestCues option to support HLS manifest Cue marker passthrough. Adds playback device compatibility mode for DASH H.265 outputs. Adds TTML caption styling options. Adds interlace mode support for XAVC HD Intra CBG profile.
   * api-change:``sesv2``: Added support for managing SMIME signing certificates for email identities, including associating, listing, and disassociating certificates. Added the UpdateConfigurationSet operation to configure message security options such as signing scheme.
   * api-change:``taxsettings``: France and Monaco Additional Info changes


   1.43.85


    [63 lines not shown]
VersionDeltaFile
1.63+20-1net/py-botocore/PLIST
1.78+4-4net/py-botocore/distinfo
1.82+2-2net/py-botocore/Makefile
+26-73 files

FreeBSD/ports e26958cx11/ashell Makefile Makefile.crates, x11/ashell/files patch-cargo-crates_inotify-0.11.2_src_fd__guard.rs

x11/ashell: Update to 0.10.0

Changelog: https://github.com/MalpenZibo/ashell/blob/0.10.0/CHANGELOG.md

Reported by:    GitHub (watch releases)
DeltaFile
+315-349x11/ashell/distinfo
+156-173x11/ashell/Makefile.crates
+0-65x11/ashell/files/patch-cargo-crates_inotify-0.11.2_src_fd__guard.rs
+2-3x11/ashell/Makefile
+473-5904 files

FreeBSD/ports 9c5ca27textproc/py-textual-textarea Makefile distinfo

textproc/py-textual-textarea: Update to 0.18.2

ChangeLog:

1. https://github.com/tconbeer/textual-textarea/releases/tag/v0.18.2

Reported by:    "github-actions[bot]" <notifications at github.com>
DeltaFile
+3-3textproc/py-textual-textarea/distinfo
+1-1textproc/py-textual-textarea/Makefile
+4-42 files

LLVM/project c84294fclang/include/clang/CIR/Dialect/IR CIROps.td, clang/lib/CIR/Dialect/IR CIRDialect.cpp

[CIR][NFC] Generate getSuccessorRegions for fixed-region ops

Six of the ten CIR ops implementing RegionBranchOpInterface reported a fixed
list of entry regions and the parent operation on every region exit, which
makes the whole method derivable from the region accessor names. Add a
CIR_FixedRegionBranchOp class that appends the generated definition to the one
inherited from CIR_RegionBranchOpBase, retarget the six ops onto it and delete
their hand-written definitions.

IfOp, GlobalOp, TryOp and AwaitOp stay on the base class, since their entry
edges are not a fixed list: IfOp falls back to the parent when the else region
is empty, GlobalOp skips its optional ctor and dtor regions, TryOp iterates
variadic handler regions, and AwaitOp routes ready to resume and suspend.

The generated CIROps.h.inc is unchanged and CIROps.cpp.inc gains exactly the
six definitions removed from CIRDialect.cpp.
DeltaFile
+0-67clang/lib/CIR/Dialect/IR/CIRDialect.cpp
+31-6clang/include/clang/CIR/Dialect/IR/CIROps.td
+31-732 files

LLVM/project 04376fcclang/include/clang/CIR/Dialect/IR CIROps.td, clang/lib/CIR/Dialect/IR CIRDialect.cpp

[CIR][NFC] Share getSuccessorInputs across region-branch ops

The ten CIR ops implementing RegionBranchOpInterface each hand-wrote
getSuccessorInputs, and all ten bodies were equivalent: regions take no
inputs, and returning to the parent yields the parent's results. Three did
not look equivalent but are: CleanupScopeOp and CoroBodyOp returned an empty
ValueRange unconditionally and declare no results, and AwaitOp returned
region block arguments but carries NoRegionArguments, so those ranges are
always empty.

Add a CIR_RegionBranchOpBase ODS class that declares the method and generates
the single shared body through extraClassDefinition, mirroring the existing
CIR_LoopOpBase, and retarget all ten ops onto it.

The generated CIROps.h.inc is unchanged and CIROps.cpp.inc gains exactly the
ten definitions removed from CIRDialect.cpp.
DeltaFile
+0-57clang/lib/CIR/Dialect/IR/CIRDialect.cpp
+28-20clang/include/clang/CIR/Dialect/IR/CIROps.td
+28-772 files

LLVM/project b1281d1clang/lib/CIR/Dialect/IR CIRDialect.cpp, clang/unittests/CIR ControlFlowTest.cpp

[CIR] Add RegionBranchOpInterface unit tests and fix cir.await successors

Five of the ten ops implementing RegionBranchOpInterface have no unit test
coverage: cir.case, cir.cleanup.scope, cir.global, cir.await and
cir.coro.body. Add tests for all five.

Covering cir.await exposes a disagreement with its own terminator.
cir.condition terminates the ready region and reports {resume, suspend} as
its successors when the parent is an await, but AwaitOp::getSuccessorRegions
listed all three regions as entry successors and reported the parent op as
the successor of every region exit. Fix it to match cir.condition: ready is
the only entry successor, exiting ready branches to resume or suspend, and
exiting suspend or resume returns to the parent operation.

cir.await declares no results and carries NoRegionArguments, so successor
operand and input counts stay at zero along every edge and the MLIR verifier
is unaffected.
DeltaFile
+155-0clang/unittests/CIR/ControlFlowTest.cpp
+20-7clang/lib/CIR/Dialect/IR/CIRDialect.cpp
+175-72 files

LLVM/project 31ef695llvm/lib/Target/AMDGPU AMDGPULowerIntrinsics.cpp, llvm/lib/Target/AMDGPU/AsmParser AMDGPUAsmParser.cpp

[AMDGPU] Validate barrier ID in S_BARRIER_SIGNAL_ISFIRST

Value user_cluster_barrier_id is not supported.
DeltaFile
+3-36llvm/test/CodeGen/AMDGPU/lower-intrinsics-cluster-barrier.ll
+23-0llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
+9-0llvm/test/CodeGen/AMDGPU/llvm.amdgcn.s.barrier.signal.isfirst.invalid_barrier.ll
+5-0llvm/lib/Target/AMDGPU/AMDGPULowerIntrinsics.cpp
+5-0llvm/test/MC/AMDGPU/gfx13_err.s
+3-0llvm/test/MC/AMDGPU/gfx12_err.s
+48-361 files not shown
+49-367 files

LLVM/project 5312769llvm/test/MC/AMDGPU gfx12_err.s

[AMDGPU] Regenerate gfx12_err.s. NFC (#220437)

Wrong tool was recorded in the test header.
DeltaFile
+221-222llvm/test/MC/AMDGPU/gfx12_err.s
+221-2221 files

LLVM/project 2f2aa94lldb/source/Plugins/LanguageRuntime/CPlusPlus ItaniumABIRuntime.cpp, lldb/source/Plugins/SymbolFile/DWARF SymbolFileDWARF.cpp

[lldb] Fallback to `__clang_vtable` for robust dynamic type resolution (#210584)

`ItaniumABIRuntime::GetTypeInfo(...)`'s type resolution relies on the
demangler to locate the type corresponding to a vtable address. As
reported in #182762 this can break when the demangler and debug info
don't agree on the spelling of the type's name.

This PR implements an lookup based on a support member emitted by clang
added in #130255 as `_vtable$`, later renamed to `__clang_vtable` in
#183617. If the demangling based approach fails we fall back to the new
route.

The initial implementation aims to only support the modern spelling with
DWARF.
DeltaFile
+90-2lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABIRuntime.cpp
+38-0lldb/test/API/lang/cpp/dynamic-value-complex-typename/TestDynamicValueComplexTypename.py
+38-0lldb/test/API/lang/cpp/dynamic-value-virtual-inheritance/TestDynamicValueVirtualInheritance.py
+36-0lldb/test/API/lang/cpp/dynamic-value-virtual-inheritance/main.cpp
+34-0lldb/test/API/lang/cpp/dynamic-value-complex-typename/main.cpp
+16-0lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
+252-210 files not shown
+301-216 files

FreeBSD/ports a84d57bsecurity/seal Makefile distinfo

security/seal: Update to 4.4.4
DeltaFile
+3-3security/seal/distinfo
+1-1security/seal/Makefile
+4-42 files

LLVM/project 2e5620ellvm/lib/CodeGen/SelectionDAG LegalizeFloatTypes.cpp, llvm/test/CodeGen/SystemZ soft-float-05.ll

[SelectionDAG] powi and ldexp libcalls deal with signed int arguments (#213673)

While investigating a sign extension problem on an off-tree target that
needs extension of 32-bit integer argument to 64-bit register when
passed as an argument, I found that `__powisf2` was being passed
zero-extended despite the argument being a signed `int`. I narrowed this
down to the fact that `shouldSignExtendTypeInLibCall` was being passed
`false` for `IsSigned` for the `int` argument in these libcalls.

Other libcalls (not an exhaustive review) such as the `XINT_TO_FP`
family do set the `IsSigned` value here.

I utilized the s390x target to write a test for this.
DeltaFile
+48-0llvm/test/CodeGen/SystemZ/soft-float-05.ll
+1-0llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
+49-02 files

LLVM/project 1f4fbe8llvm/lib/Target/RISCV RISCVVectorPeephole.cpp RISCVInstrInfoZvzip.td, llvm/test/CodeGen/RISCV/rvv vmerge-peephole.mir vpaire.ll

[RISCV] Teach the VL Optimizer about Zvzip instructions (#214405)

Set ElementsDependOn = EltDepsNone on the five Zvzip instructions
(VZIP_VV, VUNZIPE_V, VUNZIPO_V, VPAIRE_VV, VPAIRO_VV) so the pass no
longer conservatively treats their result elements as depending on VL
and Mask (beyond masking of inactive lanes).

Wire the opcodes into the VL Optimizer's operand model:

 - getOperandLog2EEW: all five instructions return MILog2SEW (source
   and destination EEW both equal SEW).

 - getOperandInfo: for VZIP_VV, widen the destination and passthru
   EMUL by 2x since it interleaves two LMUL inputs into one 2xLMUL
   result. For VUNZIPE_V / VUNZIPO_V, widen the EMUL of the vs2
   source operand by 2x instead, as the split consumes a 2xLMUL
   vector and produces an LMUL even/odd half. VPAIRE_VV / VPAIRO_VV
   leave EMUL unchanged on every operand.

Assisted-by: TRAE CLI (Seed-2.1-Turbo)
DeltaFile
+186-1llvm/test/CodeGen/RISCV/rvv/vl-opt-op-info.mir
+54-4llvm/lib/Target/RISCV/RISCVVLOptimizer.cpp
+32-24llvm/test/CodeGen/RISCV/rvv/vpaire.ll
+19-2llvm/test/CodeGen/RISCV/rvv/vmerge-peephole.mir
+5-3llvm/lib/Target/RISCV/RISCVInstrInfoZvzip.td
+4-2llvm/lib/Target/RISCV/RISCVVectorPeephole.cpp
+300-366 files

FreeBSD/ports 2f7bcf6devel/py-coverage Makefile distinfo

devel/py-coverage: Update to 7.16.0

Changes:        https://coverage.readthedocs.io/en/7.16.0/changes.html
DeltaFile
+3-3devel/py-coverage/distinfo
+1-1devel/py-coverage/Makefile
+4-42 files

LLVM/project 3cf119allvm/lib/ExecutionEngine/Orc SelfExecutorProcessControl.cpp, llvm/lib/ExecutionEngine/Orc/TargetProcess OrcRTBootstrap.h OrcRTBootstrap.cpp

[ORC] Register SPS run-as function wrappers with SelfEPC (#220224)

#213265 replaced the direct `ExecutorProcessControl::runAsVoidFunction`
and `runAsIntFunction` calls in `COFFPlatform` and
`COFFVCRuntimeSupport` with SPS call proxies. The target-process
bootstrap registers the corresponding executor-side wrappers for
`SimpleRemoteEPC`, but SelfEPC does not register them. In-process
clients using these paths therefore fail to resolve:

```text
orc_rt_ci_sps_call_int32_void
orc_rt_ci_sps_call_int32_int32
```

This patch factors registration of the two existing run-as function
wrappers out of the complete target-process bootstrap set and adds that
narrow set to SelfEPC.

SelfEPC already provides in-process memory access directly, so it does

    [14 lines not shown]
DeltaFile
+29-0llvm/unittests/ExecutionEngine/Orc/SPSProxySpecTest.cpp
+8-4llvm/lib/ExecutionEngine/Orc/TargetProcess/OrcRTBootstrap.cpp
+4-0llvm/lib/ExecutionEngine/Orc/TargetProcess/OrcRTBootstrap.h
+3-0llvm/lib/ExecutionEngine/Orc/SelfExecutorProcessControl.cpp
+44-44 files

LLVM/project 9c79a77llvm/lib/Target/RISCV RISCVISelLowering.cpp, llvm/test/CodeGen/RISCV/rvv vabd.ll

[RISCV] Fix result type checks in the VWABDA DAG combine (#220497)

Fix the result element type check in `performVWABDACombine`. The result
of the widening add operation has already been widened, so the expected
element types are `i16` and `i32`, rather than `i8` and `i16`. The
previous check prevented the i16-i32 form from being combined.
DeltaFile
+34-0llvm/test/CodeGen/RISCV/rvv/vabd.ll
+2-2llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+36-22 files

LLVM/project 3accf66clang/include/clang/CIR/Dialect/IR CIROps.td, clang/lib/CIR/Dialect/IR CIRDialect.cpp

[CIR][NFC] Generate getSuccessorRegions for fixed-region ops

Six of the ten CIR ops implementing RegionBranchOpInterface reported a fixed
list of entry regions and the parent operation on every region exit, which
makes the whole method derivable from the region accessor names. Extend
CIR_RegionBranchOpBase with an entryRegions parameter that generates it and
delete the six hand-written definitions.

IfOp, GlobalOp, TryOp and AwaitOp keep theirs, since their entry edges are not
a fixed list: IfOp falls back to the parent when the else region is empty,
GlobalOp skips its optional ctor and dtor regions, TryOp iterates variadic
handler regions, and AwaitOp routes ready to resume and suspend.

The generated CIROps.h.inc is unchanged and CIROps.cpp.inc gains exactly the
six definitions removed from CIRDialect.cpp.
DeltaFile
+0-67clang/lib/CIR/Dialect/IR/CIRDialect.cpp
+33-14clang/include/clang/CIR/Dialect/IR/CIROps.td
+33-812 files

NetBSD/pkgsrc bZrqEDNprint/foliate Makefile

   print/foliate: fix the DEPENDS line.
VersionDeltaFile
1.57+2-2print/foliate/Makefile
+2-21 files