在phi节点指令中的先前块标签的LLVM IR位置

时间:2015-10-07 21:52:28

标签: llvm llvm-ir ssa

当在基本块中使用phi节点时,如果前驱者是某个块的概率较高,我应该在其中放置标签。例如,采用下面列出的简单因子函数。

define private i64 @fact(i64 %start) {
entry:
  %0 = icmp sle i64 1, %start
  br i1 %0, label %loop, label %endcond

loop:                                              ; preds = %loop, %entry
  %1 = phi i64 [ %res, %loop ], [ 1, %entry ]      ; if %start > 2 predecessor
  %2 = phi i64 [ %3, %loop ], [ %start, %entry ]   ; is likely %loop
  %res = mul i64 %1, %2
  %3 = sub i64 %2, 1
  %cond = icmp sle i64 1, %3
  br i1 %cond, label %loop, label %endcond

endcond:                                           ; preds = %loop, %entry
  %fin = phi i64 [ %res, %loop ], [ 1, %entry ]    ; highly unlikely
  ret i64 %fin                                     ; predecessor is %entry
}

虽然用户可能会输入@fact(1),但不太可能,所以我希望在大多数情况下endcond中phi节点的前趋块为post.loop。所以我的假设是在这种情况下

%fin = phi i64 [ %res, %post.loop ], [ 1, %entry ]

优于

%fin = phi i64 [ 1, %entry ], [ %res, %post.loop ]

正确?如果是这样,为什么或为什么不呢?

1 个答案:

答案 0 :(得分:1)

没有任何区别。 LLVM将对您的代码进行分析以估计分支概率,并使用它来对结果块进行排序。

您可以使用分支权重元数据来影响这一点:http://llvm.org/docs/BlockFrequencyTerminology.html