mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
5d51a489ae
(This is the second attempt to submit this patch. The first caused two assertion failures and was reverted. See https://llvm.org/bugs/show_bug.cgi?id=25687) The patch in http://reviews.llvm.org/D13745 is broken into four parts: 1. New interfaces without functional changes (http://reviews.llvm.org/D13908). 2. Use new interfaces in SelectionDAG, while in other passes treat probabilities as weights (http://reviews.llvm.org/D14361). 3. Use new interfaces in all other passes. 4. Remove old interfaces. This patch is 3+4 above. In this patch, MBB won't provide weight-based interfaces any more, which are totally replaced by probability-based ones. The interface addSuccessor() is redesigned so that the default probability is unknown. We allow unknown probabilities but don't allow using it together with known probabilities in successor list. That is to say, we either have a list of successors with all known probabilities, or all unknown probabilities. In the latter case, we assume each successor has 1/N probability where N is the number of successors. An assertion checks if the user is attempting to add a successor with the disallowed mixed use as stated above. This can help us catch many misuses. All uses of weight-based interfaces are now updated to use probability-based ones. Differential revision: http://reviews.llvm.org/D14973 llvm-svn: 254377
43 lines
1.2 KiB
LLVM
43 lines
1.2 KiB
LLVM
; RUN: llc < %s -mtriple=thumbv8 -print-machineinstrs=if-converter -arm-atomic-cfg-tidy=0 -o /dev/null 2>&1 | FileCheck %s
|
|
|
|
%struct.S = type { i8* (i8*)*, [1 x i8] }
|
|
define internal zeroext i8 @bar(%struct.S* %x, %struct.S* nocapture %y) nounwind readonly {
|
|
entry:
|
|
%0 = getelementptr inbounds %struct.S, %struct.S* %x, i32 0, i32 1, i32 0
|
|
%1 = load i8, i8* %0, align 1
|
|
%2 = zext i8 %1 to i32
|
|
%3 = and i32 %2, 112
|
|
%4 = icmp eq i32 %3, 0
|
|
br i1 %4, label %return, label %bb
|
|
|
|
bb:
|
|
%5 = getelementptr inbounds %struct.S, %struct.S* %y, i32 0, i32 1, i32 0
|
|
%6 = load i8, i8* %5, align 1
|
|
%7 = zext i8 %6 to i32
|
|
%8 = and i32 %7, 112
|
|
%9 = icmp eq i32 %8, 0
|
|
br i1 %9, label %return, label %bb2
|
|
|
|
; CHECK: BB#2: derived from LLVM BB %bb2
|
|
; CHECK: Successors according to CFG: BB#3({{[0-9a-fx/= ]+}}50.00%) BB#4({{[0-9a-fx/= ]+}}50.00%)
|
|
|
|
bb2:
|
|
%v10 = icmp eq i32 %3, 16
|
|
br i1 %v10, label %bb4, label %bb3, !prof !0
|
|
|
|
bb3:
|
|
%v11 = icmp eq i32 %8, 16
|
|
br i1 %v11, label %bb4, label %return, !prof !1
|
|
|
|
bb4:
|
|
%v12 = ptrtoint %struct.S* %x to i32
|
|
%phitmp = trunc i32 %v12 to i8
|
|
ret i8 %phitmp
|
|
|
|
return:
|
|
ret i8 1
|
|
}
|
|
|
|
!0 = !{!"branch_weights", i32 4, i32 12}
|
|
!1 = !{!"branch_weights", i32 8, i32 16}
|