[MIParser] Set RegClassOrRegBank during instruction parsing
[llvm-complete.git] / test / CodeGen / BPF / CORE / offset-reloc-access-str.ll
blobc2e3296067c3e33c0db30f0d0b5043f986d2b048
1 ; RUN: llc -march=bpfel -filetype=asm -o - %s | FileCheck %s
2 ; RUN: llc -march=bpfeb -filetype=asm -o - %s | FileCheck %s
4 ; Source code:
5 ;   struct s { int a; int b; };
6 ;   struct t { int c; int d; };
7 ;   #define _(x) (__builtin_preserve_access_index(x))
8 ;   int get_value(const void *addr1, const void *addr2);
9 ;   int test(struct s *arg1, struct t *arg2) {
10 ;     return get_value(_(&arg1->b), _(&arg2->d));
11 ;   }
12 ; clang -target bpf -S -O2 -g -emit-llvm test.c
14 %struct.s = type { i32, i32 }
15 %struct.t = type { i32, i32 }
17 ; Function Attrs: nounwind
18 define dso_local i32 @test(%struct.s* %arg1, %struct.t* %arg2) local_unnamed_addr #0 !dbg !7 {
19 entry:
20   call void @llvm.dbg.value(metadata %struct.s* %arg1, metadata !22, metadata !DIExpression()), !dbg !24
21   call void @llvm.dbg.value(metadata %struct.t* %arg2, metadata !23, metadata !DIExpression()), !dbg !24
22   %0 = tail call i32* @llvm.preserve.struct.access.index.p0i32.p0s_struct.ss(%struct.s* %arg1, i32 1, i32 1), !dbg !25, !llvm.preserve.access.index !12
23   %1 = bitcast i32* %0 to i8*, !dbg !25
24   %2 = tail call i32* @llvm.preserve.struct.access.index.p0i32.p0s_struct.ts(%struct.t* %arg2, i32 1, i32 1), !dbg !26, !llvm.preserve.access.index !17
25   %3 = bitcast i32* %2 to i8*, !dbg !26
26   %call = tail call i32 @get_value(i8* %1, i8* %3) #4, !dbg !27
27   ret i32 %call, !dbg !28
30 ; CHECK:             .section        .BTF,"",@progbits
31 ; CHECK:             .ascii  ".text"                 # string offset=[[SEC_INDEX:[0-9]+]]
32 ; CHECK-NEXT:        .byte   0
33 ; CHECK:             .ascii  "0:1"                   # string offset=[[ACCESS_STR:[0-9]+]]
34 ; CHECK-NEXT:        .byte   0
35 ; CHECK:             .section        .BTF.ext,"",@progbits
36 ; CHECK:             .long   16                      # FieldReloc
37 ; CHECK-NEXT:        .long   [[SEC_INDEX]]           # Field reloc section string offset=[[SEC_INDEX]]
38 ; CHECK-NEXT:        .long   2
39 ; CHECK-NEXT:        .long   .Ltmp{{[0-9]+}}
40 ; CHECK-NEXT:        .long   {{[0-9]+}}
41 ; CHECK-NEXT:        .long   [[ACCESS_STR]]
42 ; CHECK-NEXT:        .long   0
43 ; CHECK-NEXT:        .long   .Ltmp{{[0-9]+}}
44 ; CHECK-NEXT:        .long   {{[0-9]+}}
45 ; CHECK-NEXT:        .long   [[ACCESS_STR]]
46 ; CHECK-NEXT:        .long   0
48 declare dso_local i32 @get_value(i8*, i8*) local_unnamed_addr #1
50 ; Function Attrs: nounwind readnone
51 declare i32* @llvm.preserve.struct.access.index.p0i32.p0s_struct.ss(%struct.s*, i32 immarg, i32 immarg) #2
53 ; Function Attrs: nounwind readnone
54 declare i32* @llvm.preserve.struct.access.index.p0i32.p0s_struct.ts(%struct.t*, i32 immarg, i32 immarg) #2
56 ; Function Attrs: nounwind readnone speculatable
57 declare void @llvm.dbg.value(metadata, metadata, metadata) #3
59 attributes #0 = { nounwind "correctly-rounded-divide-sqrt-fp-math"="false" "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
60 attributes #1 = { "correctly-rounded-divide-sqrt-fp-math"="false" "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
61 attributes #2 = { nounwind readnone }
62 attributes #3 = { nounwind readnone speculatable }
63 attributes #4 = { nounwind }
65 !llvm.dbg.cu = !{!0}
66 !llvm.module.flags = !{!3, !4, !5}
67 !llvm.ident = !{!6}
69 !0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 10.0.0 (trunk 366831) (llvm/trunk 366867)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, nameTableKind: None)
70 !1 = !DIFile(filename: "test.c", directory: "/tmp/home/yhs/work/tests/llvm/core-bugs")
71 !2 = !{}
72 !3 = !{i32 2, !"Dwarf Version", i32 4}
73 !4 = !{i32 2, !"Debug Info Version", i32 3}
74 !5 = !{i32 1, !"wchar_size", i32 4}
75 !6 = !{!"clang version 10.0.0 (trunk 366831) (llvm/trunk 366867)"}
76 !7 = distinct !DISubprogram(name: "test", scope: !1, file: !1, line: 5, type: !8, scopeLine: 5, flags: DIFlagPrototyped, isDefinition: true, isOptimized: true, unit: !0, retainedNodes: !21)
77 !8 = !DISubroutineType(types: !9)
78 !9 = !{!10, !11, !16}
79 !10 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
80 !11 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !12, size: 64)
81 !12 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "s", file: !1, line: 1, size: 64, elements: !13)
82 !13 = !{!14, !15}
83 !14 = !DIDerivedType(tag: DW_TAG_member, name: "a", scope: !12, file: !1, line: 1, baseType: !10, size: 32)
84 !15 = !DIDerivedType(tag: DW_TAG_member, name: "b", scope: !12, file: !1, line: 1, baseType: !10, size: 32, offset: 32)
85 !16 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !17, size: 64)
86 !17 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "t", file: !1, line: 2, size: 64, elements: !18)
87 !18 = !{!19, !20}
88 !19 = !DIDerivedType(tag: DW_TAG_member, name: "c", scope: !17, file: !1, line: 2, baseType: !10, size: 32)
89 !20 = !DIDerivedType(tag: DW_TAG_member, name: "d", scope: !17, file: !1, line: 2, baseType: !10, size: 32, offset: 32)
90 !21 = !{!22, !23}
91 !22 = !DILocalVariable(name: "arg1", arg: 1, scope: !7, file: !1, line: 5, type: !11)
92 !23 = !DILocalVariable(name: "arg2", arg: 2, scope: !7, file: !1, line: 5, type: !16)
93 !24 = !DILocation(line: 0, scope: !7)
94 !25 = !DILocation(line: 6, column: 20, scope: !7)
95 !26 = !DILocation(line: 6, column: 33, scope: !7)
96 !27 = !DILocation(line: 6, column: 10, scope: !7)
97 !28 = !DILocation(line: 6, column: 3, scope: !7)