https://github.com/AaronBallman edited
https://github.com/llvm/llvm-project/pull/102040
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -29,6 +29,7 @@
#include "clang/AST/TypeLoc.h"
#include "clang/AST/UnresolvedSet.h"
#include "clang/Basic/Diagnostic.h"
+#include "clang/Basic/DiagnosticSema.h"
AaronBallman wrote:
Our library layering is such that Sema sits on top of AST, they're not
sibli
https://github.com/androm3da created
https://github.com/llvm/llvm-project/pull/117338
If we create a cross toolchain with a ${triple}-ld.lld symlink, clang finds
that symlink and when it uses it, it's not recognized as "lld". Let's resolve
that symlink and consider it when determining lld-nes
https://github.com/llvm-beanz approved this pull request.
This change looks right for DXIL (and I'll approve in that context), but
@s-perron's comment about SPIR-V is something we should address before merging.
https://github.com/llvm/llvm-project/pull/117303
___
llvmbot wrote:
@llvm/pr-subscribers-backend-hexagon
Author: Brian Cain (androm3da)
Changes
If we create a cross toolchain with a ${triple}-ld.lld symlink, clang finds
that symlink and when it uses it, it's not recognized as "lld". Let's resolve
that symlink and consider it when determin
androm3da wrote:
Can I create a symlink in a lit test (and presumably remove it after the test
is done?).
I couldn't think of an effective way to test this, so if reviewers have
suggestions, it's much appreciated.
https://github.com/llvm/llvm-project/pull/117338
__
https://github.com/DanielCChen closed
https://github.com/llvm/llvm-project/pull/117342
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
felix642 wrote:
> If I understand correctly, this situation is when CMake is configured for
> another compiler (e.g., GCC) but is also instructed to run clang-tidy, but
> then CMake hands clang-tidy the command line arguments it was handing to GCC,
> and clang-tidy is giving hard errors for th
https://github.com/tarunprabhu updated
https://github.com/llvm/llvm-project/pull/117199
>From 664a0c58fc98725f89e544dd9bfcb5ab22bdf04e Mon Sep 17 00:00:00 2001
From: Tarun Prabhu
Date: Thu, 21 Nov 2024 09:53:49 -0700
Subject: [PATCH 1/5] [flang][Driver] Support -print-supported-cpus and
associ
4vtomat wrote:
> Considering the define is guarded behind `if
> (ISAInfo->hasExtension("zve32x"))`, this doesn't seem to implement:
> [riscv-non-isa/rvv-intrinsic-doc#382](https://github.com/riscv-non-isa/rvv-intrinsic-doc/pull/382)
I'll post another patch for this, thanks!
https://github.com
https://github.com/4vtomat closed
https://github.com/llvm/llvm-project/pull/116597
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
MaxEW707 wrote:
> I'd like to see this change make it into the repo, as I'm in a similar
> situation with a 6+ million line codebase. What's the next steps to advance
> this?
Hey sorry. I've been busy with other work prios and an msvc mangling bug. I
still intend to get back to this as I also
Author: Brandon Wu
Date: 2024-11-23T01:41:12+08:00
New Revision: 05b3d26181ade32f5988d2be4939f605a5225782
URL:
https://github.com/llvm/llvm-project/commit/05b3d26181ade32f5988d2be4939f605a5225782
DIFF:
https://github.com/llvm/llvm-project/commit/05b3d26181ade32f5988d2be4939f605a5225782.diff
LO
https://github.com/tarunprabhu updated
https://github.com/llvm/llvm-project/pull/117199
>From 664a0c58fc98725f89e544dd9bfcb5ab22bdf04e Mon Sep 17 00:00:00 2001
From: Tarun Prabhu
Date: Thu, 21 Nov 2024 09:53:49 -0700
Subject: [PATCH 1/6] [flang][Driver] Support -print-supported-cpus and
associ
https://github.com/bob80905 closed
https://github.com/llvm/llvm-project/pull/116413
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Author: Joshua Batista
Date: 2024-11-22T09:47:29-08:00
New Revision: ee0ca4e81f1fdd86d5eddc3290175fe8cb28b97f
URL:
https://github.com/llvm/llvm-project/commit/ee0ca4e81f1fdd86d5eddc3290175fe8cb28b97f
DIFF:
https://github.com/llvm/llvm-project/commit/ee0ca4e81f1fdd86d5eddc3290175fe8cb28b97f.diff
https://github.com/Maetveis approved this pull request.
LGTM Thanks!. Can you add a note in the clang release notes here:
https://github.com/llvm/llvm-project/blob/d8a1c6d72739c99f4b52a84e907b96b685b44c5e/clang/docs/ReleaseNotes.rst?plain=1#L559
I think this should be good for the text:
```rst
https://github.com/4vtomat created
https://github.com/llvm/llvm-project/pull/117356
This macro is used to check if compiler supports RVV intrinsics, so it
should be defined no matter vector is enabled or not.
Resolved https://github.com/riscv-non-isa/rvv-intrinsic-doc/issues/376
>From a29150c5
llvm-ci wrote:
LLVM Buildbot has detected a new failure on builder `llvm-clang-aarch64-darwin`
running on `doug-worker-5` while building `clang` at step 6
"test-build-unified-tree-check-all".
Full details are available at:
https://lab.llvm.org/buildbot/#/builders/190/builds/10032
Here is th
@@ -1474,6 +1474,11 @@ DeclContext *DeclContext::getPrimaryContext() {
case Decl::ObjCCategoryImpl:
return this;
+ case Decl::CXXRecord:
+if (auto *OPD = dyn_cast(this))
+ if (auto *Def = OPD->getDefinition())
+return Def;
+return this;
default:
llvmbot wrote:
@llvm/pr-subscribers-backend-risc-v
Author: Brandon Wu (4vtomat)
Changes
This macro is used to check if compiler supports RVV intrinsics, so it
should be defined no matter vector is enabled or not.
Resolved https://github.com/riscv-non-isa/rvv-intrinsic-doc/issues/376
---
Author: Artem Belevich
Date: 2024-11-22T10:19:59-08:00
New Revision: 689c53219280151b6421d633d993ed886827849b
URL:
https://github.com/llvm/llvm-project/commit/689c53219280151b6421d633d993ed886827849b
DIFF:
https://github.com/llvm/llvm-project/commit/689c53219280151b6421d633d993ed886827849b.diff
https://github.com/topperc approved this pull request.
LGTM
https://github.com/llvm/llvm-project/pull/117356
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
llvm-ci wrote:
LLVM Buildbot has detected a new failure on builder
`llvm-clang-x86_64-sie-ubuntu-fast` running on `sie-linux-worker` while
building `clang` at step 6 "test-build-unified-tree-check-all".
Full details are available at:
https://lab.llvm.org/buildbot/#/builders/144/builds/12304
https://github.com/hjanuschka commented:
feedback addressed, not sure how to proceed with output format changes
https://github.com/llvm/llvm-project/pull/116033
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mail
llvm-ci wrote:
LLVM Buildbot has detected a new failure on builder `llvm-clang-x86_64-sie-win`
running on `sie-win-worker` while building `clang` at step 7
"test-build-unified-tree-check-all".
Full details are available at:
https://lab.llvm.org/buildbot/#/builders/46/builds/8365
Here is the
llvm-ci wrote:
LLVM Buildbot has detected a new failure on builder `clang-armv8-quick` running
on `linaro-clang-armv8-quick` while building `clang` at step 5 "ninja check 1".
Full details are available at:
https://lab.llvm.org/buildbot/#/builders/154/builds/7922
Here is the relevant piece of
serge-sans-paille wrote:
Would you be ok with a flag, say `-Wnontrivial-memcpy`¸(any suggestion on
another name ?) implied by `-Wall` but that we could disable with
`-Wno-nontrivial-memcpy` ?
https://github.com/llvm/llvm-project/pull/111434
___
cfe-
rjmccall wrote:
I haven't looked at your patch yet, and I'm not familiar with the `diagnose_if`
feature; I'm just commenting about the AST design question because I was tagged
in to do so. If `diagnose_if` is about compile-time evaluation — essentially
assertion failures during constant evalua
https://github.com/mdtoguchi updated
https://github.com/llvm/llvm-project/pull/117268
>From 3fdc74687dbf6da831a1c27995d9d7fef3a2a51f Mon Sep 17 00:00:00 2001
From: Michael Toguchi
Date: Fri, 15 Nov 2024 05:14:21 -0700
Subject: [PATCH 1/2] Reland - [Driver][SYCL] Add initial SYCL offload
compil
https://github.com/MaskRay approved this pull request.
https://github.com/llvm/llvm-project/pull/117199
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Artem-B wrote:
Darn. I've missed additional HIP tests. I'll fix the test failures shortly.
https://github.com/llvm/llvm-project/pull/117074
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-comm
https://github.com/Artem-B created
https://github.com/llvm/llvm-project/pull/117361
None
>From 394ef51560731ae1f42fd049655dde1ce2d11a1e Mon Sep 17 00:00:00 2001
From: Artem Belevich
Date: Fri, 22 Nov 2024 10:50:50 -0800
Subject: [PATCH] [HIP] Fix tests broken by #117074 / 689c532
---
clang/t
@@ -183,40 +210,47 @@ void UseStartsEndsWithCheck::check(const
MatchFinder::MatchResult &Result) {
const auto *EndsWithFunction =
Result.Nodes.getNodeAs("ends_with_fun");
assert(bool(StartsWithFunction) != bool(EndsWithFunction));
+
const CXXMethodDecl *Replacemen
https://github.com/arsenm updated
https://github.com/llvm/llvm-project/pull/117256
>From 9ea67ab7fa88cbd36e7fc6f83c517041ea062f49 Mon Sep 17 00:00:00 2001
From: Matt Arsenault
Date: Sat, 3 Feb 2024 20:48:16 +0530
Subject: [PATCH] AMDGPU: Add v_smfmac_f32_32x32x64_bf8_bf8 for gfx950
---
clang/
@@ -0,0 +1,296 @@
+//===-- xray_riscv.cpp *- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apach
@@ -0,0 +1,296 @@
+//===-- xray_riscv.cpp *- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apach
@@ -0,0 +1,296 @@
+//===-- xray_riscv.cpp *- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apach
@@ -0,0 +1,296 @@
+//===-- xray_riscv.cpp *- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apach
https://github.com/mshockwave created
https://github.com/llvm/llvm-project/pull/117368
Add RISC-V support for XRay. The RV64 implementation has been tested in both
QEMU and in our production environment.
Currently this requires D and C extensions, but since both RV64GC and
RVA22/RVA23 are bec
arsenm wrote:
### Merge activity
* **Nov 22, 2:45 PM EST**: A user started a stack merge that includes this pull
request via
[Graphite](https://app.graphite.dev/github/pr/llvm/llvm-project/117256).
https://github.com/llvm/llvm-project/pull/117256
_
@@ -0,0 +1,296 @@
+//===-- xray_riscv.cpp *- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apach
@@ -0,0 +1,296 @@
+//===-- xray_riscv.cpp *- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apach
https://github.com/arsenm updated
https://github.com/llvm/llvm-project/pull/117256
>From 6e2396d81f014458c11c382accf612f6e2ae0253 Mon Sep 17 00:00:00 2001
From: Matt Arsenault
Date: Sat, 3 Feb 2024 20:48:16 +0530
Subject: [PATCH] AMDGPU: Add v_smfmac_f32_32x32x64_bf8_bf8 for gfx950
---
clang/
@@ -0,0 +1,296 @@
+//===-- xray_riscv.cpp *- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apach
zmodem wrote:
> `-Wnontrivial-memcall` to match `-Wnontricial-memaccess` ?
sgtm :)
https://github.com/llvm/llvm-project/pull/111434
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -12528,6 +12530,10 @@ def warn_attr_min_eq_max: Warning<
def err_hlsl_attribute_number_arguments_insufficient_shader_model: Error<
"attribute %0 with %1 arguments requires shader model %2 or greater">;
+def err_hlsl_expect_arg_const_int_one_or_neg_one: Error<
+ "argumen
@@ -1024,6 +1024,15 @@ GCNTTIImpl::instCombineIntrinsic(InstCombiner &IC,
IntrinsicInst &II) const {
}
break;
}
+ case Intrinsic::amdgcn_wavefrontsize: {
+// TODO: this is a workaround for the pseudo-generic target one gets with
no
+// specified mcpu, which
@@ -343,27 +343,232 @@ struct TemplateParameterListBuilder {
Params.clear();
QualType T = Builder.Template->getInjectedClassNameSpecialization();
-T = S.Context.getInjectedClassNameType(Builder.Record, T);
+T = AST.getInjectedClassNameType(Builder.Record, T);
https://github.com/serge-sans-paille created
https://github.com/llvm/llvm-project/pull/117387
…s to its own flag
Namely -Wnontrivial-memcall, implied by -Wnontricial-memaccess
This is a followup to #111434
>From fda70bc5aeabe33fc578fbb2f55bc805a3304059 Mon Sep 17 00:00:00 2001
From: serge-san
https://github.com/hjanuschka updated
https://github.com/llvm/llvm-project/pull/116033
>From 23b4bcdf52041aad1c5581e0f7dc01028770a154 Mon Sep 17 00:00:00 2001
From: Helmut Januschka
Date: Wed, 13 Nov 2024 12:52:36 +0100
Subject: [PATCH 01/10] [clang-tidy] Enhance modernize-use-starts-ends-with
https://github.com/androm3da updated
https://github.com/llvm/llvm-project/pull/117338
>From 40e018ad4a92a20442ad34b0a5b988394e15e609 Mon Sep 17 00:00:00 2001
From: Brian Cain
Date: Thu, 21 Nov 2024 19:46:04 -0800
Subject: [PATCH] [clang] recognize any *-ld.lld variant
If we create a cross tool
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: None (serge-sans-paille)
Changes
…s to its own flag
Namely -Wnontrivial-memcall, implied by -Wnontricial-memaccess
This is a followup to #111434
---
Full diff: https://github.com/llvm/llvm-project/pull/117387.diff
4 Files Affected:
-
https://github.com/hjanuschka updated
https://github.com/llvm/llvm-project/pull/116033
>From 23b4bcdf52041aad1c5581e0f7dc01028770a154 Mon Sep 17 00:00:00 2001
From: Helmut Januschka
Date: Wed, 13 Nov 2024 12:52:36 +0100
Subject: [PATCH 01/11] [clang-tidy] Enhance modernize-use-starts-ends-with
https://github.com/hjanuschka commented:
feedback addressed
https://github.com/llvm/llvm-project/pull/116033
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -1103,7 +1103,15 @@ static void InitializePredefinedMacros(const TargetInfo
&TI,
assert(TI.getCharWidth() == 8 && "Only support 8-bit char so far");
Builder.defineMacro("__CHAR_BIT__", Twine(TI.getCharWidth()));
- Builder.defineMacro("__BOOL_WIDTH__", Twine(TI.getBool
https://github.com/Sirraide approved this pull request.
LGTM
https://github.com/llvm/llvm-project/pull/117364
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/t-rasmud updated
https://github.com/llvm/llvm-project/pull/117021
>From 87ba2a10ca7435fdf6b5c47d2c1c97c1e188cfcd Mon Sep 17 00:00:00 2001
From: Rashmi Mudduluru
Date: Tue, 19 Nov 2024 14:50:24 -0800
Subject: [PATCH 1/3] [ASTMatchers] AST matcher support for ObjC pointers
Add
https://github.com/t-rasmud updated
https://github.com/llvm/llvm-project/pull/114606
>From cc19550fdbaca4b77e90de57c472a31a8c3f8293 Mon Sep 17 00:00:00 2001
From: Rashmi Mudduluru
Date: Fri, 1 Nov 2024 14:10:50 -0700
Subject: [PATCH 1/9] [Webkit Checkers] Introduce a Webkit checker for memory
https://github.com/arsenm updated
https://github.com/llvm/llvm-project/pull/117256
>From 97db45bc17b84c93ca2447a29bdb2f5cc8957832 Mon Sep 17 00:00:00 2001
From: Matt Arsenault
Date: Sat, 3 Feb 2024 20:48:16 +0530
Subject: [PATCH] AMDGPU: Add v_smfmac_f32_32x32x64_bf8_bf8 for gfx950
---
clang/
llvmbot wrote:
@llvm/pr-subscribers-backend-risc-v
Author: Min-Yih Hsu (mshockwave)
Changes
Add RISC-V support for XRay. The RV64 implementation has been tested in both
QEMU and in our production environment.
Currently this requires D and C extensions, but since both RV64GC and
RVA22/RV
llvmbot wrote:
@llvm/pr-subscribers-clang-driver
Author: Min-Yih Hsu (mshockwave)
Changes
Add RISC-V support for XRay. The RV64 implementation has been tested in both
QEMU and in our production environment.
Currently this requires D and C extensions, but since both RV64GC and
RVA22/RVA2
https://github.com/arsenm updated
https://github.com/llvm/llvm-project/pull/117256
>From 470ab2cc633923e2ee155ac4c534c2e340e3adcd Mon Sep 17 00:00:00 2001
From: Matt Arsenault
Date: Sat, 3 Feb 2024 20:48:16 +0530
Subject: [PATCH] AMDGPU: Add v_smfmac_f32_32x32x64_bf8_bf8 for gfx950
---
clang/
@@ -57,6 +57,10 @@ static const int16_t cSledLength = 64;
static const int16_t cSledLength = 8;
#elif defined(__hexagon__)
static const int16_t cSledLength = 20;
+#elif SANITIZER_RISCV64
+static const int16_t cSledLength = 76;
+#elif defined(__riscv) && (__riscv_xlen == 32)
---
https://github.com/arsenm updated
https://github.com/llvm/llvm-project/pull/117257
>From 4166abeaa57a91bc69b626893048ad3a5e68651d Mon Sep 17 00:00:00 2001
From: Matt Arsenault
Date: Sat, 3 Feb 2024 21:09:21 +0530
Subject: [PATCH] AMDGPU: Add v_smfmac_f32_32x32x64_bf8_fp8 for gfx950
---
clang/
@@ -0,0 +1,296 @@
+//===-- xray_riscv.cpp *- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apach
https://github.com/mshockwave edited
https://github.com/llvm/llvm-project/pull/117368
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/arsenm edited
https://github.com/llvm/llvm-project/pull/117257
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/arsenm closed
https://github.com/llvm/llvm-project/pull/117256
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -0,0 +1,296 @@
+//===-- xray_riscv.cpp *- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apach
@@ -0,0 +1,296 @@
+//===-- xray_riscv.cpp *- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apach
DanShaders wrote:
I won't have any free time to revive this until after Christmas.
https://github.com/llvm/llvm-project/pull/71148
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/arsenm updated
https://github.com/llvm/llvm-project/pull/117258
>From 2d02b0e2eb2bf0cfc4f169282c0fe8af6530e2e7 Mon Sep 17 00:00:00 2001
From: Matt Arsenault
Date: Sat, 3 Feb 2024 21:25:33 +0530
Subject: [PATCH] AMDGPU: Add v_smfmac_f32_32x32x32x64_fp8_bf8 for gfx950
---
cla
Author: Matt Arsenault
Date: 2024-11-22T11:59:06-08:00
New Revision: 8a5c24149da76083263887a68983d4ac242fc6f5
URL:
https://github.com/llvm/llvm-project/commit/8a5c24149da76083263887a68983d4ac242fc6f5
DIFF:
https://github.com/llvm/llvm-project/commit/8a5c24149da76083263887a68983d4ac242fc6f5.diff
https://github.com/jrtc27 edited
https://github.com/llvm/llvm-project/pull/117368
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/arsenm edited
https://github.com/llvm/llvm-project/pull/117258
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/arsenm closed
https://github.com/llvm/llvm-project/pull/117257
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Author: Matt Arsenault
Date: 2024-11-22T12:08:15-08:00
New Revision: 90dc644d73dc9d599da009daec7c45fad7f1269f
URL:
https://github.com/llvm/llvm-project/commit/90dc644d73dc9d599da009daec7c45fad7f1269f
DIFF:
https://github.com/llvm/llvm-project/commit/90dc644d73dc9d599da009daec7c45fad7f1269f.diff
https://github.com/arsenm closed
https://github.com/llvm/llvm-project/pull/117258
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/arsenm edited
https://github.com/llvm/llvm-project/pull/117259
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/arsenm updated
https://github.com/llvm/llvm-project/pull/117259
>From 7d7c1657f446391bc96cff7350f76b15541bfcbb Mon Sep 17 00:00:00 2001
From: Matt Arsenault
Date: Sat, 3 Feb 2024 21:43:00 +0530
Subject: [PATCH] AMDGPU: Add v_smfmac_f32_32x32x64_fp8_fp8 for gfx950
---
clang/
@@ -0,0 +1,296 @@
+//===-- xray_riscv.cpp *- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apach
Author: Matt Arsenault
Date: 2024-11-22T12:02:18-08:00
New Revision: 8d3435f8a111a39dc333c0ffeafd5ffe953f1f02
URL:
https://github.com/llvm/llvm-project/commit/8d3435f8a111a39dc333c0ffeafd5ffe953f1f02
DIFF:
https://github.com/llvm/llvm-project/commit/8d3435f8a111a39dc333c0ffeafd5ffe953f1f02.diff
https://github.com/arsenm closed
https://github.com/llvm/llvm-project/pull/117259
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/dougsonos approved this pull request.
https://github.com/llvm/llvm-project/pull/117324
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Author: Matt Arsenault
Date: 2024-11-22T12:11:06-08:00
New Revision: 7d544c64e3b6ea014c59e230dcf65ac4f9d60f2b
URL:
https://github.com/llvm/llvm-project/commit/7d544c64e3b6ea014c59e230dcf65ac4f9d60f2b
DIFF:
https://github.com/llvm/llvm-project/commit/7d544c64e3b6ea014c59e230dcf65ac4f9d60f2b.diff
llvmbot wrote:
@llvm/pr-subscribers-clang-analysis
Author: Max (mxms0)
Changes
Do not warn if the index is an enum and we an determine statically that it's
within bounds.
---
Full diff: https://github.com/llvm/llvm-project/pull/117370.diff
2 Files Affected:
- (modified) clang/lib/Anal
https://github.com/mxms0 created
https://github.com/llvm/llvm-project/pull/117370
Do not warn if the index is an enum and we an determine statically that it's
within bounds.
>From 8fed333cf4221dbf1826351da80164db5d209c21 Mon Sep 17 00:00:00 2001
From: mxms
Date: Fri, 22 Nov 2024 15:09:07 -050
zmodem wrote:
> Note that recently Clang introduced a mechanism for file-level suppression of
> warnings, for easier rollout of warnings:
https://clang.llvm.org/docs/UsersManual.html#controlling-diagnostics-via-suppression-mappings
> Would that serve the same purpose?
Well, that allows us to be
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/arsenm edited
https://github.com/llvm/llvm-project/pull/117260
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/arsenm updated
https://github.com/llvm/llvm-project/pull/117260
>From 809ce1d1e300a77088d886510f9082196307ac83 Mon Sep 17 00:00:00 2001
From: Matt Arsenault
Date: Mon, 22 Jan 2024 12:40:54 +0700
Subject: [PATCH] AMDGPU: Add v_permlane16_swap_b32 and v_permlane32_swap_b32
for
Author: Sirraide
Date: 2024-11-22T21:14:21+01:00
New Revision: 2fe947b47798de1ad20553be4e162e332428ad91
URL:
https://github.com/llvm/llvm-project/commit/2fe947b47798de1ad20553be4e162e332428ad91
DIFF:
https://github.com/llvm/llvm-project/commit/2fe947b47798de1ad20553be4e162e332428ad91.diff
LOG:
https://github.com/Sirraide closed
https://github.com/llvm/llvm-project/pull/117324
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
llvm-ci wrote:
LLVM Buildbot has detected a new failure on builder `premerge-monolithic-linux`
running on `premerge-linux-1` while building `clang` at step 7
"test-build-unified-tree-check-all".
Full details are available at:
https://lab.llvm.org/buildbot/#/builders/153/builds/15532
Here is
wangpc-pp wrote:
> Fails buildbot:
> https://lab.llvm.org/buildbot/#/builders/24/builds/2791/steps/10/logs/stdio
>
> ```
> -- Testing: 83950 of 83951 tests, 48 workers --
> Testing: 0.. 10..
> FAIL: Clang :: Preprocessor/has_builtin_cpuid.c (15996 of 83950)
> TEST 'Clang :
https://github.com/bogner updated
https://github.com/llvm/llvm-project/pull/117303
>From 05f412f47b8d30ff1db9372225001c75289bed44 Mon Sep 17 00:00:00 2001
From: Justin Bogner
Date: Thu, 21 Nov 2024 23:18:13 -0800
Subject: [PATCH 1/2] [HLSL] Get the index for resource bindings from the slot
Res
@@ -588,7 +588,7 @@ llvm::Function
*CGHLSLRuntime::createResourceBindingInitFn() {
auto *Slot = llvm::ConstantInt::get(CGM.IntTy, RBA->getSlotNumber());
// FIXME: resource arrays are not yet implemented
auto *Range = llvm::ConstantInt::get(CGM.IntTy, 1);
-
https://github.com/bogner edited
https://github.com/llvm/llvm-project/pull/117303
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/llvm-beanz approved this pull request.
This approach makes sense to me.
https://github.com/llvm/llvm-project/pull/117303
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-comm
101 - 200 of 464 matches
Mail list logo