@@ -8974,11 +8982,104 @@ void LoopVectorizationPlanner::attachRuntimeChecks(
assert((!CM.OptForSize ||
CM.Hints->getForce() == LoopVectorizeHints::FK_Enabled) &&
"Cannot SCEV check stride or overflow when optimizing for size");
-VPlanTransforms::a
@@ -8974,11 +8982,104 @@ void LoopVectorizationPlanner::attachRuntimeChecks(
assert((!CM.OptForSize ||
CM.Hints->getForce() == LoopVectorizeHints::FK_Enabled) &&
"Cannot SCEV check stride or overflow when optimizing for size");
-VPlanTransforms::a
kiranchandramohan wrote:
Thanks for the explanation @kparzysz. Please treat my question as a passthrough
comment. Feel free to go ahead.
https://github.com/llvm/llvm-project/pull/168884
___
llvm-branch-commits mailing list
[email protected]
https://github.com/daniilavdeev updated
https://github.com/llvm/llvm-project/pull/164813
>From f11530834eb375c8003e996ba1385089911170b2 Mon Sep 17 00:00:00 2001
From: Daniil Avdeev
Date: Thu, 18 Sep 2025 02:05:39 +
Subject: [PATCH 1/4] [dwarf] make dwarf fission compatible with RISCV
relax
https://github.com/Meinersbur approved this pull request.
LGTM
https://github.com/llvm/llvm-project/pull/168884
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/ilovepi approved this pull request.
https://github.com/llvm/llvm-project/pull/168972
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
ritter-x2a wrote:
One thing that's not ideal with this patch is that the lowering for memsets
with large statically known sizes wastes registers with the SelectionDAG ISel:
In this case, the IR lowering uses a `<64xi32>` store in the main memset loop.
We correctly legalize this into 16 dwordx4
llvmbot wrote:
@llvm/pr-subscribers-backend-amdgpu
Author: Fabian Ritter (ritter-x2a)
Changes
This patch changes the memset lowering to match the optimized memcpy lowering.
The memset lowering now queries TTI.getMemcpyLoopLoweringType for a preferred
memory access type. If that type is lar
https://github.com/ritter-x2a ready_for_review
https://github.com/llvm/llvm-project/pull/169040
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
@@ -2244,17 +2244,49 @@ bool
SIFrameLowering::allocateScavengingFrameIndexesNearIncomingSP(
return true;
}
+static bool isLiveIntoMBB(MCRegister Reg, MachineBasicBlock &MBB,
slinder1 wrote:
@arsenm I pushed a version which just walks regunit roots, see
ht
https://github.com/kasuga-fj created
https://github.com/llvm/llvm-project/pull/169048
None
>From 1ced6d1a40418905c97f57126c2b5cbfba136ea6 Mon Sep 17 00:00:00 2001
From: Ryotaro Kasuga
Date: Fri, 21 Nov 2025 13:57:06 +
Subject: [PATCH] [Delinarization] Add test for inferred array size excee
kasuga-fj wrote:
> [!WARNING]
> This pull request is not mergeable via GitHub because a downstack PR is
> open. Once all requirements are satisfied, merge this PR as a stack href="https://app.graphite.com/github/pr/llvm/llvm-project/169048?utm_source=stack-comment-downstack-mergeability-warning
https://github.com/evelez7 updated
https://github.com/llvm/llvm-project/pull/168972
>From ea76e818bfa0c6ee1b414b82e7f14841707c532f Mon Sep 17 00:00:00 2001
From: Erick Velez
Date: Thu, 20 Nov 2025 15:46:21 -0800
Subject: [PATCH] [clang-doc] `` must be nested in ``
The HTML spec states that onl
Author: Stefan Gränitz
Date: 2025-11-21T19:08:05+01:00
New Revision: 6195f9e528fbc1775c0f8fbfce20d3df18db732a
URL:
https://github.com/llvm/llvm-project/commit/6195f9e528fbc1775c0f8fbfce20d3df18db732a
DIFF:
https://github.com/llvm/llvm-project/commit/6195f9e528fbc1775c0f8fbfce20d3df18db732a.diff
https://github.com/evelez7 updated
https://github.com/llvm/llvm-project/pull/168972
>From ea76e818bfa0c6ee1b414b82e7f14841707c532f Mon Sep 17 00:00:00 2001
From: Erick Velez
Date: Thu, 20 Nov 2025 15:46:21 -0800
Subject: [PATCH] [clang-doc] `` must be nested in ``
The HTML spec states that onl
@@ -11944,7 +11944,7 @@ SDValue SITargetLowering::LowerLOAD(SDValue Op,
SelectionDAG &DAG) const {
AS == AMDGPUAS::CONSTANT_ADDRESS_32BIT ||
(AS == AMDGPUAS::GLOBAL_ADDRESS &&
Subtarget->getScalarizeGlobalBehavior() && Load->isSimple() &&
- isMemOpHasN
boomanaiden154 wrote:
> Is llvm-project-tests still used? I wonder if we can just delete the whole
> file?
In the release branch, yes. We haven't back ported the patches to fully remove
it. Not sure it's worth doing that for just the SPIRV/libclang tests.
https://github.com/llvm/llvm-project/
https://github.com/tstellar approved this pull request.
https://github.com/llvm/llvm-project/pull/168985
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
tstellar wrote:
Is llvm-project-tests still used? I wonder if we can just delete the whole
file?
https://github.com/llvm/llvm-project/pull/168987
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/m
https://github.com/tstellar approved this pull request.
https://github.com/llvm/llvm-project/pull/168987
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/slinder1 edited
https://github.com/llvm/llvm-project/pull/164724
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
github-actions[bot] wrote:
Thank you for submitting a Pull Request (PR) to the LLVM Project!
This PR will be automatically labeled and the relevant teams will be notified.
If you wish to, you can add reviewers by using the "Reviewers" section on this
page.
If this is not working for you, it
https://github.com/lydkim created
https://github.com/llvm/llvm-project/pull/169121
An OOM situation occurs in llvm-dwp when running big builds where sections are
>4 GB. The problem is addressed in this post:
https://github.com/llvm/llvm-project/issues/168923
Problem:
When `ContentStorage` ex
llvmbot wrote:
@llvm/pr-subscribers-llvm-mc
Author: Lydia Kim (lydkim)
Changes
An OOM situation occurs in llvm-dwp when running big builds where sections are
>4 GB. The problem is addressed in this post:
https://github.com/llvm/llvm-project/issues/168923
Problem:
When `ContentStorage`
https://github.com/MatzeB milestoned
https://github.com/llvm/llvm-project/pull/169121
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/ilovepi approved this pull request.
https://github.com/llvm/llvm-project/pull/169109
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
chinmaydd wrote:
Support for `G_STRICT_FADD/SUB/MUL` is blocked by `G_FABS` and `G_FNEG`. I
would like to see this merged if possible. Thanks !
https://github.com/llvm/llvm-project/pull/168411
___
llvm-branch-commits mailing list
llvm-branch-commits@l
https://github.com/nhaehnle updated
https://github.com/llvm/llvm-project/pull/168820
From e673cdaee95d870dd5e2fa13ab064f6dbd0ba273 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nicolai=20H=C3=A4hnle?=
Date: Wed, 19 Nov 2025 18:00:32 -0800
Subject: [PATCH] VectorCombine: Improve the insert/extract fo
https://github.com/nhaehnle updated
https://github.com/llvm/llvm-project/pull/168819
From 459939f82086d02c39f5d6eeae141c25f9932d40 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nicolai=20H=C3=A4hnle?=
Date: Wed, 19 Nov 2025 17:59:11 -0800
Subject: [PATCH] VectorCombine: Fold chains of shuffles fed b
https://github.com/nhaehnle updated
https://github.com/llvm/llvm-project/pull/168820
From e673cdaee95d870dd5e2fa13ab064f6dbd0ba273 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nicolai=20H=C3=A4hnle?=
Date: Wed, 19 Nov 2025 18:00:32 -0800
Subject: [PATCH] VectorCombine: Improve the insert/extract fo
https://github.com/nhaehnle updated
https://github.com/llvm/llvm-project/pull/168819
From 459939f82086d02c39f5d6eeae141c25f9932d40 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nicolai=20H=C3=A4hnle?=
Date: Wed, 19 Nov 2025 17:59:11 -0800
Subject: [PATCH] VectorCombine: Fold chains of shuffles fed b
https://github.com/nhaehnle updated
https://github.com/llvm/llvm-project/pull/168820
From e673cdaee95d870dd5e2fa13ab064f6dbd0ba273 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nicolai=20H=C3=A4hnle?=
Date: Wed, 19 Nov 2025 18:00:32 -0800
Subject: [PATCH] VectorCombine: Improve the insert/extract fo
https://github.com/evelez7 updated
https://github.com/llvm/llvm-project/pull/168972
>From 63446511664b2bb0ad8d9adb335a704880c67591 Mon Sep 17 00:00:00 2001
From: Erick Velez
Date: Thu, 20 Nov 2025 15:46:21 -0800
Subject: [PATCH] [clang-doc] `` must be nested in ``
The HTML spec states that onl
https://github.com/evelez7 updated
https://github.com/llvm/llvm-project/pull/168972
>From 63446511664b2bb0ad8d9adb335a704880c67591 Mon Sep 17 00:00:00 2001
From: Erick Velez
Date: Thu, 20 Nov 2025 15:46:21 -0800
Subject: [PATCH] [clang-doc] `` must be nested in ``
The HTML spec states that onl
github-actions[bot] wrote:
# :penguin: Linux x64 Test Results
* 186433 tests passed
* 4868 tests skipped
https://github.com/llvm/llvm-project/pull/169040
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/c
@@ -580,6 +591,7 @@ bool SIShrinkInstructions::shrinkScalarLogicOp(MachineInstr
&MI) const {
if (Dest->getReg().isVirtual() && SrcReg->isReg()) {
MRI->setRegAllocationHint(Dest->getReg(), 0, SrcReg->getReg());
MRI->setRegAllocationHint(SrcReg->getReg(), 0, Dest
arsenm wrote:
ping
https://github.com/llvm/llvm-project/pull/167080
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
llvmbot wrote:
@llvm/pr-subscribers-backend-amdgpu
Author: Scott Linder (slinder1)
Changes
---
Patch is 1.26 MiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/169098.diff
65 Files Affected:
- (modified) llvm/lib/Target/AMDGPU/SILowerSGPRSpill
evelez7 wrote:
> [!WARNING]
> This pull request is not mergeable via GitHub because a downstack PR is
> open. Once all requirements are satisfied, merge this PR as a stack href="https://app.graphite.com/github/pr/llvm/llvm-project/169109?utm_source=stack-comment-downstack-mergeability-warning";
https://github.com/evelez7 created
https://github.com/llvm/llvm-project/pull/169109
None
>From dc51cf9e809bf3b90eb633152a0af6066bada997 Mon Sep 17 00:00:00 2001
From: Erick Velez
Date: Fri, 21 Nov 2025 14:12:42 -0800
Subject: [PATCH] [clang-doc] Add definition information to class templates
-
https://github.com/evelez7 ready_for_review
https://github.com/llvm/llvm-project/pull/169109
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
llvmbot wrote:
@llvm/pr-subscribers-clang-tools-extra
Author: Erick Velez (evelez7)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/169109.diff
2 Files Affected:
- (modified) clang-tools-extra/clang-doc/assets/class-template.mustache (+1)
- (modified) clang-tools-ext
evelez7 wrote:
Definition line can be seen in the basic project:
https://erickvelez.com/clang-doc-mustache-output/pr169109/GlobalNamespace/_ZTV5Shape.html
https://github.com/llvm/llvm-project/pull/169109
___
llvm-branch-commits mailing list
llvm-branc
github-actions[bot] wrote:
# :penguin: Linux x64 Test Results
* 3053 tests passed
* 7 tests skipped
https://github.com/llvm/llvm-project/pull/169109
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bi
Author: Fabian Mora
Date: 2025-11-21T10:00:01-05:00
New Revision: 8d821c3cdda1758a7391cd1b3afd8dfceed82095
URL:
https://github.com/llvm/llvm-project/commit/8d821c3cdda1758a7391cd1b3afd8dfceed82095
DIFF:
https://github.com/llvm/llvm-project/commit/8d821c3cdda1758a7391cd1b3afd8dfceed82095.diff
L
ritter-x2a wrote:
> [!WARNING]
> This pull request is not mergeable via GitHub because a downstack PR is
> open. Once all requirements are satisfied, merge this PR as a stack href="https://app.graphite.com/github/pr/llvm/llvm-project/169040?utm_source=stack-comment-downstack-mergeability-warnin
github-actions[bot] wrote:
:warning: C/C++ code formatter, clang-format found issues in your code.
:warning:
You can test this locally with the following command:
``bash
git-clang-format --diff origin/main HEAD --extensions h,cpp --
llvm/include/llvm/Transforms/Utils/LowerMemInt
https://github.com/arsenm approved this pull request.
https://github.com/llvm/llvm-project/pull/168832
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
@@ -580,6 +591,7 @@ bool SIShrinkInstructions::shrinkScalarLogicOp(MachineInstr
&MI) const {
if (Dest->getReg().isVirtual() && SrcReg->isReg()) {
MRI->setRegAllocationHint(Dest->getReg(), 0, SrcReg->getReg());
MRI->setRegAllocationHint(SrcReg->getReg(), 0, Dest
github-actions[bot] wrote:
# :penguin: Linux x64 Test Results
* 186451 tests passed
* 4869 tests skipped
https://github.com/llvm/llvm-project/pull/169048
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/c
Author: dpalermo
Date: 2025-11-21T21:03:14-06:00
New Revision: 43d637e0c44228d7769308c32b67d8ed5a988c1f
URL:
https://github.com/llvm/llvm-project/commit/43d637e0c44228d7769308c32b67d8ed5a988c1f
DIFF:
https://github.com/llvm/llvm-project/commit/43d637e0c44228d7769308c32b67d8ed5a988c1f.diff
LOG:
Author: Dan Liew
Date: 2025-11-21T19:01:31-08:00
New Revision: 8bdbc57b8975d77da88562392299ee5d9c2b6cbb
URL:
https://github.com/llvm/llvm-project/commit/8bdbc57b8975d77da88562392299ee5d9c2b6cbb
DIFF:
https://github.com/llvm/llvm-project/commit/8bdbc57b8975d77da88562392299ee5d9c2b6cbb.diff
LOG:
Author: dpalermo
Date: 2025-11-21T20:57:27-06:00
New Revision: cefbc487d482c607b3292d4356f2eeac8783c719
URL:
https://github.com/llvm/llvm-project/commit/cefbc487d482c607b3292d4356f2eeac8783c719
DIFF:
https://github.com/llvm/llvm-project/commit/cefbc487d482c607b3292d4356f2eeac8783c719.diff
LOG:
53 matches
Mail list logo