Before llvm20, (void)__sync_fetch_and_add(...) always generates locked xadd insns. In linux kernel upstream discussion [1], it is found that for arm64 architecture, the original semantics of (void)__sync_fetch_and_add(...), i.e., __atomic_fetch_add(...), is preferred in order for jit to emit proper native barrier insns. In llvm commits [2] and [3], (void)__sync_fetch_and_add(...) will generate the following insns: - for cpu v1/v2: locked xadd insns to keep backward compatibility - for cpu v3/v4: __atomic_fetch_add() insns To ensure proper barrier semantics for (void)__sync_fetch_and_add(...), cpu v3/v4 is recommended. This patch enables cpu=v3 as the default cpu version. For users wanting to use cpu v1, -mcpu=v1 needs to be explicitly added to clang/llc command line. [1] https://lore.kernel.org/bpf/ZqqiQQWRnz7H93Hc@google.com/T/#mb68d67bc8f39e35a0c3db52468b9de59b79f021f [2] https://github.com/llvm/llvm-project/pull/101428 [3] https://github.com/llvm/llvm-project/pull/106494
120 lines
3.0 KiB
LLVM
120 lines
3.0 KiB
LLVM
; RUN: llc < %s -march=bpf -mcpu=v1 | FileCheck %s
|
|
|
|
; Function Attrs: nounwind readnone uwtable
|
|
define signext i8 @foo_cmp1(i8 signext %a, i8 signext %b) #0 {
|
|
%1 = icmp sgt i8 %a, %b
|
|
br i1 %1, label %2, label %4
|
|
|
|
; <label>:2 ; preds = %0
|
|
%3 = mul i8 %b, %a
|
|
br label %6
|
|
|
|
; <label>:4 ; preds = %0
|
|
%5 = shl i8 %b, 3
|
|
br label %6
|
|
|
|
; <label>:6 ; preds = %4, %2
|
|
%.0 = phi i8 [ %3, %2 ], [ %5, %4 ]
|
|
ret i8 %.0
|
|
; CHECK-LABEL:foo_cmp1:
|
|
; CHECK: if r0 s>= r1
|
|
}
|
|
|
|
; Function Attrs: nounwind readnone uwtable
|
|
define signext i8 @foo_cmp2(i8 signext %a, i8 signext %b) #0 {
|
|
%1 = icmp slt i8 %a, %b
|
|
br i1 %1, label %4, label %2
|
|
|
|
; <label>:2 ; preds = %0
|
|
%3 = mul i8 %b, %a
|
|
br label %6
|
|
|
|
; <label>:4 ; preds = %0
|
|
%5 = shl i8 %b, 3
|
|
br label %6
|
|
|
|
; <label>:6 ; preds = %4, %2
|
|
%.0 = phi i8 [ %3, %2 ], [ %5, %4 ]
|
|
ret i8 %.0
|
|
; CHECK-LABEL:foo_cmp2:
|
|
; CHECK: if r0 s> r1
|
|
}
|
|
|
|
; Function Attrs: nounwind readnone uwtable
|
|
define signext i8 @foo_cmp3(i8 signext %a, i8 signext %b) #0 {
|
|
%1 = icmp slt i8 %a, %b
|
|
br i1 %1, label %2, label %4
|
|
|
|
; <label>:2 ; preds = %0
|
|
%3 = mul i8 %b, %a
|
|
br label %6
|
|
|
|
; <label>:4 ; preds = %0
|
|
%5 = shl i8 %b, 3
|
|
br label %6
|
|
|
|
; <label>:6 ; preds = %4, %2
|
|
%.0 = phi i8 [ %3, %2 ], [ %5, %4 ]
|
|
ret i8 %.0
|
|
; CHECK-LABEL:foo_cmp3:
|
|
; CHECK: if r1 s>= r0
|
|
}
|
|
|
|
; Function Attrs: nounwind readnone uwtable
|
|
define signext i8 @foo_cmp4(i8 signext %a, i8 signext %b) #0 {
|
|
%1 = icmp sgt i8 %a, %b
|
|
br i1 %1, label %4, label %2
|
|
|
|
; <label>:2 ; preds = %0
|
|
%3 = mul i8 %b, %a
|
|
br label %6
|
|
|
|
; <label>:4 ; preds = %0
|
|
%5 = shl i8 %b, 3
|
|
br label %6
|
|
|
|
; <label>:6 ; preds = %4, %2
|
|
%.0 = phi i8 [ %3, %2 ], [ %5, %4 ]
|
|
ret i8 %.0
|
|
; CHECK-LABEL:foo_cmp4:
|
|
; CHECK: if r1 s> r0
|
|
}
|
|
|
|
; Function Attrs: nounwind readnone uwtable
|
|
define signext i8 @min(i8 signext %a, i8 signext %b) #0 {
|
|
%1 = icmp slt i8 %a, %b
|
|
%a.b = select i1 %1, i8 %a, i8 %b
|
|
ret i8 %a.b
|
|
; CHECK-LABEL:min:
|
|
; CHECK: r0 = r1
|
|
; CHECK: if r2 s> r0
|
|
; CHECK: r0 = r2
|
|
}
|
|
|
|
; Function Attrs: nounwind readnone uwtable
|
|
define zeroext i8 @minu(i8 zeroext %a, i8 zeroext %b) #0 {
|
|
%1 = icmp ult i8 %a, 100
|
|
%a.b = select i1 %1, i8 %a, i8 %b
|
|
ret i8 %a.b
|
|
; CHECK-LABEL:minu:
|
|
; CHECK: if r{{[0-9]+}} {{<|>}} r{{[0-9]+}}
|
|
}
|
|
|
|
; Function Attrs: nounwind readnone uwtable
|
|
define signext i8 @max(i8 signext %a, i8 signext %b) #0 {
|
|
%1 = icmp sgt i8 %a, %b
|
|
%a.b = select i1 %1, i8 %a, i8 %b
|
|
ret i8 %a.b
|
|
; CHECK-LABEL:max:
|
|
; CHECK: if r0 s> r2
|
|
}
|
|
|
|
; Function Attrs: nounwind readnone uwtable
|
|
define signext i8 @meq(i8 signext %a, i8 signext %b, i8 signext %c) #0 {
|
|
%1 = icmp eq i8 %a, %b
|
|
%c.a = select i1 %1, i8 %c, i8 %a
|
|
ret i8 %c.a
|
|
; CHECK-LABEL:meq:
|
|
; CHECK: if r1 == r2
|
|
}
|