Skip to content

Commit b76e5d9

Browse files
committedMay 10, 2016
Propagate branch metadata when some branch probability is missing.
Summary: In sample profile, some branches may have profile missing due to profile inaccuracy. We want existing branch probability still valid after propagation. Reviewers: hfinkel, davidxl, spatel Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D19948 llvm-svn: 269137
1 parent 1df01f0 commit b76e5d9

File tree

2 files changed

+38
-6
lines changed

2 files changed

+38
-6
lines changed
 

‎llvm/lib/Transforms/Utils/SimplifyCFG.cpp

+13-5
Original file line numberDiff line numberDiff line change
@@ -2821,15 +2821,23 @@ static bool SimplifyCondBranchToCondBranch(BranchInst *PBI, BranchInst *BI,
28212821

28222822
// Update branch weight for PBI.
28232823
uint64_t PredTrueWeight, PredFalseWeight, SuccTrueWeight, SuccFalseWeight;
2824+
uint64_t PredCommon, PredOther, SuccCommon, SuccOther;
28242825
bool PredHasWeights =
28252826
PBI->extractProfMetadata(PredTrueWeight, PredFalseWeight);
28262827
bool SuccHasWeights =
28272828
BI->extractProfMetadata(SuccTrueWeight, SuccFalseWeight);
2828-
if (PredHasWeights && SuccHasWeights) {
2829-
uint64_t PredCommon = PBIOp ? PredFalseWeight : PredTrueWeight;
2830-
uint64_t PredOther = PBIOp ?PredTrueWeight : PredFalseWeight;
2831-
uint64_t SuccCommon = BIOp ? SuccFalseWeight : SuccTrueWeight;
2832-
uint64_t SuccOther = BIOp ? SuccTrueWeight : SuccFalseWeight;
2829+
bool HasWeights = PredHasWeights || SuccHasWeights;
2830+
if (HasWeights) {
2831+
if (!PredHasWeights) {
2832+
PredFalseWeight = PredTrueWeight = 1;
2833+
}
2834+
if (!SuccHasWeights) {
2835+
SuccFalseWeight = SuccTrueWeight = 1;
2836+
}
2837+
PredCommon = PBIOp ? PredFalseWeight : PredTrueWeight;
2838+
PredOther = PBIOp ? PredTrueWeight : PredFalseWeight;
2839+
SuccCommon = BIOp ? SuccFalseWeight : SuccTrueWeight;
2840+
SuccOther = BIOp ? SuccTrueWeight : SuccFalseWeight;
28332841
// The weight to CommonDest should be PredCommon * SuccTotal +
28342842
// PredOther * SuccCommon.
28352843
// The weight to OtherDest should be PredOther * SuccOther.

‎llvm/test/Transforms/SimplifyCFG/preserve-branchweights.ll

+25-1
Original file line numberDiff line numberDiff line change
@@ -464,6 +464,30 @@ exit:
464464
ret i32 %outval
465465
}
466466

467+
define i32 @SimplifyCondBranchToCondBranchSwapMissingWeight(i1 %cmpa, i1 %cmpb) {
468+
; CHECK-LABEL: @SimplifyCondBranchToCondBranchSwapMissingWeight(
469+
; CHECK-NEXT: block1:
470+
; CHECK-NEXT: [[CMPA_NOT:%.*]] = xor i1 %cmpa, true
471+
; CHECK-NEXT: [[CMPB_NOT:%.*]] = xor i1 %cmpb, true
472+
; CHECK-NEXT: [[BRMERGE:%.*]] = or i1 [[CMPA_NOT]], [[CMPB_NOT]]
473+
; CHECK-NEXT: [[DOTMUX:%.*]] = select i1 [[CMPA_NOT]], i32 0, i32 2
474+
; CHECK-NEXT: [[OUTVAL:%.*]] = select i1 [[BRMERGE]], i32 [[DOTMUX]], i32 1, !prof !16
475+
; CHECK-NEXT: ret i32 [[OUTVAL]]
476+
;
477+
block1:
478+
br i1 %cmpa, label %block2, label %block3, !prof !13
479+
480+
block2:
481+
br i1 %cmpb, label %exit, label %block3
482+
483+
block3:
484+
%cowval = phi i32 [ 2, %block2 ], [ 0, %block1 ]
485+
br label %exit
486+
487+
exit:
488+
%outval = phi i32 [ %cowval, %block3 ], [ 1, %block2 ]
489+
ret i32 %outval
490+
}
467491

468492
!0 = !{!"branch_weights", i32 3, i32 5}
469493
!1 = !{!"branch_weights", i32 1, i32 1}
@@ -499,4 +523,4 @@ exit:
499523
; CHECK: !13 = !{!"branch_weights", i32 34, i32 21}
500524
; CHECK: !14 = !{!"branch_weights", i32 33, i32 14}
501525
; CHECK: !15 = !{!"branch_weights", i32 47, i32 8}
502-
526+
; CHECK: !16 = !{!"branch_weights", i32 8, i32 2}

0 commit comments

Comments
 (0)
Please sign in to comment.