Author: Joseph Huber
Date: 2024-01-18T10:56:33-06:00
New Revision: cb2f340850db007aebf5012858697ba5afc1ce4e
URL:
https://github.com/llvm/llvm-project/commit/cb2f340850db007aebf5012858697ba5afc1ce4e
DIFF:
https://github.com/llvm/llvm-project/commit/cb2f340850db007aebf5012858697ba5afc1ce4e.diff
Author: Joseph Huber
Date: 2024-01-20T12:53:03-06:00
New Revision: ec0ac85e58f0a80cc52a132336b132ffe7b50b59
URL:
https://github.com/llvm/llvm-project/commit/ec0ac85e58f0a80cc52a132336b132ffe7b50b59
DIFF:
https://github.com/llvm/llvm-project/commit/ec0ac85e58f0a80cc52a132336b132ffe7b50b59.diff
jhuber6 wrote:
> FYI. There is a failure in liner-wrapper.c in
> https://buildkite.com/llvm-project/github-pull-requests/builds/30337#018d1aaa-8225-4630-a5f0-527d1c7c129d
>
> ```
> # note: command had no output on stdout or stderr
> | # error: command failed with exit status: 1
> | # execut
https://github.com/jhuber6 commented:
You should add a test that checks the output of `-ccc-print-phases` and
`-ccc-print-bindings`.
https://github.com/llvm/llvm-project/pull/78333
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.
https://github.com/jhuber6 edited
https://github.com/llvm/llvm-project/pull/78333
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/jhuber6 approved this pull request.
Seems straightforward enough
https://github.com/llvm/llvm-project/pull/79038
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/jhuber6 edited
https://github.com/llvm/llvm-project/pull/79039
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/jhuber6 approved this pull request.
https://github.com/llvm/llvm-project/pull/79039
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -99,6 +99,7 @@ class ROCDLDialectLLVMIRTranslationInterface
if (!llvmFunc->hasFnAttribute("amdgpu-flat-work-group-size")) {
llvmFunc->addFnAttr("amdgpu-flat-work-group-size", "1,256");
}
+ llvmFunc->addFnAttr("amdgpu-implicitarg-num-bytes", "256");
-
jhuber6 wrote:
> > You could potentially link in all the symbols and internalize them
>
> That probably won't work. After they are internalized, they have internal
> linkage and cannot be used to resolve newly added call of the same function.
>
> The purpose of internalization is to allow you
@@ -0,0 +1,17 @@
+//===-- Implementation of the GPU lroundf function
jhuber6 wrote:
This and some other headers need to be reformatted.
https://github.com/llvm/llvm-project/pull/66034
___
cfe-commits mailing list
cfe-c
@@ -0,0 +1,17 @@
+//===-- Implementation of the GPU lroundf function
jhuber6 wrote:
This and some other headers need to be reformatted.
https://github.com/llvm/llvm-project/pull/66034
___
cfe-commits mailing list
cfe-c
@@ -0,0 +1,21 @@
+//===-- Implementation of the GPU atan2f function
jhuber6 wrote:
Fix header
https://github.com/llvm/llvm-project/pull/66034
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.o
@@ -0,0 +1,21 @@
+//===-- Implementation of the GPU atan2f function
jhuber6 wrote:
Fix header
https://github.com/llvm/llvm-project/pull/66034
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.o
@@ -0,0 +1,19 @@
+//===-- Implementation of the GPU logbf function
jhuber6 wrote:
Fix header
https://github.com/llvm/llvm-project/pull/66034
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.or
https://github.com/jhuber6 approved this pull request.
LG after fixing the header formatting.
https://github.com/llvm/llvm-project/pull/66034
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-co
@@ -0,0 +1,19 @@
+//===-- Implementation of the GPU logbf function
jhuber6 wrote:
Fix header
https://github.com/llvm/llvm-project/pull/66034
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.or
https://github.com/jhuber6 edited
https://github.com/llvm/llvm-project/pull/66034
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/jhuber6 edited
https://github.com/llvm/llvm-project/pull/66034
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -16,3 +16,4 @@ free
memcmp
printf
__assert_fail
+malloc
jhuber6 wrote:
This is already in the file
https://github.com/llvm/llvm-project/pull/69806
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://l
@@ -48,25 +48,17 @@ namespace {
extern "C" {
[[gnu::weak, gnu::leaf]] void *malloc(uint64_t Size);
[[gnu::weak, gnu::leaf]] void free(void *Ptr);
-}
-///}
+void *llvm_device_malloc(uint64_t Size) { return allocator::alloc(Size); }
+void llvm_device_free(void *Ptr) { allocator
@@ -15,9 +15,19 @@
#endif
#ifdef __cplusplus
+#include
jhuber6 wrote:
I'm unsure if there's ever a reason to include the C++ wrappers in a
freestanding environment. Without C++, these go straight to the `clang`
resource directly. With the C++ versions they
https://github.com/jhuber6 edited
https://github.com/llvm/llvm-project/pull/69806
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -0,0 +1,80 @@
+//===-- State.cpp - OpenMP State & ICV interface - 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/jhuber6 commented:
I figured we would just have an internal implementation of `malloc` provided by
the OpenMP device runtime library. The variants make this more difficult, but
we could just use `#ifdef __AMDGPU__` instead of an OpenMP variant so we can
declare it as `extern
@@ -36,6 +46,15 @@ extern "C" {
#pragma omp end declare variant
#ifdef __AMDGCN__
+#pragma omp begin declare variant match(
\
+device = {arch(amdgcn)},
\
+implementation =
@@ -0,0 +1,80 @@
+//===-- State.cpp - OpenMP State & ICV interface - 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,80 @@
+//===-- State.cpp - OpenMP State & ICV interface - 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/jhuber6 updated
https://github.com/llvm/llvm-project/pull/68346
>From 28dec98632ace2e48d57736bb9eb9db311f46aaf Mon Sep 17 00:00:00 2001
From: Joseph Huber
Date: Fri, 29 Sep 2023 18:50:10 -0500
Subject: [PATCH] [libc] Enable remaining string functions on the GPU
Summary:
We p
https://github.com/jhuber6 closed
https://github.com/llvm/llvm-project/pull/68346
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/jhuber6 created
https://github.com/llvm/llvm-project/pull/70116
Summary:
This patch is a first step to remove dependencies on the OpenMPIRBuilder
for creating generic offloading entires. This patch changes no
functionality and merely moves the code around. In the future the
in
https://github.com/jhuber6 updated
https://github.com/llvm/llvm-project/pull/70116
>From 35347649fe160073e73c3bca96506b6fd96d8a31 Mon Sep 17 00:00:00 2001
From: Joseph Huber
Date: Tue, 24 Oct 2023 15:27:21 -0500
Subject: [PATCH] [Offloading][NFC] Move creation of offloading entries from
OpenMP
https://github.com/jhuber6 updated
https://github.com/llvm/llvm-project/pull/70116
>From 2af5fc3dc871f0bc3bdfeff4ed2c08f6ccd089d5 Mon Sep 17 00:00:00 2001
From: Joseph Huber
Date: Tue, 24 Oct 2023 15:27:21 -0500
Subject: [PATCH] [Offloading][NFC] Move creation of offloading entries from
OpenMP
https://github.com/jhuber6 updated
https://github.com/llvm/llvm-project/pull/70116
>From 8add2113864618d310e01bdbb0cf16e1847eb9a8 Mon Sep 17 00:00:00 2001
From: Joseph Huber
Date: Tue, 24 Oct 2023 15:27:21 -0500
Subject: [PATCH] [Offloading][NFC] Move creation of offloading entries from
OpenMP
jhuber6 wrote:
> Can this stuff really be generic?
Obviously flags are going to be target dependent, but the actual form,
generation, and iteration of these can be generic. The idea is to put them all
into a single section such that we can filter out the ones that apply to
whatever runtime so
https://github.com/jhuber6 updated
https://github.com/llvm/llvm-project/pull/70116
>From 5f8318bcb3419a675680d8e58b4707d42397ae1e Mon Sep 17 00:00:00 2001
From: Joseph Huber
Date: Tue, 24 Oct 2023 15:27:21 -0500
Subject: [PATCH] [Offloading][NFC] Move creation of offloading entries from
OpenMP
https://github.com/jhuber6 edited
https://github.com/llvm/llvm-project/pull/70116
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/jhuber6 approved this pull request.
All of this code can be deleted once we move HIP to the new driver.
https://github.com/llvm/llvm-project/pull/70201
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cg
jhuber6 wrote:
> Maybe a clang documentation can be added for this generic offloading
> toolchain for OpenMP/CUDA/HIP. Could be a brief description about the
> offloading entries and registration mechanism in the beginning then buffy it
> up later.
We have https://clang.llvm.org/docs/Offloadi
https://github.com/jhuber6 closed
https://github.com/llvm/llvm-project/pull/70116
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Author: Joseph Huber
Date: 2023-10-25T10:42:34-05:00
New Revision: 9bdeab1e7b25240d9282dbdc3617aaade195d62e
URL:
https://github.com/llvm/llvm-project/commit/9bdeab1e7b25240d9282dbdc3617aaade195d62e
DIFF:
https://github.com/llvm/llvm-project/commit/9bdeab1e7b25240d9282dbdc3617aaade195d62e.diff
jhuber6 wrote:
Invalidated by a merged PR.
https://github.com/llvm/llvm-project/pull/67869
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/jhuber6 closed
https://github.com/llvm/llvm-project/pull/67869
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -9,6 +9,7 @@
#include "ABIInfoImpl.h"
#include "TargetInfo.h"
#include "llvm/IR/IntrinsicsNVPTX.h"
+#include
jhuber6 wrote:
Is this necessary?
https://github.com/llvm/llvm-project/pull/70247
___
cfe-commits mail
@@ -4227,8 +4227,106 @@ static const omp::GV &getGridValue(Function *Kernel) {
llvm_unreachable("No grid value available for this architecture!");
}
+static MDNode *getNVPTXMDNode(Function &Kernel, StringRef Name) {
+ Module &M = *Kernel.getParent();
+ NamedMDNode *MD = M.
https://github.com/jhuber6 approved this pull request.
Seems fine overall
https://github.com/llvm/llvm-project/pull/70247
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/jhuber6 edited
https://github.com/llvm/llvm-project/pull/70247
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -0,0 +1,31 @@
+/*=== type_traits - CUDA wrapper for -===
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
deal
+ * in the Software without
https://github.com/jhuber6 approved this pull request.
Looks reasonable, the same approach we've always done for these things.
https://github.com/llvm/llvm-project/pull/70369
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.or
https://github.com/jhuber6 created
https://github.com/llvm/llvm-project/pull/70462
Summary:
The 'ockl' bitcode library from the ROCm device library contains several
implementations of functions like `printf` and `malloc`. We currently do
not depend on these in the OpenMP toolchain, so we shouldn
Author: Joseph Huber
Date: 2020-09-30T14:00:01-04:00
New Revision: 90eaedda9b8ef46e2c0c1b8bce33e98a3adbb68c
URL:
https://github.com/llvm/llvm-project/commit/90eaedda9b8ef46e2c0c1b8bce33e98a3adbb68c
DIFF:
https://github.com/llvm/llvm-project/commit/90eaedda9b8ef46e2c0c1b8bce33e98a3adbb68c.diff
Author: Joseph Huber
Date: 2020-09-30T15:12:21-04:00
New Revision: 1b60f63e4fd041550019b692dc7bf490dce2c75c
URL:
https://github.com/llvm/llvm-project/commit/1b60f63e4fd041550019b692dc7bf490dce2c75c
DIFF:
https://github.com/llvm/llvm-project/commit/1b60f63e4fd041550019b692dc7bf490dce2c75c.diff
Author: Joseph Huber
Date: 2020-10-05T11:02:13-04:00
New Revision: eaf73293cb6b8d45dd85ffced57aea7ad4177754
URL:
https://github.com/llvm/llvm-project/commit/eaf73293cb6b8d45dd85ffced57aea7ad4177754
DIFF:
https://github.com/llvm/llvm-project/commit/eaf73293cb6b8d45dd85ffced57aea7ad4177754.diff
Author: Joseph Huber
Date: 2020-10-05T12:35:39-04:00
New Revision: 1dce692de1896412693f25a3afb4818883a611e7
URL:
https://github.com/llvm/llvm-project/commit/1dce692de1896412693f25a3afb4818883a611e7
DIFF:
https://github.com/llvm/llvm-project/commit/1dce692de1896412693f25a3afb4818883a611e7.diff
Author: Joseph Huber
Date: 2020-10-08T08:20:38-04:00
New Revision: 6668e4cc685e74a17ebd386913e842ac3d7472e5
URL:
https://github.com/llvm/llvm-project/commit/6668e4cc685e74a17ebd386913e842ac3d7472e5
DIFF:
https://github.com/llvm/llvm-project/commit/6668e4cc685e74a17ebd386913e842ac3d7472e5.diff
Author: Joseph Huber
Date: 2020-10-08T14:00:22-04:00
New Revision: 3cc1f1fc1d97952136185f4eafb827694875de17
URL:
https://github.com/llvm/llvm-project/commit/3cc1f1fc1d97952136185f4eafb827694875de17
DIFF:
https://github.com/llvm/llvm-project/commit/3cc1f1fc1d97952136185f4eafb827694875de17.diff
Author: Joseph Huber
Date: 2020-10-19T13:41:53-04:00
New Revision: 24df30efda6169915bc75bbf78d4c7f65d5f57e2
URL:
https://github.com/llvm/llvm-project/commit/24df30efda6169915bc75bbf78d4c7f65d5f57e2
DIFF:
https://github.com/llvm/llvm-project/commit/24df30efda6169915bc75bbf78d4c7f65d5f57e2.diff
Author: Joseph Huber
Date: 2020-10-21T17:01:36-04:00
New Revision: cd4a4ae97a7ccfa381e06936cd0981cb7d978ec1
URL:
https://github.com/llvm/llvm-project/commit/cd4a4ae97a7ccfa381e06936cd0981cb7d978ec1
DIFF:
https://github.com/llvm/llvm-project/commit/cd4a4ae97a7ccfa381e06936cd0981cb7d978ec1.diff
Author: Joseph Huber
Date: 2021-05-19T15:10:20-04:00
New Revision: 2db182ff8d0c0d50155bf70d1db60b4e78c348ca
URL:
https://github.com/llvm/llvm-project/commit/2db182ff8d0c0d50155bf70d1db60b4e78c348ca
DIFF:
https://github.com/llvm/llvm-project/commit/2db182ff8d0c0d50155bf70d1db60b4e78c348ca.diff
Author: Joseph Huber
Date: 2021-09-17T21:25:24-04:00
New Revision: c30d7730ebde18d61b33ae1de9ded69dac6ea6be
URL:
https://github.com/llvm/llvm-project/commit/c30d7730ebde18d61b33ae1de9ded69dac6ea6be
DIFF:
https://github.com/llvm/llvm-project/commit/c30d7730ebde18d61b33ae1de9ded69dac6ea6be.diff
Author: Joseph Huber
Date: 2021-09-29T16:08:21-04:00
New Revision: d12502a3abae41c106b715cd29281a4de05efef2
URL:
https://github.com/llvm/llvm-project/commit/d12502a3abae41c106b715cd29281a4de05efef2
DIFF:
https://github.com/llvm/llvm-project/commit/d12502a3abae41c106b715cd29281a4de05efef2.diff
Author: Joseph Huber
Date: 2021-11-09T17:39:24-05:00
New Revision: 4b5c3e591d74f0f5810608b45ede58f3d489e14d
URL:
https://github.com/llvm/llvm-project/commit/4b5c3e591d74f0f5810608b45ede58f3d489e14d
DIFF:
https://github.com/llvm/llvm-project/commit/4b5c3e591d74f0f5810608b45ede58f3d489e14d.diff
Author: Joseph Huber
Date: 2021-03-11T09:52:11-05:00
New Revision: 807466ef28125cf7268c860b09d5563c9c93602a
URL:
https://github.com/llvm/llvm-project/commit/807466ef28125cf7268c860b09d5563c9c93602a
DIFF:
https://github.com/llvm/llvm-project/commit/807466ef28125cf7268c860b09d5563c9c93602a.diff
Author: Joseph Huber
Date: 2021-12-02T11:11:45-05:00
New Revision: c99407e31c3977bf397531bf115a63b0fda68e4d
URL:
https://github.com/llvm/llvm-project/commit/c99407e31c3977bf397531bf115a63b0fda68e4d
DIFF:
https://github.com/llvm/llvm-project/commit/c99407e31c3977bf397531bf115a63b0fda68e4d.diff
Author: Joseph Huber
Date: 2021-12-02T12:35:58-05:00
New Revision: 96ff74a0d5982cb70ac25883f3b0d5bb99947aa9
URL:
https://github.com/llvm/llvm-project/commit/96ff74a0d5982cb70ac25883f3b0d5bb99947aa9
DIFF:
https://github.com/llvm/llvm-project/commit/96ff74a0d5982cb70ac25883f3b0d5bb99947aa9.diff
Author: Joseph Huber
Date: 2022-10-18T08:15:39-05:00
New Revision: bb3c90d3ecd142e60cf994338bdd4b59d8788cd3
URL:
https://github.com/llvm/llvm-project/commit/bb3c90d3ecd142e60cf994338bdd4b59d8788cd3
DIFF:
https://github.com/llvm/llvm-project/commit/bb3c90d3ecd142e60cf994338bdd4b59d8788cd3.diff
Author: Joseph Huber
Date: 2022-10-18T16:37:28-05:00
New Revision: 8c1449a84d61f6caa4b6e63f262b2c8976949548
URL:
https://github.com/llvm/llvm-project/commit/8c1449a84d61f6caa4b6e63f262b2c8976949548
DIFF:
https://github.com/llvm/llvm-project/commit/8c1449a84d61f6caa4b6e63f262b2c8976949548.diff
Author: Joseph Huber
Date: 2022-10-18T16:38:19-05:00
New Revision: 037669de8bdff42fc17b72460bf8784403c8d055
URL:
https://github.com/llvm/llvm-project/commit/037669de8bdff42fc17b72460bf8784403c8d055
DIFF:
https://github.com/llvm/llvm-project/commit/037669de8bdff42fc17b72460bf8784403c8d055.diff
Author: Joseph Huber
Date: 2022-10-20T11:25:16-05:00
New Revision: 2a9a13d9cc5fceeb2cdb293dffeca0bc326c479f
URL:
https://github.com/llvm/llvm-project/commit/2a9a13d9cc5fceeb2cdb293dffeca0bc326c479f
DIFF:
https://github.com/llvm/llvm-project/commit/2a9a13d9cc5fceeb2cdb293dffeca0bc326c479f.diff
Author: Joseph Huber
Date: 2022-08-18T15:01:01-04:00
New Revision: ca6d70b32effe51a8d1654efe93154e7b96dcc23
URL:
https://github.com/llvm/llvm-project/commit/ca6d70b32effe51a8d1654efe93154e7b96dcc23
DIFF:
https://github.com/llvm/llvm-project/commit/ca6d70b32effe51a8d1654efe93154e7b96dcc23.diff
Author: Joseph Huber
Date: 2022-08-23T12:57:16Z
New Revision: bf062954364d69e0fb8e3e04ef3a65c432e8bd50
URL:
https://github.com/llvm/llvm-project/commit/bf062954364d69e0fb8e3e04ef3a65c432e8bd50
DIFF:
https://github.com/llvm/llvm-project/commit/bf062954364d69e0fb8e3e04ef3a65c432e8bd50.diff
LOG:
Author: Joseph Huber
Date: 2022-08-23T08:45:30-05:00
New Revision: ea0549d41bc44f60db6a2fb9e0f32e752d47e177
URL:
https://github.com/llvm/llvm-project/commit/ea0549d41bc44f60db6a2fb9e0f32e752d47e177
DIFF:
https://github.com/llvm/llvm-project/commit/ea0549d41bc44f60db6a2fb9e0f32e752d47e177.diff
Author: Joseph Huber
Date: 2022-08-23T10:01:54-05:00
New Revision: 86bfab2723618772f5c4ffc2a68eedca592c6928
URL:
https://github.com/llvm/llvm-project/commit/86bfab2723618772f5c4ffc2a68eedca592c6928
DIFF:
https://github.com/llvm/llvm-project/commit/86bfab2723618772f5c4ffc2a68eedca592c6928.diff
Author: Joseph Huber
Date: 2022-08-23T14:09:51-05:00
New Revision: 2b8f722e630d0fdf1ca267361866a27c8d4c9387
URL:
https://github.com/llvm/llvm-project/commit/2b8f722e630d0fdf1ca267361866a27c8d4c9387
DIFF:
https://github.com/llvm/llvm-project/commit/2b8f722e630d0fdf1ca267361866a27c8d4c9387.diff
Author: Joseph Huber
Date: 2022-08-24T08:47:55-05:00
New Revision: ba57828e11c52f45420f2027dae0843cf83a57bf
URL:
https://github.com/llvm/llvm-project/commit/ba57828e11c52f45420f2027dae0843cf83a57bf
DIFF:
https://github.com/llvm/llvm-project/commit/ba57828e11c52f45420f2027dae0843cf83a57bf.diff
Author: Joseph Huber
Date: 2022-08-26T15:28:34-05:00
New Revision: 937aaead87f055caa4d91d7ba637d442a94a24a6
URL:
https://github.com/llvm/llvm-project/commit/937aaead87f055caa4d91d7ba637d442a94a24a6
DIFF:
https://github.com/llvm/llvm-project/commit/937aaead87f055caa4d91d7ba637d442a94a24a6.diff
Author: Joseph Huber
Date: 2022-09-19T14:38:44-05:00
New Revision: b647f13226b4b30b8b0cb6e9baebc7a01558cde4
URL:
https://github.com/llvm/llvm-project/commit/b647f13226b4b30b8b0cb6e9baebc7a01558cde4
DIFF:
https://github.com/llvm/llvm-project/commit/b647f13226b4b30b8b0cb6e9baebc7a01558cde4.diff
Author: Joseph Huber
Date: 2022-09-22T21:34:33-05:00
New Revision: 5d12e9a5717c738522cd5ec98f098fbf4ce1aec2
URL:
https://github.com/llvm/llvm-project/commit/5d12e9a5717c738522cd5ec98f098fbf4ce1aec2
DIFF:
https://github.com/llvm/llvm-project/commit/5d12e9a5717c738522cd5ec98f098fbf4ce1aec2.diff
Author: Joseph Huber
Date: 2022-09-24T07:58:40-05:00
New Revision: e2213159fa654a9ba8b211204a7342f6bc1690c6
URL:
https://github.com/llvm/llvm-project/commit/e2213159fa654a9ba8b211204a7342f6bc1690c6
DIFF:
https://github.com/llvm/llvm-project/commit/e2213159fa654a9ba8b211204a7342f6bc1690c6.diff
Author: Joseph Huber
Date: 2022-09-27T10:49:17-05:00
New Revision: f50a7c7a26e074231cc9a60a3fcaef7520ceb67f
URL:
https://github.com/llvm/llvm-project/commit/f50a7c7a26e074231cc9a60a3fcaef7520ceb67f
DIFF:
https://github.com/llvm/llvm-project/commit/f50a7c7a26e074231cc9a60a3fcaef7520ceb67f.diff
Author: Joseph Huber
Date: 2022-10-03T10:35:51-05:00
New Revision: 11adae50892e6e94f10ce41bc738a9823a6b3251
URL:
https://github.com/llvm/llvm-project/commit/11adae50892e6e94f10ce41bc738a9823a6b3251
DIFF:
https://github.com/llvm/llvm-project/commit/11adae50892e6e94f10ce41bc738a9823a6b3251.diff
Author: Joseph Huber
Date: 2022-10-05T14:39:22-05:00
New Revision: a8ec170e01dd0d0cbf8c059aa7addaaf3d886876
URL:
https://github.com/llvm/llvm-project/commit/a8ec170e01dd0d0cbf8c059aa7addaaf3d886876
DIFF:
https://github.com/llvm/llvm-project/commit/a8ec170e01dd0d0cbf8c059aa7addaaf3d886876.diff
Author: Joseph Huber
Date: 2022-10-06T09:36:09-05:00
New Revision: ac135f9ee574e7451088926c667d93d51a3d6940
URL:
https://github.com/llvm/llvm-project/commit/ac135f9ee574e7451088926c667d93d51a3d6940
DIFF:
https://github.com/llvm/llvm-project/commit/ac135f9ee574e7451088926c667d93d51a3d6940.diff
Author: Joseph Huber
Date: 2022-10-06T18:20:15-05:00
New Revision: 5aba68960719c5d2de9ee0b459def9203e521f5e
URL:
https://github.com/llvm/llvm-project/commit/5aba68960719c5d2de9ee0b459def9203e521f5e
DIFF:
https://github.com/llvm/llvm-project/commit/5aba68960719c5d2de9ee0b459def9203e521f5e.diff
Author: Joseph Huber
Date: 2022-10-06T18:22:09-05:00
New Revision: 4aa87a131f93de73b8e245021af0294545d063c5
URL:
https://github.com/llvm/llvm-project/commit/4aa87a131f93de73b8e245021af0294545d063c5
DIFF:
https://github.com/llvm/llvm-project/commit/4aa87a131f93de73b8e245021af0294545d063c5.diff
Author: Joseph Huber
Date: 2022-10-10T15:56:46-05:00
New Revision: 52b8f3a80c6b2b1efcd91e2278bd9d63a0b1567b
URL:
https://github.com/llvm/llvm-project/commit/52b8f3a80c6b2b1efcd91e2278bd9d63a0b1567b
DIFF:
https://github.com/llvm/llvm-project/commit/52b8f3a80c6b2b1efcd91e2278bd9d63a0b1567b.diff
Author: Joseph Huber
Date: 2022-10-11T13:40:41-05:00
New Revision: 4b76a80459e69daca2f62f522a6117a9350613dc
URL:
https://github.com/llvm/llvm-project/commit/4b76a80459e69daca2f62f522a6117a9350613dc
DIFF:
https://github.com/llvm/llvm-project/commit/4b76a80459e69daca2f62f522a6117a9350613dc.diff
Author: Joseph Huber
Date: 2022-10-11T13:40:42-05:00
New Revision: c2494635f47d94ca1c596fe5e0983295aba81853
URL:
https://github.com/llvm/llvm-project/commit/c2494635f47d94ca1c596fe5e0983295aba81853
DIFF:
https://github.com/llvm/llvm-project/commit/c2494635f47d94ca1c596fe5e0983295aba81853.diff
Author: Joseph Huber
Date: 2022-10-11T17:46:20-05:00
New Revision: adf36ea328910ce019893b426aac044bab166e73
URL:
https://github.com/llvm/llvm-project/commit/adf36ea328910ce019893b426aac044bab166e73
DIFF:
https://github.com/llvm/llvm-project/commit/adf36ea328910ce019893b426aac044bab166e73.diff
Author: Joseph Huber
Date: 2022-10-12T14:07:52-05:00
New Revision: 8d72f445f79992fd860a73ca4ebd78c1bcc6324b
URL:
https://github.com/llvm/llvm-project/commit/8d72f445f79992fd860a73ca4ebd78c1bcc6324b
DIFF:
https://github.com/llvm/llvm-project/commit/8d72f445f79992fd860a73ca4ebd78c1bcc6324b.diff
Author: Joseph Huber
Date: 2022-12-25T09:47:04-06:00
New Revision: f74e3d2f81d2aae47d6032fc1d23114460d48a37
URL:
https://github.com/llvm/llvm-project/commit/f74e3d2f81d2aae47d6032fc1d23114460d48a37
DIFF:
https://github.com/llvm/llvm-project/commit/f74e3d2f81d2aae47d6032fc1d23114460d48a37.diff
Author: Joseph Huber
Date: 2022-12-25T21:24:30-06:00
New Revision: d5a5ee856e7ccd442ad22168c56ff77197255cbe
URL:
https://github.com/llvm/llvm-project/commit/d5a5ee856e7ccd442ad22168c56ff77197255cbe
DIFF:
https://github.com/llvm/llvm-project/commit/d5a5ee856e7ccd442ad22168c56ff77197255cbe.diff
Author: Joseph Huber
Date: 2023-01-06T20:01:41-06:00
New Revision: f5f746f1efd45a6e9ed8ca9be26e8c01c5aa00b1
URL:
https://github.com/llvm/llvm-project/commit/f5f746f1efd45a6e9ed8ca9be26e8c01c5aa00b1
DIFF:
https://github.com/llvm/llvm-project/commit/f5f746f1efd45a6e9ed8ca9be26e8c01c5aa00b1.diff
Author: Joseph Huber
Date: 2023-01-06T20:02:23-06:00
New Revision: cf97ee75f080579d2bbf2a559ec5d46ee00d828d
URL:
https://github.com/llvm/llvm-project/commit/cf97ee75f080579d2bbf2a559ec5d46ee00d828d
DIFF:
https://github.com/llvm/llvm-project/commit/cf97ee75f080579d2bbf2a559ec5d46ee00d828d.diff
Author: Joseph Huber
Date: 2023-01-06T21:14:31-06:00
New Revision: faa29ee0f9c941b193161ad48a46713a04a81163
URL:
https://github.com/llvm/llvm-project/commit/faa29ee0f9c941b193161ad48a46713a04a81163
DIFF:
https://github.com/llvm/llvm-project/commit/faa29ee0f9c941b193161ad48a46713a04a81163.diff
Author: Joseph Huber
Date: 2023-01-09T10:03:19-06:00
New Revision: a5098e5f27badc3ba16533418accd2e17641e4e4
URL:
https://github.com/llvm/llvm-project/commit/a5098e5f27badc3ba16533418accd2e17641e4e4
DIFF:
https://github.com/llvm/llvm-project/commit/a5098e5f27badc3ba16533418accd2e17641e4e4.diff
Author: Joseph Huber
Date: 2023-01-11T10:30:30-06:00
New Revision: 56ebfca4bcc0e7a54989ad7aea5395b27f67e373
URL:
https://github.com/llvm/llvm-project/commit/56ebfca4bcc0e7a54989ad7aea5395b27f67e373
DIFF:
https://github.com/llvm/llvm-project/commit/56ebfca4bcc0e7a54989ad7aea5395b27f67e373.diff
Author: Joseph Huber
Date: 2023-01-11T10:30:38-06:00
New Revision: a17ab7aa3be0b2b2adf992e3754a58f17802491f
URL:
https://github.com/llvm/llvm-project/commit/a17ab7aa3be0b2b2adf992e3754a58f17802491f
DIFF:
https://github.com/llvm/llvm-project/commit/a17ab7aa3be0b2b2adf992e3754a58f17802491f.diff
Author: Joseph Huber
Date: 2023-01-11T10:30:34-06:00
New Revision: fada90286008b52a59ff13b15675032787501001
URL:
https://github.com/llvm/llvm-project/commit/fada90286008b52a59ff13b15675032787501001
DIFF:
https://github.com/llvm/llvm-project/commit/fada90286008b52a59ff13b15675032787501001.diff
Author: Joseph Huber
Date: 2023-01-11T10:31:47-06:00
New Revision: 0d9afee3d159f5b7cdac7637808f3e25ff16a536
URL:
https://github.com/llvm/llvm-project/commit/0d9afee3d159f5b7cdac7637808f3e25ff16a536
DIFF:
https://github.com/llvm/llvm-project/commit/0d9afee3d159f5b7cdac7637808f3e25ff16a536.diff
701 - 800 of 2677 matches
Mail list logo