https://github.com/hekota approved this pull request.
LGMT! Couple of minor comments.
https://github.com/llvm/llvm-project/pull/123985
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listin
@@ -1730,6 +1730,126 @@ buildDependData(std::optional dependKinds,
OperandRange dependVars,
}
}
+static bool privatizerReadsSourceVariable(omp::PrivateClauseOp &priv) {
+ if (priv.getDataSharingType() == omp::DataSharingClauseType::FirstPrivate)
+return true;
+
+ Regi
tstellar wrote:
@shiltian would do you think about backporting this?
https://github.com/llvm/llvm-project/pull/125912
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-co
@@ -1730,6 +1730,126 @@ buildDependData(std::optional dependKinds,
OperandRange dependVars,
}
}
+static bool privatizerReadsSourceVariable(omp::PrivateClauseOp &priv) {
+ if (priv.getDataSharingType() == omp::DataSharingClauseType::FirstPrivate)
+return true;
+
+ Regi
llvmbot wrote:
@llvm/pr-subscribers-libcxx
Author: None (llvmbot)
Changes
Backport ccb08b9
Requested by: @ldionne
---
Full diff: https://github.com/llvm/llvm-project/pull/125860.diff
1 Files Affected:
- (modified) libcxx/include/__vector/vector.h (+11-7)
``diff
diff --git a
https://github.com/dtcxzyw approved this pull request.
https://github.com/llvm/llvm-project/pull/125858
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
llvmbot wrote:
@llvm/pr-subscribers-llvm-transforms
Author: Nikita Popov (nikic)
Changes
Backport of 9725595f3acc0c1aaa354e15ac4ee2b1f8ff4cc9.
---
Full diff: https://github.com/llvm/llvm-project/pull/125858.diff
2 Files Affected:
- (modified) llvm/lib/Transforms/InstCombine/InstCombine
https://github.com/nikic milestoned
https://github.com/llvm/llvm-project/pull/125858
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/125860
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/llvmbot created
https://github.com/llvm/llvm-project/pull/125860
Backport ccb08b9
Requested by: @ldionne
>From c17d86fa59ade7b180e0de2df91a3e425b06e132 Mon Sep 17 00:00:00 2001
From: Louis Dionne
Date: Wed, 5 Feb 2025 08:57:22 -0500
Subject: [PATCH] [libc++] Also provide an
DavidTruby wrote:
The issue that @vdonaldson posted about above was present without this patch
last week too. It should be fixed on `main` now though so hopefully a rebase
will pick it up?
https://github.com/llvm/llvm-project/pull/110217
___
llvm-bra
https://github.com/DavidTruby approved this pull request.
LGTM thanks!
https://github.com/llvm/llvm-project/pull/122341
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-
https://github.com/Patryk27 updated
https://github.com/llvm/llvm-project/pull/125081
Sorry, this diff is unavailable.
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-co
llvmbot wrote:
@llvm/pr-subscribers-libc
Author: None (llvmbot)
Changes
Backport 2d8106cb5a505326d1da0f4461708ed44a0ac761
718cdeb9c701725412a040b2b7148523a286a256
Requested by: @jhuber6
---
Full diff: https://github.com/llvm/llvm-project/pull/125912.diff
7 Files Affected:
- (modified
llvmbot wrote:
@llvm/pr-subscribers-backend-x86
Author: None (llvmbot)
Changes
Backport 2d8106cb5a505326d1da0f4461708ed44a0ac761
718cdeb9c701725412a040b2b7148523a286a256
Requested by: @jhuber6
---
Full diff: https://github.com/llvm/llvm-project/pull/125912.diff
7 Files Affected:
- (m
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/125912
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
llvmbot wrote:
@jhuber6 What do you think about merging this PR to the release branch?
https://github.com/llvm/llvm-project/pull/125912
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listi
llvmbot wrote:
@llvm/pr-subscribers-backend-amdgpu
@llvm/pr-subscribers-clang
Author: None (llvmbot)
Changes
Backport 2d8106cb5a505326d1da0f4461708ed44a0ac761
718cdeb9c701725412a040b2b7148523a286a256
Requested by: @jhuber6
---
Full diff: https://github.com/llvm/llvm-project/pull/125912.
@@ -1796,36 +1918,110 @@ convertOmpTaskOp(omp::TaskOp taskOp,
llvm::IRBuilderBase &builder,
// Allocate and initialize private variables
// TODO: package private variables up in a structure
builder.SetInsertPoint(initBlock->getTerminator());
- for (auto [privDecl, mlirP
@@ -20,107 +20,181 @@
using namespace llvm;
-static cl::opt Mode(
+static cl::opt Mode(
"regalloc-enable-priority-advisor", cl::Hidden,
-cl::init(RegAllocPriorityAdvisorAnalysis::AdvisorMode::Default),
+cl::init(RegAllocPriorityAdvisorProvider::AdvisorMode::Defau
https://github.com/tblah edited https://github.com/llvm/llvm-project/pull/125307
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/Patryk27 edited
https://github.com/llvm/llvm-project/pull/125081
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/llvmbot created
https://github.com/llvm/llvm-project/pull/125912
Backport 2d8106cb5a505326d1da0f4461708ed44a0ac761
718cdeb9c701725412a040b2b7148523a286a256
Requested by: @jhuber6
>From 3a677e0e08ca0c788289de8326bd890ab51ac48a Mon Sep 17 00:00:00 2001
From: Joseph Huber
Dat
ilovepi wrote:
Yeah, squashing those patches together is probably better. That way, the whole
thing goes in and comes out atomically.
https://github.com/llvm/llvm-project/pull/87572
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.
ilovepi wrote:
I think we could probably do w/ a few more test cases.
1. Some direct calls (e.g. foo->bar, bar->fizz, bar->buzz)
2. the indirect callee is ambiguous (you could do this with control flow, or
via parameter w/o much difference).
3. the type of the callee matches another function,
https://github.com/boomanaiden154 approved this pull request.
https://github.com/llvm/llvm-project/pull/125978
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
github-actions[bot] wrote:
@tstellar (or anyone else). If you would like to add a note about this fix in
the release notes (completely optional). Please reply to this comment with a
one or two sentence description of the fix. When you are done, please add the
release:note label to this PR.
https://github.com/llvmbot created
https://github.com/llvm/llvm-project/pull/125995
Backport 8c222c122f1a8edb1be96e482511ad547f7db7b3
Requested by: @phoebewang
>From 442ca17b8ef073b71f2947e4b7a6b4b3df44283b Mon Sep 17 00:00:00 2001
From: Phoebe Wang
Date: Thu, 6 Feb 2025 10:58:37 +0800
Subjec
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/125995
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/125996
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/llvmbot created
https://github.com/llvm/llvm-project/pull/125996
Backport accfbd4cb327411ad66c0109ba1841482b871967
Requested by: @ldionne
>From bb87c8e305e2c91f28c402f8c83d861d6cdc7876 Mon Sep 17 00:00:00 2001
From: Louis Dionne
Date: Wed, 5 Feb 2025 22:32:51 -0500
Subject:
llvmbot wrote:
@philnik777 What do you think about merging this PR to the release branch?
https://github.com/llvm/llvm-project/pull/125996
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/li
llvmbot wrote:
@phoebewang What do you think about merging this PR to the release branch?
https://github.com/llvm/llvm-project/pull/125995
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/li
llvmbot wrote:
@llvm/pr-subscribers-libcxx
Author: None (llvmbot)
Changes
Backport accfbd4cb327411ad66c0109ba1841482b871967
Requested by: @ldionne
---
Full diff: https://github.com/llvm/llvm-project/pull/125996.diff
3 Files Affected:
- (modified) libcxx/include/__type_traits/is_trivia
llvmbot wrote:
@llvm/pr-subscribers-github-workflow
Author: Tom Stellard (tstellar)
Changes
These were accidentally disabled in
0cca13f758a8bda75eab45ad4bf896bb83921ec9.
---
Full diff: https://github.com/llvm/llvm-project/pull/125978.diff
1 Files Affected:
- (modified) .github/workflow
https://github.com/joaosaffran updated
https://github.com/llvm/llvm-project/pull/123147
>From aabdfe7d6c6b6e27e9c2150c10199baa6638b6df Mon Sep 17 00:00:00 2001
From: joaosaffran
Date: Wed, 15 Jan 2025 17:30:00 +
Subject: [PATCH 01/18] adding metadata extraction
---
.../llvm/Analysis/DXILM
https://github.com/tstellar created
https://github.com/llvm/llvm-project/pull/125978
These were accidentally disabled in
0cca13f758a8bda75eab45ad4bf896bb83921ec9.
>From d4caab041154d62fe2f598e6c520c4d6b2b041fb Mon Sep 17 00:00:00 2001
From: Tom Stellard
Date: Wed, 5 Feb 2025 17:31:57 -0800
Sub
Author: Alexandros Lamprineas
Date: 2025-02-05T17:27:35-08:00
New Revision: 78729e5ae25e92354654c70cb9d91c3cb7e05bba
URL:
https://github.com/llvm/llvm-project/commit/78729e5ae25e92354654c70cb9d91c3cb7e05bba
DIFF:
https://github.com/llvm/llvm-project/commit/78729e5ae25e92354654c70cb9d91c3cb7e05b
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/125525
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
github-actions[bot] wrote:
@labrinea (or anyone else). If you would like to add a note about this fix in
the release notes (completely optional). Please reply to this comment with a
one or two sentence description of the fix. When you are done, please add the
release:note label to this PR.
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/125953
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: Craig Topper
Date: 2025-02-05T20:59:24-08:00
New Revision: c08c9f97f93b29842fbfd80791088abf42c753ca
URL:
https://github.com/llvm/llvm-project/commit/c08c9f97f93b29842fbfd80791088abf42c753ca
DIFF:
https://github.com/llvm/llvm-project/commit/c08c9f97f93b29842fbfd80791088abf42c753ca.diff
https://github.com/llvmbot updated
https://github.com/llvm/llvm-project/pull/125953
>From c08c9f97f93b29842fbfd80791088abf42c753ca Mon Sep 17 00:00:00 2001
From: Craig Topper
Date: Wed, 5 Feb 2025 14:49:01 -0800
Subject: [PATCH] [RISCV] Use getSignedConstant for negative values. (#125903)
The
github-actions[bot] wrote:
@topperc (or anyone else). If you would like to add a note about this fix in
the release notes (completely optional). Please reply to this comment with a
one or two sentence description of the fix. When you are done, please add the
release:note label to this PR.
h
llvmbot wrote:
@llvm/pr-subscribers-backend-x86
Author: None (llvmbot)
Changes
Backport 8c222c122f1a8edb1be96e482511ad547f7db7b3
Requested by: @phoebewang
---
Full diff: https://github.com/llvm/llvm-project/pull/125995.diff
2 Files Affected:
- (modified) llvm/lib/Target/X86/X86ISelLow
https://github.com/optimisan updated
https://github.com/llvm/llvm-project/pull/118462
>From cfa8ade76569e98f246cdf9c79c3b7202c67c904 Mon Sep 17 00:00:00 2001
From: Akshat Oke
Date: Tue, 3 Dec 2024 10:12:36 +
Subject: [PATCH 1/9] [CodeGen][NewPM] Port RegAllocPriorityAdvisor analysis to
NPM
https://github.com/mingmingl-llvm edited
https://github.com/llvm/llvm-project/pull/125993
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/mingmingl-llvm edited
https://github.com/llvm/llvm-project/pull/125993
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/arsenm edited
https://github.com/llvm/llvm-project/pull/125836
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/arsenm commented:
These seem too aggressive. we're not deleting the 940 target, and all the same
properties apply
https://github.com/llvm/llvm-project/pull/125836
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.
@@ -602,7 +602,7 @@ def AMDGPU_MFMAOp :
order (that is, v[0] will go to arg[7:0], v[1] to arg[15:8] and so on).
The negateA, negateB, and negateC flags are only supported for
double-precision
-operations on gfx940+.
+operations on gfx942+.
ars
@@ -382,11 +382,11 @@ def ROCDL_mfma_f32_16x16x4bf16_1k :
ROCDL_Mfma_IntrOp<"mfma.f32.16x16x4bf16.1k">
def ROCDL_mfma_f32_4x4x4bf16_1k : ROCDL_Mfma_IntrOp<"mfma.f32.4x4x4bf16.1k">;
def ROCDL_mfma_f32_32x32x8bf16_1k :
ROCDL_Mfma_IntrOp<"mfma.f32.32x32x8bf16.1k">;
def ROCDL_mfm
https://github.com/DavidSpickett updated
https://github.com/llvm/llvm-project/pull/125834
>From 0e17c1507085e0d2efb87e6d4064ef2482854804 Mon Sep 17 00:00:00 2001
From: Diego Caballero
Date: Thu, 30 Jan 2025 16:09:19 -0800
Subject: [PATCH] [mlir][cmake] Add missing MLIRTestDialect dependencies
nikic wrote:
Sorry, I didn't see this. I just submitted
https://github.com/llvm/llvm-project/pull/125837 for the issues I ran into.
https://github.com/llvm/llvm-project/pull/125834
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.or
https://github.com/nikic created
https://github.com/llvm/llvm-project/pull/125858
Backport of 9725595f3acc0c1aaa354e15ac4ee2b1f8ff4cc9.
>From cc618a314c9432636446c6629e08a2293a9cf24c Mon Sep 17 00:00:00 2001
From: Yingwei Zheng
Date: Sat, 1 Feb 2025 20:41:15 +0800
Subject: [PATCH] [InstCombine
https://github.com/nikic edited https://github.com/llvm/llvm-project/pull/125858
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
101 - 156 of 156 matches
Mail list logo