[Libclc-dev] [PATCH 1/2] amdgcn: Update datalayout after LLVM r328656

Aaron Watry via Libclc-dev libclc-dev at lists.llvm.org
Wed Apr 4 12:58:10 PDT 2018


Sorry Jan, I'll try to.make some time tonight to review outstanding patches.

--Aaron

On Wed, Apr 4, 2018, 2:18 PM Jan Vesely via Libclc-dev <
libclc-dev at lists.llvm.org> wrote:

> On Fri, 2018-03-30 at 18:34 -0400, Jan Vesely wrote:
> > Signed-off-by: Jan Vesely <jan.vesely at rutgers.edu>
> > ---
> >  amdgcn/lib/cl_khr_int64_extended_atomics/minmax_helpers.ll | 2 +-
> >  amdgcn/lib/workitem/get_global_size.ll                     | 2 +-
> >  amdgcn/lib/workitem/get_local_size.ll                      | 2 +-
> >  amdgcn/lib/workitem/get_num_groups.ll                      | 2 +-
> >  4 files changed, 4 insertions(+), 4 deletions(-)
> >
> > diff --git a/amdgcn/lib/cl_khr_int64_extended_atomics/minmax_helpers.ll
> b/amdgcn/lib/cl_khr_int64_extended_atomics/minmax_helpers.ll
> > index e678434..0fea3f6 100644
> > --- a/amdgcn/lib/cl_khr_int64_extended_atomics/minmax_helpers.ll
> > +++ b/amdgcn/lib/cl_khr_int64_extended_atomics/minmax_helpers.ll
> > @@ -1,4 +1,4 @@
> > -target datalayout =
> "e-p:64:64-p1:64:64-p2:32:32-p3:32:32-p4:64:64-p5:32:32-p6:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64-A5"
> > +target datalayout =
> "e-p:64:64-p1:64:64-p2:32:32-p3:32:32-p4:64:64-p5:32:32-p6:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64-S32-A5"
> >
> >  define i64 @__clc__sync_fetch_and_min_global_8(i64 addrspace(1)*
> nocapture %ptr, i64 %value) nounwind alwaysinline {
> >  entry:
> > diff --git a/amdgcn/lib/workitem/get_global_size.ll
> b/amdgcn/lib/workitem/get_global_size.ll
> > index 40636a1..43788ed 100644
> > --- a/amdgcn/lib/workitem/get_global_size.ll
> > +++ b/amdgcn/lib/workitem/get_global_size.ll
> > @@ -2,7 +2,7 @@ declare i32 @llvm.r600.read.global.size.x() nounwind
> readnone
> >  declare i32 @llvm.r600.read.global.size.y() nounwind readnone
> >  declare i32 @llvm.r600.read.global.size.z() nounwind readnone
> >
> > -target datalayout =
> "e-p:64:64-p1:64:64-p2:32:32-p3:32:32-p4:64:64-p5:32:32-p6:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64-A5"
> > +target datalayout =
> "e-p:64:64-p1:64:64-p2:32:32-p3:32:32-p4:64:64-p5:32:32-p6:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64-S32-A5"
> >
> >  define i64 @get_global_size(i32 %dim) nounwind readnone alwaysinline {
> >    switch i32 %dim, label %default [i32 0, label %x_dim i32 1, label
> %y_dim i32 2, label %z_dim]
> > diff --git a/amdgcn/lib/workitem/get_local_size.ll
> b/amdgcn/lib/workitem/get_local_size.ll
> > index 8ed4925..988c4cb 100644
> > --- a/amdgcn/lib/workitem/get_local_size.ll
> > +++ b/amdgcn/lib/workitem/get_local_size.ll
> > @@ -2,7 +2,7 @@ declare i32 @llvm.r600.read.local.size.x() nounwind
> readnone
> >  declare i32 @llvm.r600.read.local.size.y() nounwind readnone
> >  declare i32 @llvm.r600.read.local.size.z() nounwind readnone
> >
> > -target datalayout =
> "e-p:64:64-p1:64:64-p2:32:32-p3:32:32-p4:64:64-p5:32:32-p6:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64-A5"
> > +target datalayout =
> "e-p:64:64-p1:64:64-p2:32:32-p3:32:32-p4:64:64-p5:32:32-p6:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64-S32-A5"
> >
> >  define i64 @get_local_size(i32 %dim) nounwind readnone alwaysinline {
> >    switch i32 %dim, label %default [i32 0, label %x_dim i32 1, label
> %y_dim i32 2, label %z_dim]
> > diff --git a/amdgcn/lib/workitem/get_num_groups.ll
> b/amdgcn/lib/workitem/get_num_groups.ll
> > index 4283197..a364bec 100644
> > --- a/amdgcn/lib/workitem/get_num_groups.ll
> > +++ b/amdgcn/lib/workitem/get_num_groups.ll
> > @@ -2,7 +2,7 @@ declare i32 @llvm.r600.read.ngroups.x() nounwind readnone
> >  declare i32 @llvm.r600.read.ngroups.y() nounwind readnone
> >  declare i32 @llvm.r600.read.ngroups.z() nounwind readnone
> >
> > -target datalayout =
> "e-p:64:64-p1:64:64-p2:32:32-p3:32:32-p4:64:64-p5:32:32-p6:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64-A5"
> > +target datalayout =
> "e-p:64:64-p1:64:64-p2:32:32-p3:32:32-p4:64:64-p5:32:32-p6:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64-S32-A5"
> >
> >  define i64 @get_num_groups(i32 %dim) nounwind readnone alwaysinline {
> >    switch i32 %dim, label %default [i32 0, label %x_dim i32 1, label
> %y_dim i32 2, label %z_dim]
>
> ping
> _______________________________________________
> Libclc-dev mailing list
> Libclc-dev at lists.llvm.org
> http://lists.llvm.org/cgi-bin/mailman/listinfo/libclc-dev
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/libclc-dev/attachments/20180404/87879aab/attachment.html>


More information about the Libclc-dev mailing list