[Clang/AMDGPU] Zero sized arrays not allowed in HIP device code. (#113470)
[llvm-project.git] / llvm / test / CodeGen / BPF / reloc-2.ll
blob9bbb5f3d2fd61f61705f11c2c340534c197378a2
1 ; RUN: llc -mtriple=bpfel -mcpu=v1 -filetype=obj -o %t.el < %s
2 ; RUN: llvm-objdump -r %t.el | FileCheck --check-prefix=RELOC %s
3 ; RUN: llvm-objdump --no-print-imm-hex -d --no-show-raw-insn %t.el | FileCheck --check-prefix=DUMP %s
4 ; RUN: llc -mtriple=bpfeb -mcpu=v1 -filetype=obj -o %t.eb < %s
5 ; RUN: llvm-objdump -r %t.eb | FileCheck --check-prefix=RELOC %s
6 ; RUN: llvm-objdump --no-print-imm-hex -d --no-show-raw-insn %t.eb | FileCheck --check-prefix=DUMP %s
8 ; source code:
9 ;   static __attribute__((noinline)) __attribute__((section("sec1")))
10 ;   int add(int a, int b) {
11 ;     return a + b;
12 ;   }
13 ;   static __attribute__((noinline))
14 ;   int sub(int a, int b) {
15 ;     return a - b;
16 ;   }
17 ;   int test(int a, int b) {
18 ;     return add(a, b) + sub(a, b);
19 ;   }
20 ; compilation flag:
21 ;   clang -target bpf -O2 -emit-llvm -S test.c
23 define dso_local i32 @test(i32 %a, i32 %b) local_unnamed_addr #0 {
24 entry:
25   %call = tail call fastcc i32 @add(i32 %a, i32 %b)
26   %call1 = tail call fastcc i32 @sub(i32 %a, i32 %b)
27   %add = add nsw i32 %call1, %call
28   ret i32 %add
31 define internal fastcc i32 @add(i32 %a, i32 %b) unnamed_addr #1 section "sec1" {
32 entry:
33   %add = add nsw i32 %b, %a
34   ret i32 %add
37 ; Function Attrs: nofree noinline norecurse nosync nounwind readnone willreturn mustprogress
38 define internal fastcc i32 @sub(i32 %a, i32 %b) unnamed_addr #1 {
39 entry:
40   %sub = sub nsw i32 %a, %b
41   ret i32 %sub
44 ; DUMP:       .text:
45 ; DUMP-EMPTY:
46 ; DUMP-NEXT:  <test>
47 ; DUMP-NEXT:  r[[#]] = r[[#]]
48 ; DUMP-NEXT:  r[[#]] = r[[#]]
49 ; DUMP-NEXT:  call -1
51 ; DUMP:       sec1:
52 ; DUMP-EMPTY:
53 ; DUMP-NEXT:  <add>
55 ; RELOC:      RELOCATION RECORDS FOR [.text]:
56 ; RELOC:      R_BPF_64_32            sec1
57 ; RELOC-NOT:  R_BPF_64_32
59 attributes #0 = { nofree norecurse nosync nounwind readnone willreturn mustprogress "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" }
60 attributes #1 = { nofree noinline norecurse nosync nounwind readnone willreturn mustprogress "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" }