ritter-x2a wrote:
> Since this essentially breaks logic for gfx940 and gfx941, should we assert
> in code like `Chipset` that these are not used and silently miscompiled?
@kuhar as far as I can see that would be the first check for invalid targets in
this part of the code base. I don't think w
https://github.com/optimisan ready_for_review
https://github.com/llvm/llvm-project/pull/120557
___
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/efriedma-quic approved this pull request.
LGTM. Looking at the code, none of these codepaths should be hot, so I don't
expect any significant performance difference.
https://github.com/llvm/llvm-project/pull/126683
___
llvm-branch-
https://github.com/spall edited 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/listinfo/llvm-branch-commits
llvmbot wrote:
@llvm/pr-subscribers-backend-amdgpu
Author: Fabian Ritter (ritter-x2a)
Changes
gfx940 and gfx941 are no longer supported. This is one of a series of
PRs to remove them from the code base.
This PR removes all non-documentation occurrences of gfx940/gfx941 from
the llvm direc
https://github.com/llvmbot created
https://github.com/llvm/llvm-project/pull/126767
Backport 90192e8872cc90b4d292b180a49babf72d17e579
Requested by: @higher-performance
>From 23b316b60ef804687e964d875287f6d6f3325814 Mon Sep 17 00:00:00 2001
From: higher-performance
Date: Tue, 11 Feb 2025 01:52
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/126767
___
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-clang
Author: None (llvmbot)
Changes
Backport 90192e8872cc90b4d292b180a49babf72d17e579
Requested by: @higher-performance
---
Full diff: https://github.com/llvm/llvm-project/pull/126767.diff
2 Files Affected:
- (modified) clang/lib/Sema/SemaInit.cpp
llvmbot wrote:
@hokein What do you think about merging this PR to the release branch?
https://github.com/llvm/llvm-project/pull/126767
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listin
@@ -647,6 +648,40 @@ void SemaHLSL::emitLogicalOperatorFixIt(Expr *LHS, Expr
*RHS,
<< NewFnName << FixItHint::CreateReplacement(FullRange, OS.str());
}
+void SemaHLSL::handleRootSignatureAttr(Decl *D, const ParsedAttr &AL) {
+ if (AL.getNumArgs() != 1)
+return;
+
+
@@ -647,6 +648,40 @@ void SemaHLSL::emitLogicalOperatorFixIt(Expr *LHS, Expr
*RHS,
<< NewFnName << FixItHint::CreateReplacement(FullRange, OS.str());
}
+void SemaHLSL::handleRootSignatureAttr(Decl *D, const ParsedAttr &AL) {
+ if (AL.getNumArgs() != 1)
@@ -647,6 +648,40 @@ void SemaHLSL::emitLogicalOperatorFixIt(Expr *LHS, Expr
*RHS,
<< NewFnName << FixItHint::CreateReplacement(FullRange, OS.str());
}
+void SemaHLSL::handleRootSignatureAttr(Decl *D, const ParsedAttr &AL) {
+ if (AL.getNumArgs() != 1)
+return;
+
+
https://github.com/spall commented:
LGTM, I'm not familiar enough with root signature syntax to say if the tests
are complete and the lexer/parser isn't included in this PR as far as I can
tell, so I assume it works.
https://github.com/llvm/llvm-project/pull/123985
___
@@ -0,0 +1,54 @@
+// RUN: %clang_cc1 -triple dxil-pc-shadermodel6.3-library -x hlsl -o - %s
-verify
+
+// This file mirrors the diagnostics testing in ParseHLSLRootSignatureTest.cpp
+// to verify that the correct diagnostics strings are output
+
+// Lexer related tests
+
+#define
https://github.com/llvmbot created
https://github.com/llvm/llvm-project/pull/126718
Backport e258bca9505f35e0a22cb213a305eea9b76d11ea
Requested by: @fhahn
>From cb9e878bc7d52d0e2efb52da601e2ca261e553fb Mon Sep 17 00:00:00 2001
From: Florian Hahn
Date: Tue, 11 Feb 2025 13:03:12 +0100
Subject:
llvmbot wrote:
@fhahn What do you think about merging this PR to the release branch?
https://github.com/llvm/llvm-project/pull/126718
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinf
llvmbot wrote:
@llvm/pr-subscribers-llvm-transforms
Author: None (llvmbot)
Changes
Backport e258bca9505f35e0a22cb213a305eea9b76d11ea
Requested by: @fhahn
---
Full diff: https://github.com/llvm/llvm-project/pull/126718.diff
5 Files Affected:
- (modified) llvm/lib/Transforms/Utils/Scala
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/126718
___
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/optimisan updated
https://github.com/llvm/llvm-project/pull/118462
>From e915b29924d7053d68dead428c4a2dc36717a6d7 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/optimisan updated
https://github.com/llvm/llvm-project/pull/118462
>From e915b29924d7053d68dead428c4a2dc36717a6d7 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/optimisan updated
https://github.com/llvm/llvm-project/pull/119540
>From 7c54af7863123eeb12e0bce37c46a5d12dd3f674 Mon Sep 17 00:00:00 2001
From: Akshat Oke
Date: Wed, 11 Dec 2024 08:51:55 +
Subject: [PATCH 1/6] [CodeGen][NewPM] Port RegAllocGreedy to NPM
---
llvm/includ
https://github.com/optimisan updated
https://github.com/llvm/llvm-project/pull/119540
>From 7c54af7863123eeb12e0bce37c46a5d12dd3f674 Mon Sep 17 00:00:00 2001
From: Akshat Oke
Date: Wed, 11 Dec 2024 08:51:55 +
Subject: [PATCH 1/6] [CodeGen][NewPM] Port RegAllocGreedy to NPM
---
llvm/includ
https://github.com/optimisan updated
https://github.com/llvm/llvm-project/pull/125351
>From 5ece33cf956137a40407a7241b14d3142f1ab5a3 Mon Sep 17 00:00:00 2001
From: Akshat Oke
Date: Sat, 1 Feb 2025 18:21:24 +
Subject: [PATCH 1/2] [AMDGPU][NewPM] Port SIOptimizeExecMaskingPreRA to NPM
---
l
https://github.com/optimisan updated
https://github.com/llvm/llvm-project/pull/120557
>From c6fa1b8713b753bad7f62933aa6b2cff73fbdd47 Mon Sep 17 00:00:00 2001
From: Akshat Oke
Date: Tue, 11 Feb 2025 12:36:40 +
Subject: [PATCH] [CodeGen][NewPM] Plug greedy RA in codegen pipeline
---
llvm/in
https://github.com/optimisan updated
https://github.com/llvm/llvm-project/pull/120557
>From c6fa1b8713b753bad7f62933aa6b2cff73fbdd47 Mon Sep 17 00:00:00 2001
From: Akshat Oke
Date: Tue, 11 Feb 2025 12:36:40 +
Subject: [PATCH] [CodeGen][NewPM] Plug greedy RA in codegen pipeline
---
llvm/in
https://github.com/optimisan updated
https://github.com/llvm/llvm-project/pull/125351
>From 5ece33cf956137a40407a7241b14d3142f1ab5a3 Mon Sep 17 00:00:00 2001
From: Akshat Oke
Date: Sat, 1 Feb 2025 18:21:24 +
Subject: [PATCH 1/2] [AMDGPU][NewPM] Port SIOptimizeExecMaskingPreRA to NPM
---
l
@@ -0,0 +1,47 @@
+! Offloading test checking lowering of arrays with dynamic extents.
+! REQUIRES: flang, amdgpu
+
+! RUN: %libomptarget-compile-fortran-run-and-check-generic
+
+program test_openmp_mapper
+ implicit none
+ integer, parameter :: n = 1024
+ type :: mytype
+
@@ -0,0 +1,85 @@
+! This test checks lowering of OpenMP declare mapper Directive.
+
+! RUN: split-file %s %t
+! RUN: %flang_fc1 -emit-hlfir -fopenmp -fopenmp-version=50
%t/omp-declare-mapper-1.f90 -o - | FileCheck %t/omp-declare-mapper-1.f90
+! RUN: %flang_fc1 -emit-hlfir -fopenm
@@ -20,7 +20,7 @@
namespace llvm {
enum class RunOutliner { TargetDefault, AlwaysOutline, NeverOutline };
-enum class RegAllocType { Default, Basic, Fast, Greedy, PBQP };
+enum class RegAllocType { Unset, Default, Basic, Fast, Greedy, PBQP };
cdevadas wrote:
Author: Nikita Popov
Date: 2025-02-11T14:59:41+01:00
New Revision: dfa60a77e0bae875ea30340067bebea1c70b9d3d
URL:
https://github.com/llvm/llvm-project/commit/dfa60a77e0bae875ea30340067bebea1c70b9d3d
DIFF:
https://github.com/llvm/llvm-project/commit/dfa60a77e0bae875ea30340067bebea1c70b9d3d.diff
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/125837
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: Nikita Popov
Date: 2025-02-11T14:59:41+01:00
New Revision: 4c4ed5e2f5357d724e4c26d21ee3e840210b917f
URL:
https://github.com/llvm/llvm-project/commit/4c4ed5e2f5357d724e4c26d21ee3e840210b917f
DIFF:
https://github.com/llvm/llvm-project/commit/4c4ed5e2f5357d724e4c26d21ee3e840210b917f.diff
github-actions[bot] wrote:
@nikic (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.
htt
@@ -1315,6 +1315,20 @@ parseBoundsCheckingOptions(StringRef Params) {
return Mode;
}
+Expected
+parseRegAllocGreedyFilterFunc(PassBuilder &PB, StringRef Params) {
+ if (Params.empty() || Params == "all") {
+return RAGreedyPass::Options();
+ }
+ std::optional Filter =
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/126744
___
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/126744
Backport c837f57
Requested by: @arsenm
>From 8434879a3566ae040f1915456e9a79fd3192185a Mon Sep 17 00:00:00 2001
From: Vigneshwar Jayakumar
Date: Tue, 11 Feb 2025 09:30:16 -0600
Subject: [PATCH] AMDGPU: Handle g
llvmbot wrote:
@arsenm What do you think about merging this PR to the release branch?
https://github.com/llvm/llvm-project/pull/126744
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listin
llvmbot wrote:
@llvm/pr-subscribers-backend-amdgpu
Author: None (llvmbot)
Changes
Backport c837f57
Requested by: @arsenm
---
Full diff: https://github.com/llvm/llvm-project/pull/126744.diff
3 Files Affected:
- (modified) llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp (+9-7)
- (modifi
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/126859
___
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/tstellar created
https://github.com/llvm/llvm-project/pull/126859
None
>From 5d3590985ddd8b3a9828336516c10af10761301b Mon Sep 17 00:00:00 2001
From: Tom Stellard
Date: Tue, 11 Feb 2025 21:54:11 -0800
Subject: [PATCH] Bump version to 20.1.0-rc2
---
cmake/Modules/LLVMVersion
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/krzysz00 updated
https://github.com/llvm/llvm-project/pull/124876
>From 4fcff8c53af4055b6d92c5399e9f88a7fea18677 Mon Sep 17 00:00:00 2001
From: Krzysztof Drewniak
Date: Tue, 28 Jan 2025 20:25:38 -0800
Subject: [PATCH 1/2] [mlir][ODS] Switch declarative rewrite rules to
prope
https://github.com/krzysz00 updated
https://github.com/llvm/llvm-project/pull/124713
>From e7ae9837e983d62c4b6bff04e3b193915c80d8af Mon Sep 17 00:00:00 2001
From: Krzysztof Drewniak
Date: Sat, 18 Jan 2025 00:01:35 -0800
Subject: [PATCH 1/3] [mlir][ODS] Add a collective builder that takes the
P
https://github.com/nikic updated
https://github.com/llvm/llvm-project/pull/125858
>From 95354f3ea45a831783b86d8459e90ce8f69216f5 Mon Sep 17 00:00:00 2001
From: Yingwei Zheng
Date: Sat, 1 Feb 2025 20:41:15 +0800
Subject: [PATCH] [InstCombine] Check nowrap flags when folding comparison of
GEPs w
llvmbot wrote:
@kito-cheng What do you think about merging this PR to the release branch?
https://github.com/llvm/llvm-project/pull/126845
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/li
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/126845
___
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/126845
Backport 2cd8207
Requested by: @BeMg
>From 634d5b3a693b7979c9338c6cd92afe08680ac165 Mon Sep 17 00:00:00 2001
From: Piyou Chen
Date: Tue, 11 Feb 2025 15:19:19 +0800
Subject: [PATCH] [RISCV][compiler-rt] drop __
https://github.com/kito-cheng approved this pull request.
https://github.com/llvm/llvm-project/pull/126845
___
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 updated
https://github.com/llvm/llvm-project/pull/125431
>From 3661520b46dcf704ebb5e85df011eb30ff3ae67d Mon Sep 17 00:00:00 2001
From: Lang Hames
Date: Wed, 29 Jan 2025 03:58:29 +
Subject: [PATCH] [ORC][LLI] Remove redundant eh-frame registration plugin
construct
Author: Lang Hames
Date: 2025-02-11T20:54:17-08:00
New Revision: 3661520b46dcf704ebb5e85df011eb30ff3ae67d
URL:
https://github.com/llvm/llvm-project/commit/3661520b46dcf704ebb5e85df011eb30ff3ae67d
DIFF:
https://github.com/llvm/llvm-project/commit/3661520b46dcf704ebb5e85df011eb30ff3ae67d.diff
LO
@@ -1642,6 +1642,102 @@ void AsmPrinter::emitStackUsage(const MachineFunction
&MF) {
*StackUsageStream << "static\n";
}
+/// Extracts a generalized numeric type identifier of a Function's type from
+/// type metadata. Returns null if metadata cannot be found.
+static Cons
Author: Piyou Chen
Date: 2025-02-11T20:57:24-08:00
New Revision: 4806a5572e71e469015e04472a38afe35a7106d3
URL:
https://github.com/llvm/llvm-project/commit/4806a5572e71e469015e04472a38afe35a7106d3
DIFF:
https://github.com/llvm/llvm-project/commit/4806a5572e71e469015e04472a38afe35a7106d3.diff
LO
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/126845
___
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 updated
https://github.com/llvm/llvm-project/pull/126845
>From 4806a5572e71e469015e04472a38afe35a7106d3 Mon Sep 17 00:00:00 2001
From: Piyou Chen
Date: Tue, 11 Feb 2025 15:19:19 +0800
Subject: [PATCH] [RISCV][compiler-rt] drop __riscv_vendor_feature_bits
(#126460)
A
github-actions[bot] wrote:
@BeMg (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.
http
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/125431
___
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:
@mgorny (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.
ht
https://github.com/hokein approved this pull request.
It looks good to me. This is an important fix.
https://github.com/llvm/llvm-project/pull/126767
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin
https://github.com/HazardyKnusperkeks approved this pull request.
https://github.com/llvm/llvm-project/pull/126479
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commi
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/126776
___
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-backend-amdgpu
Author: None (llvmbot)
Changes
Backport a2263eb
Requested by: @arsenm
---
Patch is 159.35 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/126776.diff
7 Files Affected:
- (modified) llvm/lib
arsenm wrote:
Replaced by #126782
https://github.com/llvm/llvm-project/pull/125016
___
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:
@philnik777 (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.
Author: Nikolas Klauser
Date: 2025-02-11T12:03:58-08:00
New Revision: 6195c3a981c8ea8729b940388d91f9238ad7c57e
URL:
https://github.com/llvm/llvm-project/commit/6195c3a981c8ea8729b940388d91f9238ad7c57e
DIFF:
https://github.com/llvm/llvm-project/commit/6195c3a981c8ea8729b940388d91f9238ad7c57e.dif
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/125185
___
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 updated
https://github.com/llvm/llvm-project/pull/125912
>From 1ee32d22344f94f179063e3ddf8ae880af2cb240 Mon Sep 17 00:00:00 2001
From: Joseph Huber
Date: Wed, 5 Feb 2025 12:38:48 -0600
Subject: [PATCH 1/2] [Clang] Add width handling for shuffle
helper (#125896)
Sum
https://github.com/tstellar closed
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
Author: Joseph Huber
Date: 2025-02-11T12:10:47-08:00
New Revision: 9e7f8352c7a3dbbade39c11fe6f786d0457956ee
URL:
https://github.com/llvm/llvm-project/commit/9e7f8352c7a3dbbade39c11fe6f786d0457956ee
DIFF:
https://github.com/llvm/llvm-project/commit/9e7f8352c7a3dbbade39c11fe6f786d0457956ee.diff
Author: Joseph Huber
Date: 2025-02-11T12:10:47-08:00
New Revision: 1ee32d22344f94f179063e3ddf8ae880af2cb240
URL:
https://github.com/llvm/llvm-project/commit/1ee32d22344f94f179063e3ddf8ae880af2cb240
DIFF:
https://github.com/llvm/llvm-project/commit/1ee32d22344f94f179063e3ddf8ae880af2cb240.diff
github-actions[bot] wrote:
@jhuber6 (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
https://github.com/arsenm closed
https://github.com/llvm/llvm-project/pull/125016
___
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/spall edited 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/listinfo/llvm-branch-commits
llvmbot wrote:
@arsenm What do you think about merging this PR to the release branch?
https://github.com/llvm/llvm-project/pull/126776
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listin
https://github.com/tstellar updated
https://github.com/llvm/llvm-project/pull/125185
>From 6195c3a981c8ea8729b940388d91f9238ad7c57e Mon Sep 17 00:00:00 2001
From: Nikolas Klauser
Date: Thu, 30 Jan 2025 20:34:29 +0100
Subject: [PATCH] [Clang] Fix __{add,remove}_pointer in Objective-C++ (#123678)
https://github.com/rampitec approved this pull request.
https://github.com/llvm/llvm-project/pull/126762
___
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 updated
https://github.com/llvm/llvm-project/pull/126351
>From 553185bd7188fa1c48cce8a661df812a03afb5b7 Mon Sep 17 00:00:00 2001
From: Fangrui Song
Date: Wed, 5 Feb 2025 09:31:58 -0800
Subject: [PATCH] [BOLT,test] Link against a shared object to test PLT
(#125625)
A
github-actions[bot] wrote:
@MaskRay (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
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/126351
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
rampitec wrote:
> Should just leave the subtarget feature name alone. It's not worth the
> trouble, and this will now start spewing warnings on old IR (due to
> unnecessary target-features spam clang should stop emitting). It really
> should have been named 94-insts, but I think it's best to l
@@ -1619,28 +1613,6 @@ def FeatureISAVersion9_5_Common : FeatureSet<
FeatureAtomicBufferPkAddBF16Inst
])>;
-def FeatureISAVersion9_4_0 : FeatureSet<
- !listconcat(FeatureISAVersion9_4_Common.Features,
-[
- FeatureAddressableLocalMemorySize65536,
- FeatureF
Prabhuk wrote:
This patch is squashed into #87574 PR. Closing this patch.
https://github.com/llvm/llvm-project/pull/87572
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branc
https://github.com/Prabhuk edited
https://github.com/llvm/llvm-project/pull/87573
___
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/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/87573
>From a8a5848885e12c771f12cfa33b4dbc6a0272e925 Mon Sep 17 00:00:00 2001
From: Prabhuk
Date: Mon, 22 Apr 2024 11:34:04 -0700
Subject: [PATCH 1/6] 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/6] Update clang/lib/CodeGen/CodeGenModule.cpp
Cleaner if checks.
Co-
https://github.com/Prabhuk updated
https://github.com/llvm/llvm-project/pull/87574
>From 1d7ee612e408ee7e64e984eb08e6d7089a435d09 Mon Sep 17 00:00:00 2001
From: Necip Fazil Yildiran
Date: Sun, 2 Feb 2025 00:58:49 +
Subject: [PATCH] Simplify MIR test.
Created using spr 1.3.6-beta.1
---
...
https://github.com/Prabhuk updated
https://github.com/llvm/llvm-project/pull/87574
>From 1d7ee612e408ee7e64e984eb08e6d7089a435d09 Mon Sep 17 00:00:00 2001
From: Necip Fazil Yildiran
Date: Sun, 2 Feb 2025 00:58:49 +
Subject: [PATCH] Simplify MIR test.
Created using spr 1.3.6-beta.1
---
...
https://github.com/Prabhuk updated
https://github.com/llvm/llvm-project/pull/87576
___
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/Prabhuk updated
https://github.com/llvm/llvm-project/pull/87576
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Prabhuk wrote:
@nikic, `Is the content of this OB the same as CFI !type metadata on function
definitions?` — Yes. It is the same. I’ve udpated the OB name to `callee_type`.
I misunderstood the correctness question assuming that it was about whether
there will be miscompilation if callee_type O
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/126825
___
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/126825
Backport 84fe1f63b02414085bf7a8434caaf4a358be86da
Requested by: @lhames
>From 773eb0c2a5e47767ab2b6a6c24443ca45321350c Mon Sep 17 00:00:00 2001
From: Lang Hames
Date: Wed, 12 Feb 2025 10:00:10 +1100
Subject: [
https://github.com/lhames closed
https://github.com/llvm/llvm-project/pull/126825
___
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/joaosaffran closed
https://github.com/llvm/llvm-project/pull/124813
___
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/joaosaffran closed
https://github.com/llvm/llvm-project/pull/124967
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: Hongtao Yu
Date: 2025-02-11T19:10:33-08:00
New Revision: 669d96d801447471ee4cbe7117c6ba7db8023696
URL:
https://github.com/llvm/llvm-project/commit/669d96d801447471ee4cbe7117c6ba7db8023696
DIFF:
https://github.com/llvm/llvm-project/commit/669d96d801447471ee4cbe7117c6ba7db8023696.diff
LO
https://github.com/owenca approved this pull request.
https://github.com/llvm/llvm-project/pull/126866
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
101 - 197 of 197 matches
Mail list logo