|
| 1 | +; RUN: llc -march=bpfel -filetype=asm -o - %s | FileCheck -check-prefixes=CHECK %s |
| 2 | +; RUN: llc -march=bpfeb -filetype=asm -o - %s | FileCheck -check-prefixes=CHECK %s |
| 3 | +; Source: |
| 4 | +; struct tt; |
| 5 | +; typedef struct tt _tt; |
| 6 | +; typedef _tt __tt; |
| 7 | +; struct s1 { __tt *mp; }; |
| 8 | +; int test1(struct s1 *arg) |
| 9 | +; { |
| 10 | +; return 0; |
| 11 | +; } |
| 12 | +; |
| 13 | +; struct tt { int m1; int m2; }; |
| 14 | +; struct s2 { __tt m3; }; |
| 15 | +; int test2(struct s2 *arg) |
| 16 | +; { |
| 17 | +; return arg->m3.m1; |
| 18 | +; } |
| 19 | +; Compilation flags: |
| 20 | +; clang -target bpf -O2 -g -S -emit-llvm t.c |
| 21 | + |
| 22 | +%struct.s1 = type { %struct.tt* } |
| 23 | +%struct.tt = type { i32, i32 } |
| 24 | +%struct.s2 = type { %struct.tt } |
| 25 | + |
| 26 | +; Function Attrs: norecurse nounwind readnone |
| 27 | +define dso_local i32 @test1(%struct.s1* nocapture readnone %arg) local_unnamed_addr #0 !dbg !7 { |
| 28 | +entry: |
| 29 | + call void @llvm.dbg.value(metadata %struct.s1* %arg, metadata !23, metadata !DIExpression()), !dbg !24 |
| 30 | + ret i32 0, !dbg !25 |
| 31 | +} |
| 32 | + |
| 33 | +; Function Attrs: norecurse nounwind readonly |
| 34 | +define dso_local i32 @test2(%struct.s2* nocapture readonly %arg) local_unnamed_addr #1 !dbg !26 { |
| 35 | +entry: |
| 36 | + call void @llvm.dbg.value(metadata %struct.s2* %arg, metadata !34, metadata !DIExpression()), !dbg !35 |
| 37 | + %m1 = getelementptr inbounds %struct.s2, %struct.s2* %arg, i64 0, i32 0, i32 0, !dbg !36 |
| 38 | + %0 = load i32, i32* %m1, align 4, !dbg !36, !tbaa !37 |
| 39 | + ret i32 %0, !dbg !43 |
| 40 | +} |
| 41 | + |
| 42 | +; CHECK: .long 7 # BTF_KIND_TYPEDEF(id = 4) |
| 43 | +; CHECK-NEXT: .long 134217728 # 0x8000000 |
| 44 | +; CHECK-NEXT: .long 5 |
| 45 | +; CHECK-NEXT: .long 12 # BTF_KIND_TYPEDEF(id = 5) |
| 46 | +; CHECK-NEXT: .long 134217728 # 0x8000000 |
| 47 | +; CHECK-NEXT: .long 11 |
| 48 | + |
| 49 | +; CHECK: .long 69 # BTF_KIND_STRUCT(id = 10) |
| 50 | +; CHECK-NEXT: .long 67108865 # 0x4000001 |
| 51 | +; CHECK-NEXT: .long 8 |
| 52 | +; CHECK-NEXT: .long 72 |
| 53 | +; CHECK-NEXT: .long 4 |
| 54 | +; CHECK-NEXT: .long 0 # 0x0 |
| 55 | + |
| 56 | +; CHECK: .long 75 # BTF_KIND_STRUCT(id = 11) |
| 57 | +; CHECK-NEXT: .long 67108866 # 0x4000002 |
| 58 | +; CHECK-NEXT: .long 8 |
| 59 | +; CHECK-NEXT: .long 78 |
| 60 | +; CHECK-NEXT: .long 7 |
| 61 | +; CHECK-NEXT: .long 0 # 0x0 |
| 62 | +; CHECK-NEXT: .long 81 |
| 63 | +; CHECK-NEXT: .long 7 |
| 64 | +; CHECK-NEXT: .long 32 # 0x20 |
| 65 | + |
| 66 | +; CHECK: .ascii "__tt" # string offset=7 |
| 67 | +; CHECK: .ascii "_tt" # string offset=12 |
| 68 | +; CHECK: .ascii "s2" # string offset=69 |
| 69 | +; CHECK: .ascii "m3" # string offset=72 |
| 70 | +; CHECK: .ascii "tt" # string offset=75 |
| 71 | +; CHECK: .ascii "m1" # string offset=78 |
| 72 | +; CHECK: .ascii "m2" # string offset=81 |
| 73 | + |
| 74 | +; Function Attrs: nounwind readnone speculatable willreturn |
| 75 | +declare void @llvm.dbg.value(metadata, metadata, metadata) #2 |
| 76 | + |
| 77 | +attributes #0 = { norecurse nounwind readnone "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"="true" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" } |
| 78 | +attributes #1 = { norecurse nounwind readonly "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"="true" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" } |
| 79 | +attributes #2 = { nounwind readnone speculatable willreturn } |
| 80 | + |
| 81 | +!llvm.dbg.cu = !{!0} |
| 82 | +!llvm.module.flags = !{!3, !4, !5} |
| 83 | +!llvm.ident = !{!6} |
| 84 | + |
| 85 | +!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 11.0.0 (https://github.com/llvm/llvm-project.git 7cfd267c518aba226b34b7fbfe8db70000b22053)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, splitDebugInlining: false, nameTableKind: None) |
| 86 | +!1 = !DIFile(filename: "t.c", directory: "/tmp/home/yhs/work/tests/btf") |
| 87 | +!2 = !{} |
| 88 | +!3 = !{i32 7, !"Dwarf Version", i32 4} |
| 89 | +!4 = !{i32 2, !"Debug Info Version", i32 3} |
| 90 | +!5 = !{i32 1, !"wchar_size", i32 4} |
| 91 | +!6 = !{!"clang version 11.0.0 (https://github.com/llvm/llvm-project.git 7cfd267c518aba226b34b7fbfe8db70000b22053)"} |
| 92 | +!7 = distinct !DISubprogram(name: "test1", scope: !1, file: !1, line: 5, type: !8, scopeLine: 6, flags: DIFlagPrototyped | DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !22) |
| 93 | +!8 = !DISubroutineType(types: !9) |
| 94 | +!9 = !{!10, !11} |
| 95 | +!10 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed) |
| 96 | +!11 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !12, size: 64) |
| 97 | +!12 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "s1", file: !1, line: 4, size: 64, elements: !13) |
| 98 | +!13 = !{!14} |
| 99 | +!14 = !DIDerivedType(tag: DW_TAG_member, name: "mp", scope: !12, file: !1, line: 4, baseType: !15, size: 64) |
| 100 | +!15 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !16, size: 64) |
| 101 | +!16 = !DIDerivedType(tag: DW_TAG_typedef, name: "__tt", file: !1, line: 3, baseType: !17) |
| 102 | +!17 = !DIDerivedType(tag: DW_TAG_typedef, name: "_tt", file: !1, line: 2, baseType: !18) |
| 103 | +!18 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "tt", file: !1, line: 10, size: 64, elements: !19) |
| 104 | +!19 = !{!20, !21} |
| 105 | +!20 = !DIDerivedType(tag: DW_TAG_member, name: "m1", scope: !18, file: !1, line: 10, baseType: !10, size: 32) |
| 106 | +!21 = !DIDerivedType(tag: DW_TAG_member, name: "m2", scope: !18, file: !1, line: 10, baseType: !10, size: 32, offset: 32) |
| 107 | +!22 = !{!23} |
| 108 | +!23 = !DILocalVariable(name: "arg", arg: 1, scope: !7, file: !1, line: 5, type: !11) |
| 109 | +!24 = !DILocation(line: 0, scope: !7) |
| 110 | +!25 = !DILocation(line: 7, column: 3, scope: !7) |
| 111 | +!26 = distinct !DISubprogram(name: "test2", scope: !1, file: !1, line: 12, type: !27, scopeLine: 13, flags: DIFlagPrototyped | DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !33) |
| 112 | +!27 = !DISubroutineType(types: !28) |
| 113 | +!28 = !{!10, !29} |
| 114 | +!29 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !30, size: 64) |
| 115 | +!30 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "s2", file: !1, line: 11, size: 64, elements: !31) |
| 116 | +!31 = !{!32} |
| 117 | +!32 = !DIDerivedType(tag: DW_TAG_member, name: "m3", scope: !30, file: !1, line: 11, baseType: !16, size: 64) |
| 118 | +!33 = !{!34} |
| 119 | +!34 = !DILocalVariable(name: "arg", arg: 1, scope: !26, file: !1, line: 12, type: !29) |
| 120 | +!35 = !DILocation(line: 0, scope: !26) |
| 121 | +!36 = !DILocation(line: 14, column: 18, scope: !26) |
| 122 | +!37 = !{!38, !40, i64 0} |
| 123 | +!38 = !{!"s2", !39, i64 0} |
| 124 | +!39 = !{!"tt", !40, i64 0, !40, i64 4} |
| 125 | +!40 = !{!"int", !41, i64 0} |
| 126 | +!41 = !{!"omnipotent char", !42, i64 0} |
| 127 | +!42 = !{!"Simple C/C++ TBAA"} |
| 128 | +!43 = !DILocation(line: 14, column: 3, scope: !26) |
0 commit comments