1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
; RUN: llc < %s | FileCheck %s
target datalayout = "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64"
target triple = "thumbv7-unknown-linux-gnueabihf"
%Target = type { ptr, ptr }
%List = type { i32, ptr }
; The entry block should be the first block of the function.
; CHECK-LABEL: foo
; CHECK: %entry
; CHECK: %for.body
; CHECK: %for.inc
; CHECK: %if.then
; CHECK: %for.cond.i
; CHECK: %for.body.i
; CHECK: %return
define i1 @foo(ptr %ha, i32 %he) !prof !39 {
entry:
%TargetPtr = load ptr, ptr %ha, align 4
%cmp1 = icmp eq ptr %TargetPtr, null
br i1 %cmp1, label %return, label %for.body, !prof !50
for.body:
%TargetPhi = phi ptr [ %NextPtr, %for.inc ], [ %TargetPtr, %entry ]
%ListAddr = getelementptr inbounds %Target, ptr %TargetPhi, i32 0, i32 1
%ListPtr = load ptr, ptr %ListAddr, align 4
%cmp2 = icmp eq ptr %ListPtr, null
br i1 %cmp2, label %for.inc, label %if.then, !prof !59
if.then:
%len = load i32, ptr %ListPtr, align 4
%ptr = getelementptr inbounds %List, ptr %ListPtr, i32 0, i32 1
%ptr2 = load ptr, ptr %ptr, align 4
br label %for.cond.i
for.cond.i:
%i = phi i32 [ %len, %if.then ], [ %index, %for.body.i ]
%index = add nsw i32 %i, -1
%cmp3 = icmp sgt i32 %i, 0
br i1 %cmp3, label %for.body.i, label %for.inc, !prof !75
for.body.i:
%ptr3 = getelementptr inbounds i32, ptr %ptr2, i32 %index
%data = load i32, ptr %ptr3, align 4
%cmp4 = icmp eq i32 %data, %he
br i1 %cmp4, label %return, label %for.cond.i, !prof !79
for.inc:
%NextPtr = load ptr, ptr %TargetPhi, align 4
%cmp5 = icmp eq ptr %NextPtr, null
br i1 %cmp5, label %return, label %for.body, !prof !50
return:
%retval = phi i1 [ false, %entry ], [ true, %for.body.i ], [ false, %for.inc ]
ret i1 %retval
}
!39 = !{!"function_entry_count", i64 226}
!50 = !{!"branch_weights", i32 451, i32 1}
!59 = !{!"branch_weights", i32 1502, i32 1}
!75 = !{!"branch_weights", i32 301, i32 1}
!79 = !{!"branch_weights", i32 1, i32 301}
|