@@ -192,6 +192,12 @@ class MemorySSAUpdater {
const BasicBlock *BB,
MemorySSA::InsertionPlace Point);
+ MemoryAccess *createMemoryAccessInBB2(Instruction *I,
+
llvmbot wrote:
@llvm/pr-subscribers-flang-fir-hlfir
Author: Krzysztof Parzyszek (kparzysz)
Changes
This actually simplifies the AST node for the schedule clause: the two allowed
modifiers can be easily classified as the ordering-modifier and the
chunk-modifier during parsing without the
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/117082
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
llvmbot wrote:
@nikic What do you think about merging this PR to the release branch?
https://github.com/llvm/llvm-project/pull/117082
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinf
Author: Tom Eccles
Date: 2024-11-28T10:40:48Z
New Revision: 0c60a3b204f8a13bf440474a9b28148ede541a87
URL:
https://github.com/llvm/llvm-project/commit/0c60a3b204f8a13bf440474a9b28148ede541a87
DIFF:
https://github.com/llvm/llvm-project/commit/0c60a3b204f8a13bf440474a9b28148ede541a87.diff
LOG: Re
llvmbot wrote:
@llvm/pr-subscribers-backend-amdgpu
Author: Matt Arsenault (arsenm)
Changes
The main goal is to fold away wave64 code when compiled for wave32.
If we have out of bounds indexing, these will now clamp down to
a low bit which may CSE with the operations on the low half of the
https://github.com/jeanPerier approved this pull request.
LGTM, I am ok with merging this patch now to make it easier to iterate on the
last two core patches. Thanks for all the work.
https://github.com/llvm/llvm-project/pull/112188
___
llvm-branch-co
gbMattN wrote:
@fhahn it looks like the latest TySan pull updates have fixed the bug this pull
request set out to fix. I'd be happy to close this pull request out; does TySan
have a test to check for this bug currently?
https://github.com/llvm/llvm-project/pull/95387
__
@@ -50,43 +42,28 @@ macro(enable_cuda_compilation name files)
"${CUDA_COMPILE_OPTIONS}"
)
-if (EXISTS "${FLANG_LIBCUDACXX_PATH}/include")
+if (EXISTS "${FLANG_RT_LIBCUDACXX_PATH}/include")
# When using libcudacxx headers files, we have to use them
llvmbot wrote:
@llvm/pr-subscribers-flang-fir-hlfir
Author: Krzysztof Parzyszek (kparzysz)
Changes
The usual changes, added more references to OpenMP specs.
---
Patch is 24.00 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/117916.diff
15 Fil
llvmbot wrote:
@llvm/pr-subscribers-flang-parser
Author: Krzysztof Parzyszek (kparzysz)
Changes
The usual changes, added more references to OpenMP specs.
---
Patch is 24.00 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/117916.diff
15 Files
llvmbot wrote:
@llvm/pr-subscribers-flang-semantics
Author: Krzysztof Parzyszek (kparzysz)
Changes
The usual changes, added more references to OpenMP specs.
---
Patch is 24.00 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/117917.diff
15 Fil
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 923638f04160c6c4a5fdf7afa309dcea3ec9fb7e
801c4bd8eea9ba8f7490b164aad0fc6b67cbb9b1 --e
llvmbot wrote:
@llvm/pr-subscribers-flang-parser
Author: Krzysztof Parzyszek (kparzysz)
Changes
The usual changes, added more references to OpenMP specs.
---
Patch is 24.00 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/117917.diff
15 Files
https://github.com/agozillon edited
https://github.com/llvm/llvm-project/pull/117046
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
@@ -2701,7 +2701,42 @@ static void
genOMP(lower::AbstractConverter &converter, lower::SymMap &symTable,
semantics::SemanticsContext &semaCtx, lower::pft::Evaluation &eval,
const parser::OpenMPDeclareMapperConstruct &declareMapperConstruct) {
- TODO(converter.getC
jeanPerier wrote:
Question about multi-versioning. Say I want to 1. build flang, 2. build
flang_rt with -O0 -g out of tree, 3. build flang_rt with -O3 out of tree.
When I am trying that with the patch, step 3. build and install libflang_rt.a
override the ones from setp 2. Is there a way/option
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 8e6e62d0dee48a696afd0c7d53d74eaccef97b5e
11c62d601626d9da1fb3ed0c9cadab2d106681ab --e
https://github.com/gbMattN updated
https://github.com/llvm/llvm-project/pull/96507
>From 11c62d601626d9da1fb3ed0c9cadab2d106681ab Mon Sep 17 00:00:00 2001
From: Matthew Nagy
Date: Fri, 28 Jun 2024 16:48:53 +
Subject: [PATCH] [TySan] Improves compatability for tests
---
compiler-rt/test/ty
llvmbot wrote:
@llvm/pr-subscribers-backend-risc-v
Author: None (llvmbot)
Changes
Backport 71b6f6b8a1cd9a63b9d382fe15f40bbb427939b9
408c84f35b8b0338b630a6ee313c14238e62b5e6
Requested by: @topperc
---
Full diff: https://github.com/llvm/llvm-project/pull/117948.diff
5 Files Affected:
-
llvmbot wrote:
@topperc @preames What do you think about merging this PR to the release branch?
https://github.com/llvm/llvm-project/pull/117948
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mail
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/117948
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/117968
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/llvmbot created
https://github.com/llvm/llvm-project/pull/117968
Backport 9cc2502c048b1403ba8ba5cc5a655d867c329d12
Requested by: @androm3da
>From f09d5dd3a16f66d183d59f9698250a897f4247ab Mon Sep 17 00:00:00 2001
From: Brian Cain
Date: Mon, 25 Nov 2024 11:35:45 -0600
Subject
llvmbot wrote:
@llvm/pr-subscribers-clang-driver
@llvm/pr-subscribers-backend-hexagon
Author: None (llvmbot)
Changes
Backport 9cc2502c048b1403ba8ba5cc5a655d867c329d12
Requested by: @androm3da
---
Full diff: https://github.com/llvm/llvm-project/pull/117968.diff
2 Files Affected:
- (mod
https://github.com/llvmbot created
https://github.com/llvm/llvm-project/pull/117948
Backport 71b6f6b8a1cd9a63b9d382fe15f40bbb427939b9
408c84f35b8b0338b630a6ee313c14238e62b5e6
Requested by: @topperc
>From bd583dd074029a7113fcb9d41a64da51399c84fa Mon Sep 17 00:00:00 2001
From: Craig Topper
Dat
llvmbot wrote:
@SidManning What do you think about merging this PR to the release branch?
https://github.com/llvm/llvm-project/pull/117968
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/li
https://github.com/llvmbot created
https://github.com/llvm/llvm-project/pull/118020
Backport 12cefcc7ecd2615069206b35b0ea81b9e78bb1ea
Requested by: @fhahn
>From c186e5d3e0e88ef5f285c0fd5f33ae826f7d9221 Mon Sep 17 00:00:00 2001
From: Florian Hahn
Date: Thu, 28 Nov 2024 16:11:39 +
Subject:
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/118020
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
llvmbot wrote:
@llvm/pr-subscribers-llvm-transforms
Author: None (llvmbot)
Changes
Backport 12cefcc7ecd2615069206b35b0ea81b9e78bb1ea
Requested by: @fhahn
---
Full diff: https://github.com/llvm/llvm-project/pull/118020.diff
2 Files Affected:
- (modified) llvm/lib/Transforms/Scalar/Lowe
llvmbot wrote:
@llvm/pr-subscribers-flang-semantics
Author: Krzysztof Parzyszek (kparzysz)
Changes
The usual changes, added more references to OpenMP specs.
---
Patch is 42.91 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/118128.diff
17 Fil
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 8a5db30a3841b88ccac2c781d933eeb45560fdfa
2dc76a68ef3d64d656b537206ad892dae1759415 --e
github-actions[bot] wrote:
@aheejin (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
github-actions[bot] wrote:
@llvmbot Congratulations on having your first Pull Request (PR) merged into the
LLVM Project!
Your changes will be combined with recent changes from other authors, then
tested by our [build bots](https://lab.llvm.org/buildbot/). If there is a
problem with a build,
Author: Thurston Dang
Date: 2024-11-18T18:16:21Z
New Revision: 6925f3c7c7d8b83e2195cb8e473eccdecae42607
URL:
https://github.com/llvm/llvm-project/commit/6925f3c7c7d8b83e2195cb8e473eccdecae42607
DIFF:
https://github.com/llvm/llvm-project/commit/6925f3c7c7d8b83e2195cb8e473eccdecae42607.diff
LOG:
github-actions[bot] wrote:
@thurstond (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.
llvmbot wrote:
@llvm/pr-subscribers-clang-codegen
Author: Pengcheng Wang (wangpc-pp)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/116745.diff
1 Files Affected:
- (modified) clang/lib/CodeGen/CGBuiltin.cpp (+3-3)
``diff
diff --git a/clang/lib/CodeGen/CGBu
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Pengcheng Wang (wangpc-pp)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/116745.diff
1 Files Affected:
- (modified) clang/lib/CodeGen/CGBuiltin.cpp (+3-3)
``diff
diff --git a/clang/lib/CodeGen/CGBuiltin.cp
@@ -38,13 +39,21 @@ class BitVector;
class EdgeBundles;
class MachineBlockFrequencyInfo;
class MachineFunction;
+class SpillPlacementWrapperLegacy;
+class SpillPlacementAnalysis;
+
+class SpillPlacement {
+ friend class SpillPlacementWrapperLegacy;
+ friend class SpillPlaceme
https://github.com/llvmbot created
https://github.com/llvm/llvm-project/pull/116774
Backport c2717a89b8437d041d532c7b2c535ca4f4b35872
Requested by: @mstorsjo
>From c67ce844315f1df45c0f311dab6f1a9c365afc30 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Martin=20Storsj=C3=B6?=
Date: Sun, 20 Oct 2024
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/116774
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
llvmbot wrote:
@llvm/pr-subscribers-llvm-regalloc
Author: Akshat Oke (optimisan)
Changes
I am not sure how to test this.
---
Full diff: https://github.com/llvm/llvm-project/pull/116618.diff
4 Files Affected:
- (modified) llvm/include/llvm/InitializePasses.h (+1-1)
- (modified) llvm/li
llvmbot wrote:
@llvm/pr-subscribers-llvm-adt
Author: Akshat Oke (optimisan)
Changes
This allows implementing the move constructor.
---
Full diff: https://github.com/llvm/llvm-project/pull/116617.diff
1 Files Affected:
- (modified) llvm/include/llvm/ADT/SparseSet.h (+11-7)
``
llvmbot wrote:
@llvm/pr-subscribers-backend-amdgpu
Author: Matt Arsenault (arsenm)
Changes
Unlike the existing gfx940 intrinsics using short/i16 in place of
bfloat, this uses the natural bfloat type.
---
Patch is 40.83 KiB, truncated to 20.00 KiB below, full version:
https://github.com/
llvmbot wrote:
@llvm/pr-subscribers-mc
@llvm/pr-subscribers-llvm-ir
@llvm/pr-subscribers-clang
Author: Matt Arsenault (arsenm)
Changes
Unlike the existing gfx940 intrinsics using short/i16 in place of
bfloat, this uses the natural bfloat type.
---
Patch is 40.83 KiB, truncated to 20.00 K
llvmbot wrote:
@llvm/pr-subscribers-backend-amdgpu
Author: Matt Arsenault (arsenm)
Changes
---
Patch is 27.17 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/116678.diff
6 Files Affected:
- (modified) llvm/lib/Target/AMDGPU/SIISelLowering.c
llvmbot wrote:
@llvm/pr-subscribers-llvm-ir
Author: Matt Arsenault (arsenm)
Changes
Enforcing this limit in the clang builtin will come later.
---
Patch is 31.94 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/116681.diff
9 Files Affected:
-
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Matt Arsenault (arsenm)
Changes
Enforcing this limit in the clang builtin will come later.
---
Patch is 31.94 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/116681.diff
9 Files Affected:
- (
llvmbot wrote:
@llvm/pr-subscribers-mc
@llvm/pr-subscribers-backend-amdgpu
Author: Matt Arsenault (arsenm)
Changes
Enforcing this limit in the clang builtin will come later.
---
Patch is 31.94 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/116
llvmbot wrote:
@llvm/pr-subscribers-llvm-analysis
@llvm/pr-subscribers-clang
Author: Matt Arsenault (arsenm)
Changes
Define global_load_lds_dwordx3 and global_load_dwordx4.
Oddly it seems dwordx2 was skipped.
---
Full diff: https://github.com/llvm/llvm-project/pull/116680.diff
8 Files A
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 42f311ceb555ea2b3f171ad2ef8254e971e0be12
f5657c9cc25cfed321ced807510a21dc374bcfe3 --e
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 82bb6e07b68b1df378e89c1eba1f9deb3c2d67f5
42f311ceb555ea2b3f171ad2ef8254e971e0be12 --e
@@ -223,7 +248,7 @@ void SpillPlacement::activate(unsigned n) {
if (ActiveNodes->test(n))
return;
ActiveNodes->set(n);
- nodes[n].clear(Threshold);
+ nodes.get()[n].clear(Threshold);
paperchalice wrote:
You can use `operator []` if `nodes` is an arra
llvmbot wrote:
@llvm/pr-subscribers-compiler-rt-sanitizer
Author: None (llvmbot)
Changes
Backport 531acf9e2f24977d2556b39229b22f4518a1faa5
Requested by: @thurstond
---
Full diff: https://github.com/llvm/llvm-project/pull/116670.diff
3 Files Affected:
- (modified) compiler-rt/lib/sanit
llvmbot wrote:
@thurstond What do you think about merging this PR to the release branch?
https://github.com/llvm/llvm-project/pull/116670
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/lis
https://github.com/llvmbot created
https://github.com/llvm/llvm-project/pull/116670
Backport 531acf9e2f24977d2556b39229b22f4518a1faa5
Requested by: @thurstond
>From 6925f3c7c7d8b83e2195cb8e473eccdecae42607 Mon Sep 17 00:00:00 2001
From: Thurston Dang
Date: Thu, 14 Nov 2024 10:35:35 -0800
Subj
llvmbot wrote:
@llvm/pr-subscribers-flang-semantics
Author: Krzysztof Parzyszek (kparzysz)
Changes
The main issue to solve is that OpenMP modifiers can be specified in any order,
so the parser cannot expect any specific modifier at a given position. To solve
that, define modifier to be a
llvmbot wrote:
@llvm/pr-subscribers-flang-openmp
Author: Krzysztof Parzyszek (kparzysz)
Changes
Also, define helper macros in parse-tree.h.
Apply the new modifier representation to the DEFAULTMAP and REDUCTION clauses,
with testcases utilizing the new modifier validation.
OpenMP modifie
llvmbot wrote:
@llvm/pr-subscribers-flang-parser
Author: Krzysztof Parzyszek (kparzysz)
Changes
Also, define helper macros in parse-tree.h.
Apply the new modifier representation to the DEFAULTMAP and REDUCTION clauses,
with testcases utilizing the new modifier validation.
OpenMP modifie
llvmbot wrote:
@llvm/pr-subscribers-lto
Author: Jay Foad (jayfoad)
Changes
This falls out naturally after inlining finishType into its only remaining use.
---
Full diff: https://github.com/llvm/llvm-project/pull/116653.diff
1 Files Affected:
- (modified) llvm/lib/Linker/IRMover.cpp (+1
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 e8bbc26e136993758c3a3197eed6b1924c6531d0
fac6a8594643811418f37ee42fc1ac35bcc2a244 --e
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/116670
___
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
llvmbot wrote:
@llvm/pr-subscribers-backend-amdgpu
Author: Matt Arsenault (arsenm)
Changes
---
Patch is 33.44 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/116728.diff
13 Files Affected:
- (modified) clang/include/clang/Basic/BuiltinsAMDG
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
github-actions[bot] wrote:
⚠️ We detected that you are using a GitHub private e-mail address to contribute
to the repo. Please turn off [Keep my email addresses
private](https://github.com/settings/emails) setting in your account. See
[LLVM
Discourse](https://discourse.llvm.org/t/hidden-email
https://github.com/AreaZR closed
https://github.com/llvm/llvm-project/pull/116864
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/AreaZR created
https://github.com/llvm/llvm-project/pull/116865
Closes https://github.com/llvm/llvm-project/issues/112068.
(cherry picked from commit a59976bea8ad76f18119a11391dc8ba3e6ba07d5)
>From 5151407d883ae72f17c058c9b9823586913ac249 Mon Sep 17 00:00:00 2001
From: Yingw
https://github.com/AreaZR edited
https://github.com/llvm/llvm-project/pull/116861
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Rose (AreaZR)
Changes
Arguably as a bug, Clang has previously not mixed up Objective-C parameter
names with types. This allows developers to write parameter names that _should_
shadow type names, but don't. For instance:
@interface F
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/116797
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/llvmbot created
https://github.com/llvm/llvm-project/pull/116797
Backport 2f4572f5e7e2d7f4626e825404c11f07d191fb05
c727b48287cc96888f9e262f23d53cf635cf3b3d
Requested by: @dtcxzyw
>From 0dcfce5c6d5501d8358045a5eee109a35bfcdab1 Mon Sep 17 00:00:00 2001
From: Craig Topper
Dat
https://github.com/AreaZR created
https://github.com/llvm/llvm-project/pull/116863
Arguably as a bug, Clang has previously not mixed up Objective-C parameter
names with types. This allows developers to write parameter names that _should_
shadow type names, but don't. For instance:
@interf
https://github.com/AreaZR edited
https://github.com/llvm/llvm-project/pull/116863
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/AreaZR created
https://github.com/llvm/llvm-project/pull/116864
GEP offsets have sext_or_trunc semantics. We were already doing this for the
outer-most GEP, but not for the inner ones.
I believe one of the sanitizer buildbot failures was due to this, but I did not
manage to
llvmbot wrote:
@llvm/pr-subscribers-llvm-analysis
Author: Rose (AreaZR)
Changes
GEP offsets have sext_or_trunc semantics. We were already doing this for the
outer-most GEP, but not for the inner ones.
I believe one of the sanitizer buildbot failures was due to this, but I did not
manage
llvmbot wrote:
@llvm/pr-subscribers-llvm-transforms
Author: Rose (AreaZR)
Changes
Closes https://github.com/llvm/llvm-project/issues/112068.
(cherry picked from commit a59976bea8ad76f18119a11391dc8ba3e6ba07d5)
---
Full diff: https://github.com/llvm/llvm-project/pull/116865.diff
2 Files
https://github.com/AreaZR edited
https://github.com/llvm/llvm-project/pull/116864
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
AreaZR wrote:
I am done finding things to backport to 19.x. Hopefully we do like one more
round and release 19.1.6 but yeah.
https://github.com/llvm/llvm-project/pull/116864
___
llvm-branch-commits mailing list
[email protected]
http
https://github.com/Prabhuk updated
https://github.com/llvm/llvm-project/pull/87576
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
@@ -488,6 +490,38 @@ class LLVM_EXTERNAL_VISIBILITY MachineFunction {
/// Callee type id.
ConstantInt *TypeId = nullptr;
+
+CallSiteInfo() {}
+
+/// Extracts the numeric type id from the CallBase's type operand bundle,
+/// and sets TypeId. This is used as
@@ -488,6 +490,35 @@ class LLVM_EXTERNAL_VISIBILITY MachineFunction {
/// Callee type id.
ConstantInt *TypeId = nullptr;
+
+CallSiteInfo() {}
+
+/// Extracts the numeric type id from the CallBase's type operand bundle,
+/// and sets TypeId. This is used as
https://github.com/Prabhuk updated
https://github.com/llvm/llvm-project/pull/87575
>From 1a8d810d352fbe84c0521c7614689b60ade693c8 Mon Sep 17 00:00:00 2001
From: Necip Fazil Yildiran
Date: Tue, 19 Nov 2024 15:25:34 -0800
Subject: [PATCH] Fixed the tests and addressed most of the review comments.
https://github.com/Prabhuk updated
https://github.com/llvm/llvm-project/pull/87575
>From 1a8d810d352fbe84c0521c7614689b60ade693c8 Mon Sep 17 00:00:00 2001
From: Necip Fazil Yildiran
Date: Tue, 19 Nov 2024 15:25:34 -0800
Subject: [PATCH] Fixed the tests and addressed most of the review comments.
https://github.com/Prabhuk updated
https://github.com/llvm/llvm-project/pull/87574
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/Prabhuk updated
https://github.com/llvm/llvm-project/pull/87576
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/Prabhuk updated
https://github.com/llvm/llvm-project/pull/87574
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/Prabhuk updated
https://github.com/llvm/llvm-project/pull/87574
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
llvmbot wrote:
@llvm/pr-subscribers-clang
@llvm/pr-subscribers-llvm-analysis
Author: Matt Arsenault (arsenm)
Changes
---
Patch is 28.32 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/117053.diff
12 Files Affected:
- (modified) clang/test/C
llvmbot wrote:
@llvm/pr-subscribers-mc
Author: Matt Arsenault (arsenm)
Changes
---
Patch is 28.32 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/117053.diff
12 Files Affected:
- (modified) clang/test/CodeGenOpenCL/builtins-amdgcn-mfma.cl (
https://github.com/Prabhuk converted_to_draft
https://github.com/llvm/llvm-project/pull/117037
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
llvmbot wrote:
@llvm/pr-subscribers-llvm-analysis
Author: Matt Arsenault (arsenm)
Changes
Add some tests which will demonstrate that we treat the number of cycles
differently depending on whether the first matrix uses an f8 format.
---
Patch is 33.95 KiB, truncated to 20.00 KiB below, fu
llvmbot wrote:
@llvm/pr-subscribers-llvm-ir
@llvm/pr-subscribers-mc
Author: Matt Arsenault (arsenm)
Changes
Add some tests which will demonstrate that we treat the number of cycles
differently depending on whether the first matrix uses an f8 format.
---
Patch is 33.95 KiB, truncated to 2
Prabhuk wrote:
> Can you split out the LLVM parts from the clang parts? The LLVM bits should
> land first, and then clang can make use of them in a later PR. This will also
> simplify review, since we can focus on the LLVM vs. Clang implementations in
> isolation.
The Clang bits are moved to
AreaZR wrote:
I am done finding things to backport to 19.x. Hopefully we do like one more
round and release 19.1.6 but yeah.
https://github.com/llvm/llvm-project/pull/116865
___
llvm-branch-commits mailing list
[email protected]
https
bd1976bris wrote:
@tru should this have been merged? Do I need to do something to facilitate?
Sorry for not following up earlier I have been sick recently. Thanks.
https://github.com/llvm/llvm-project/pull/111314
___
llvm-branch-commits mailing list
l
https://github.com/Prabhuk updated
https://github.com/llvm/llvm-project/pull/87573
>From a8a5848885e12c771f12cfa33b4dbc6a0272e925 Mon Sep 17 00:00:00 2001
From: Prabhuk
Date: Mon, 22 Apr 2024 11:34:04 -0700
Subject: [PATCH 1/3] Update clang/lib/CodeGen/CodeGenModule.cpp
Cleaner if checks.
Co-
https://github.com/Prabhuk updated
https://github.com/llvm/llvm-project/pull/87573
>From a8a5848885e12c771f12cfa33b4dbc6a0272e925 Mon Sep 17 00:00:00 2001
From: Prabhuk
Date: Mon, 22 Apr 2024 11:34:04 -0700
Subject: [PATCH 1/3] Update clang/lib/CodeGen/CodeGenModule.cpp
Cleaner if checks.
Co-
https://github.com/Prabhuk updated
https://github.com/llvm/llvm-project/pull/87572
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/Prabhuk updated
https://github.com/llvm/llvm-project/pull/87576
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
5801 - 5900 of 66743 matches
Mail list logo