Skip to content

Instantly share code, notes, and snippets.

@nickdesaulniers
Created July 2, 2019 21:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nickdesaulniers/7216f6e5a17c7064285190440cb88f1d to your computer and use it in GitHub Desktop.
Save nickdesaulniers/7216f6e5a17c7064285190440cb88f1d to your computer and use it in GitHub Desktop.
; RUN: opt -loop-unroll -S -o - %s 2>&1 | FileCheck %s
; CHECK: if.then:
; CHECK-NEXT: callbr void asm sideeffect "1: nop\0A\09.quad b, ${0:l}, $$5\0A\09", "X,~{dirflag},~{fpsr},~{flags}"(i8* blockaddress(@d, %l_yes))
; CHECK-NEXT: to label %asm.fallthrough [label %l_yes]
; CHECK: l_yes:
; CHECK: if.then.1:
; CHECK-NEXT: callbr void asm sideeffect "1: nop\0A\09.quad b, ${0:l}, $$5\0A\09", "X,~{dirflag},~{fpsr},~{flags}"(i8* blockaddress(@d, %l_yes.1))
; CHECK-NEXT: to label %asm.fallthrough.1 [label %l_yes.1]
; CHECK: l_yes.1:
; CHECK: if.then.2:
; CHECK-NEXT: callbr void asm sideeffect "1: nop\0A\09.quad b, ${0:l}, $$5\0A\09", "X,~{dirflag},~{fpsr},~{flags}"(i8* blockaddress(@d, %l_yes.2))
; CHECK-NEXT: to label %asm.fallthrough.2 [label %l_yes.2]
; CHECK: l_yes.2
define dso_local i32 @d() {
entry:
br label %for.body
for.cond.cleanup: ; preds = %for.inc
ret i32 undef
for.body: ; preds = %for.inc, %entry
%e.04 = phi i32 [ 0, %entry ], [ %inc, %for.inc ]
%tobool = icmp eq i32 %e.04, 0
br i1 %tobool, label %for.inc, label %if.then
if.then: ; preds = %for.body
callbr void asm sideeffect "1: nop\0A\09.quad b, ${0:l}, $$5\0A\09", "X,~{dirflag},~{fpsr},~{flags}"(i8* blockaddress(@d, %l_yes))
to label %asm.fallthrough [label %l_yes]
asm.fallthrough: ; preds = %if.then
br label %l_yes
l_yes: ; preds = %asm.fallthrough, %if.then
%call = tail call i32 (...) @g()
br label %for.inc
for.inc: ; preds = %for.body, %l_yes
%inc = add nuw nsw i32 %e.04, 1
%exitcond = icmp eq i32 %inc, 3
br i1 %exitcond, label %for.cond.cleanup, label %for.body
}
declare dso_local i32 @g(...) local_unnamed_addr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment