Specific instances of intrinsic calls may want to be convergent, such
as certain register reads but the intrinsic declaration is not.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@273188
91177308-0d34-0410-b5e6-
96231b3b80d8
if (Function *CalleeF = dyn_cast<Function>(Callee)) {
// Remove the convergent attr on calls when the callee is not convergent.
- if (CS.isConvergent() && !CalleeF->isConvergent()) {
+ if (CS.isConvergent() && !CalleeF->isConvergent() &&
+ !CalleeF->isIntrinsic()) {
DEBUG(dbgs() << "Removing convergent attr from instr "
<< CS.getInstruction() << "\n");
CS.setNotConvergent();
declare i32 @k() convergent
declare i32 @f()
+declare i64 @llvm.read_register.i64(metadata) nounwind
+
define i32 @extern() {
; Convergent attr shouldn't be removed here; k is convergent.
; CHECK: call i32 @k() [[CONVERGENT_ATTR:#[0-9]+]]
ret i32 %a
}
+; do not remove from convergent intrinsic call sites
+; CHECK-LABEL: @convergent_intrinsic_call(
+; CHECK: call i64 @llvm.read_register.i64(metadata !0) [[CONVERGENT_ATTR]]
+define i64 @convergent_intrinsic_call() {
+ %val = call i64 @llvm.read_register.i64(metadata !0) convergent
+ ret i64 %val
+}
+
; CHECK: [[CONVERGENT_ATTR]] = { convergent }
+!0 = !{!"foo"}