bolt/deps/llvm-18.1.8/llvm/test/CodeGen/NVPTX/speculative-execution-divergent-target.ll

30 lines
1 KiB
LLVM
Raw Normal View History

2025-02-14 19:21:04 +01:00
; Checks that speculative-execution only runs on divergent targets, if you pass
; -spec-exec-only-if-divergent-target.
; RUN: opt < %s -S -mtriple=nvptx-nvidia-cuda -passes=speculative-execution | \
; RUN: FileCheck --check-prefix=ON %s
; RUN: opt < %s -S -mtriple=nvptx-nvidia-cuda -passes=speculative-execution \
; RUN: -spec-exec-only-if-divergent-target | \
; RUN: FileCheck --check-prefix=ON %s
; RUN: opt < %s -S -mtriple=nvptx-nvidia-cuda \
; RUN: -passes='speculative-execution<only-if-divergent-target>' | \
; RUN: FileCheck --check-prefix=ON %s
; RUN: opt < %s -S -passes=speculative-execution -spec-exec-only-if-divergent-target | \
; RUN: FileCheck --check-prefix=OFF %s
; RUN: opt < %s -S -passes='speculative-execution<only-if-divergent-target>' | \
; RUN: FileCheck --check-prefix=OFF %s
; Hoist in if-then pattern.
define void @f() {
; ON: %x = add i32 2, 3
; ON: br i1 true
; OFF: br i1 true
; OFF: %x = add i32 2, 3
br i1 true, label %a, label %b
a:
%x = add i32 2, 3
br label %b
b:
ret void
}