Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / BPF / spill-alu32.ll
blobc9de589cad3eb3e0476cf85b2aa44fc26ca22db4
1 ; RUN: llc -march=bpf -mcpu=v3 < %s | FileCheck %s
3 ; Source code:
4 ;   void foo(int, int, int, long, int);
5 ;   int test(int a, int b, int c, long d, int e) {
6 ;     foo(a, b, c, d, e);
7 ;     __asm__ __volatile__ ("":::"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "memory");
8 ;     foo(a, b, c, d, e);
9 ;     return 0;
10 ;   }
11 ; Compilation flag:
12 ;   clang -target bpf -S -emit-llvm -O2 -mcpu=v3 t.c
14 ; Function Attrs: nounwind
15 define dso_local i32 @test(i32 %a, i32 %b, i32 %c, i64 %d, i32 %e) local_unnamed_addr #0 {
16 entry:
17   tail call void @foo(i32 %a, i32 %b, i32 %c, i64 %d, i32 %e) #2
18   tail call void asm sideeffect "", "~{r0},~{r1},~{r2},~{r3},~{r4},~{r5},~{r6},~{r7},~{r8},~{r9},~{memory}"() #2
20 ; CHECK:        *(u32 *)(r10 - 8) = w5
21 ; CHECK:        *(u64 *)(r10 - 16) = r4
22 ; CHECK:        *(u32 *)(r10 - 24) = w3
23 ; CHECK:        *(u32 *)(r10 - 32) = w2
24 ; CHECK:        *(u32 *)(r10 - 40) = w1
25 ; CHECK:        call foo
27   tail call void @foo(i32 %a, i32 %b, i32 %c, i64 %d, i32 %e) #2
28   ret i32 0
31 declare dso_local void @foo(i32, i32, i32, i64, i32) local_unnamed_addr #1
33 attributes #0 = { nounwind "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="v3" }
34 attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="v3" }
35 attributes #2 = { nounwind }