[MIParser] Set RegClassOrRegBank during instruction parsing
[llvm-complete.git] / test / CodeGen / BPF / BTF / fwd-no-define.ll
blob12d10af896b14e0bd23074a5d3afc6764e21aefa
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
4 ; Source code:
5 ;   struct t1;
6 ;   struct t2 {struct t1 *p;} a;
7 ; Compilation flag:
8 ;   clang -target bpf -O2 -g -S -emit-llvm t.c
10 %struct.t2 = type { %struct.t1* }
11 %struct.t1 = type opaque
13 @a = common dso_local local_unnamed_addr global %struct.t2 zeroinitializer, align 8, !dbg !0
15 !llvm.dbg.cu = !{!2}
16 !llvm.module.flags = !{!11, !12, !13}
17 !llvm.ident = !{!14}
19 ; CHECK:             .section        .BTF,"",@progbits
20 ; CHECK-NEXT:        .short  60319                   # 0xeb9f
21 ; CHECK-NEXT:        .byte   1
22 ; CHECK-NEXT:        .byte   0
23 ; CHECK-NEXT:        .long   24
24 ; CHECK-NEXT:        .long   0
25 ; CHECK-NEXT:        .long   48
26 ; CHECK-NEXT:        .long   48
27 ; CHECK-NEXT:        .long   9
28 ; CHECK-NEXT:        .long   1                       # BTF_KIND_STRUCT(id = 1)
29 ; CHECK-NEXT:        .long   67108865                # 0x4000001
30 ; CHECK-NEXT:        .long   8
31 ; CHECK-NEXT:        .long   4
32 ; CHECK-NEXT:        .long   2
33 ; CHECK-NEXT:        .long   0
34 ; CHECK-NEXT:        .long   0                       # BTF_KIND_PTR(id = 2)
35 ; CHECK-NEXT:        .long   33554432                # 0x2000000
36 ; CHECK-NEXT:        .long   3
37 ; CHECK-NEXT:        .long   6                       # BTF_KIND_FWD(id = 3)
38 ; CHECK-NEXT:        .long   117440512               # 0x7000000
39 ; CHECK-NEXT:        .long   0
40 ; CHECK-NEXT:        .byte   0                       # string offset=0
41 ; CHECK-NEXT:        .ascii  "t2"                    # string offset=1
42 ; CHECK-NEXT:        .byte   0
43 ; CHECK-NEXT:        .byte   112                     # string offset=4
44 ; CHECK-NEXT:        .byte   0
45 ; CHECK-NEXT:        .ascii  "t1"                    # string offset=6
46 ; CHECK-NEXT:        .byte   0
48 !0 = !DIGlobalVariableExpression(var: !1, expr: !DIExpression())
49 !1 = distinct !DIGlobalVariable(name: "a", scope: !2, file: !3, line: 2, type: !6, isLocal: false, isDefinition: true)
50 !2 = distinct !DICompileUnit(language: DW_LANG_C99, file: !3, producer: "clang version 8.0.0 (trunk 344789) (llvm/trunk 344782)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !5, nameTableKind: None)
51 !3 = !DIFile(filename: "t.c", directory: "/home/yhs/tmp")
52 !4 = !{}
53 !5 = !{!0}
54 !6 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "t2", file: !3, line: 2, size: 64, elements: !7)
55 !7 = !{!8}
56 !8 = !DIDerivedType(tag: DW_TAG_member, name: "p", scope: !6, file: !3, line: 2, baseType: !9, size: 64)
57 !9 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !10, size: 64)
58 !10 = !DICompositeType(tag: DW_TAG_structure_type, name: "t1", file: !3, line: 1, flags: DIFlagFwdDecl)
59 !11 = !{i32 2, !"Dwarf Version", i32 4}
60 !12 = !{i32 2, !"Debug Info Version", i32 3}
61 !13 = !{i32 1, !"wchar_size", i32 4}
62 !14 = !{!"clang version 8.0.0 (trunk 344789) (llvm/trunk 344782)"}