The GPUDivergenceAnalysis is now renamed to just "DivergenceAnalysis" since there is no conflict with LegacyDivergenceAnalysis. In the legacy PM, this analysis can only be used through the legacy DA serving as a wrapper. It is now made available as a pass in the new PM, and has no relation with the legacy DA. The new DA currently cannot handle irreducible control flow; its presence can cause the analysis to run indefinitely. The analysis is now modified to detect this and report all instructions in the function as divergent. This is super conservative, but allows the analysis to be used without hanging the compiler. Reviewed By: aeubanks Differential Revision: https://reviews.llvm.org/D96615
156 lines
4.2 KiB
LLVM
156 lines
4.2 KiB
LLVM
; RUN: opt -mtriple amdgcn-unknown-amdhsa -enable-new-pm=0 -analyze -divergence -use-gpu-divergence-analysis %s | FileCheck %s
|
|
; RUN: opt -mtriple amdgcn-unknown-amdhsa -passes='print<divergence>' -disable-output %s 2>&1 | FileCheck %s
|
|
|
|
; temporal-divergent use of value carried by divergent loop
|
|
define amdgpu_kernel void @temporal_diverge(i32 %n, i32 %a, i32 %b) #0 {
|
|
; CHECK-LABEL: Divergence Analysis' for function 'temporal_diverge':
|
|
; CHECK-NOT: DIVERGENT: %uni.
|
|
; CHECK-NOT: DIVERGENT: br i1 %uni.
|
|
|
|
entry:
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x()
|
|
%uni.cond = icmp slt i32 %a, 0
|
|
br label %H
|
|
|
|
H:
|
|
%uni.merge.h = phi i32 [ 0, %entry ], [ %uni.inc, %H ]
|
|
%uni.inc = add i32 %uni.merge.h, 1
|
|
%div.exitx = icmp slt i32 %tid, 0
|
|
br i1 %div.exitx, label %X, label %H ; divergent branch
|
|
; CHECK: DIVERGENT: %div.exitx =
|
|
; CHECK: DIVERGENT: br i1 %div.exitx,
|
|
|
|
X:
|
|
%div.user = add i32 %uni.inc, 5
|
|
ret void
|
|
}
|
|
|
|
; temporal-divergent use of value carried by divergent loop inside a top-level loop
|
|
define amdgpu_kernel void @temporal_diverge_inloop(i32 %n, i32 %a, i32 %b) #0 {
|
|
; CHECK-LABEL: Divergence Analysis' for function 'temporal_diverge_inloop':
|
|
; CHECK-NOT: DIVERGENT: %uni.
|
|
; CHECK-NOT: DIVERGENT: br i1 %uni.
|
|
|
|
entry:
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x()
|
|
%uni.cond = icmp slt i32 %a, 0
|
|
br label %G
|
|
|
|
G:
|
|
br label %H
|
|
|
|
H:
|
|
%uni.merge.h = phi i32 [ 0, %G ], [ %uni.inc, %H ]
|
|
%uni.inc = add i32 %uni.merge.h, 1
|
|
%div.exitx = icmp slt i32 %tid, 0
|
|
br i1 %div.exitx, label %X, label %H ; divergent branch
|
|
; CHECK: DIVERGENT: %div.exitx =
|
|
; CHECK: DIVERGENT: br i1 %div.exitx,
|
|
|
|
X:
|
|
%div.user = add i32 %uni.inc, 5
|
|
br i1 %uni.cond, label %G, label %Y
|
|
|
|
Y:
|
|
%div.alsouser = add i32 %uni.inc, 5
|
|
ret void
|
|
}
|
|
|
|
|
|
; temporal-uniform use of a valud, definition and users are carried by a surrounding divergent loop
|
|
define amdgpu_kernel void @temporal_uniform_indivloop(i32 %n, i32 %a, i32 %b) #0 {
|
|
; CHECK-LABEL: Divergence Analysis' for function 'temporal_uniform_indivloop':
|
|
; CHECK-NOT: DIVERGENT: %uni.
|
|
; CHECK-NOT: DIVERGENT: br i1 %uni.
|
|
|
|
entry:
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x()
|
|
%uni.cond = icmp slt i32 %a, 0
|
|
br label %G
|
|
|
|
G:
|
|
br label %H
|
|
|
|
H:
|
|
%uni.merge.h = phi i32 [ 0, %G ], [ %uni.inc, %H ]
|
|
%uni.inc = add i32 %uni.merge.h, 1
|
|
br i1 %uni.cond, label %X, label %H ; divergent branch
|
|
|
|
X:
|
|
%uni.user = add i32 %uni.inc, 5
|
|
%div.exity = icmp slt i32 %tid, 0
|
|
; CHECK: DIVERGENT: %div.exity =
|
|
br i1 %div.exity, label %G, label %Y
|
|
; CHECK: DIVERGENT: br i1 %div.exity,
|
|
|
|
Y:
|
|
%div.alsouser = add i32 %uni.inc, 5
|
|
ret void
|
|
}
|
|
|
|
|
|
; temporal-divergent use of value carried by divergent loop, user is inside sibling loop
|
|
define amdgpu_kernel void @temporal_diverge_loopuser(i32 %n, i32 %a, i32 %b) #0 {
|
|
; CHECK-LABEL: Divergence Analysis' for function 'temporal_diverge_loopuser':
|
|
; CHECK-NOT: DIVERGENT: %uni.
|
|
; CHECK-NOT: DIVERGENT: br i1 %uni.
|
|
|
|
entry:
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x()
|
|
%uni.cond = icmp slt i32 %a, 0
|
|
br label %H
|
|
|
|
H:
|
|
%uni.merge.h = phi i32 [ 0, %entry ], [ %uni.inc, %H ]
|
|
%uni.inc = add i32 %uni.merge.h, 1
|
|
%div.exitx = icmp slt i32 %tid, 0
|
|
br i1 %div.exitx, label %X, label %H ; divergent branch
|
|
; CHECK: DIVERGENT: %div.exitx =
|
|
; CHECK: DIVERGENT: br i1 %div.exitx,
|
|
|
|
X:
|
|
br label %G
|
|
|
|
G:
|
|
%div.user = add i32 %uni.inc, 5
|
|
br i1 %uni.cond, label %G, label %Y
|
|
|
|
Y:
|
|
ret void
|
|
}
|
|
|
|
; temporal-divergent use of value carried by divergent loop, user is inside sibling loop, defs and use are carried by a uniform loop
|
|
define amdgpu_kernel void @temporal_diverge_loopuser_nested(i32 %n, i32 %a, i32 %b) #0 {
|
|
; CHECK-LABEL: Divergence Analysis' for function 'temporal_diverge_loopuser_nested':
|
|
; CHECK-NOT: DIVERGENT: %uni.
|
|
; CHECK-NOT: DIVERGENT: br i1 %uni.
|
|
|
|
entry:
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x()
|
|
%uni.cond = icmp slt i32 %a, 0
|
|
br label %H
|
|
|
|
H:
|
|
%uni.merge.h = phi i32 [ 0, %entry ], [ %uni.inc, %H ]
|
|
%uni.inc = add i32 %uni.merge.h, 1
|
|
%div.exitx = icmp slt i32 %tid, 0
|
|
br i1 %div.exitx, label %X, label %H ; divergent branch
|
|
; CHECK: DIVERGENT: %div.exitx =
|
|
; CHECK: DIVERGENT: br i1 %div.exitx,
|
|
|
|
X:
|
|
br label %G
|
|
|
|
G:
|
|
%div.user = add i32 %uni.inc, 5
|
|
br i1 %uni.cond, label %G, label %Y
|
|
|
|
Y:
|
|
ret void
|
|
}
|
|
|
|
|
|
declare i32 @llvm.amdgcn.workitem.id.x() #0
|
|
|
|
attributes #0 = { nounwind readnone }
|