2015-09-08 20:39:25 +08:00
|
|
|
; RUN: llc < %s -asm-verbose=false | FileCheck %s
|
|
|
|
|
|
|
|
; Test that phis are lowered.
|
|
|
|
|
2015-09-10 04:54:31 +08:00
|
|
|
target datalayout = "e-p:32:32-i64:64-n32:64-S128"
|
2015-09-08 20:39:25 +08:00
|
|
|
target triple = "wasm32-unknown-unknown"
|
|
|
|
|
2015-09-09 08:52:47 +08:00
|
|
|
; Basic phi triangle.
|
|
|
|
|
2015-10-06 08:27:55 +08:00
|
|
|
; CHECK-LABEL: test0:
|
2015-11-24 05:55:57 +08:00
|
|
|
; CHECK: div_s $[[NUM0:[0-9]+]]=, $0, $pop[[NUM1:[0-9]+]]{{$}}
|
2015-11-19 00:12:01 +08:00
|
|
|
; CHECK: return $[[NUM0]]{{$}}
|
2015-09-08 20:39:25 +08:00
|
|
|
define i32 @test0(i32 %p) {
|
|
|
|
entry:
|
|
|
|
%t = icmp slt i32 %p, 0
|
|
|
|
br i1 %t, label %true, label %done
|
|
|
|
true:
|
|
|
|
%a = sdiv i32 %p, 3
|
|
|
|
br label %done
|
|
|
|
done:
|
|
|
|
%s = phi i32 [ %a, %true ], [ %p, %entry ]
|
|
|
|
ret i32 %s
|
|
|
|
}
|
2015-09-09 08:52:47 +08:00
|
|
|
|
|
|
|
; Swap phis.
|
|
|
|
|
2015-10-06 08:27:55 +08:00
|
|
|
; CHECK-LABEL: test1:
|
2015-09-17 00:51:30 +08:00
|
|
|
; CHECK: BB1_1:
|
2015-11-24 05:55:57 +08:00
|
|
|
; CHECK: copy_local $[[NUM0:[0-9]+]]=, $[[NUM1:[0-9]+]]{{$}}
|
|
|
|
; CHECK: copy_local $[[NUM1]]=, $[[NUM2:[0-9]+]]{{$}}
|
|
|
|
; CHECK: copy_local $[[NUM2]]=, $[[NUM0]]{{$}}
|
2015-09-09 08:52:47 +08:00
|
|
|
define i32 @test1(i32 %n) {
|
|
|
|
entry:
|
|
|
|
br label %loop
|
|
|
|
|
|
|
|
loop:
|
|
|
|
%a = phi i32 [ 0, %entry ], [ %b, %loop ]
|
|
|
|
%b = phi i32 [ 1, %entry ], [ %a, %loop ]
|
|
|
|
%i = phi i32 [ 0, %entry ], [ %i.next, %loop ]
|
|
|
|
|
|
|
|
%i.next = add i32 %i, 1
|
|
|
|
%t = icmp slt i32 %i.next, %n
|
|
|
|
br i1 %t, label %loop, label %exit
|
|
|
|
|
|
|
|
exit:
|
|
|
|
ret i32 %a
|
|
|
|
}
|