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
4; Source code:
5;   int *a;
6; Compilation flag:
7;   clang -target bpf -O2 -g -S -emit-llvm t.c
8
9@a = common dso_local local_unnamed_addr global i32* null, align 8, !dbg !0
10
11!llvm.dbg.cu = !{!2}
12!llvm.module.flags = !{!8, !9, !10}
13!llvm.ident = !{!11}
14
15; CHECK:             .section        .BTF,"",@progbits
16; CHECK-NEXT:        .short  60319                   # 0xeb9f
17; CHECK-NEXT:        .byte   1
18; CHECK-NEXT:        .byte   0
19; CHECK-NEXT:        .long   24
20; CHECK-NEXT:        .long   0
21; CHECK-NEXT:        .long   28
22; CHECK-NEXT:        .long   28
23; CHECK-NEXT:        .long   5
24; CHECK-NEXT:        .long   0                       # BTF_KIND_PTR(id = 1)
25; CHECK-NEXT:        .long   33554432                # 0x2000000
26; CHECK-NEXT:        .long   2
27; CHECK-NEXT:        .long   1                       # BTF_KIND_INT(id = 2)
28; CHECK-NEXT:        .long   16777216                # 0x1000000
29; CHECK-NEXT:        .long   4
30; CHECK-NEXT:        .long   16777248                # 0x1000020
31; CHECK-NEXT:        .byte   0                       # string offset=0
32; CHECK-NEXT:        .ascii  "int"                   # string offset=1
33; CHECK-NEXT:        .byte   0
34
35!0 = !DIGlobalVariableExpression(var: !1, expr: !DIExpression())
36!1 = distinct !DIGlobalVariable(name: "a", scope: !2, file: !3, line: 1, type: !6, isLocal: false, isDefinition: true)
37!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)
38!3 = !DIFile(filename: "t.c", directory: "/home/yhs/tmp")
39!4 = !{}
40!5 = !{!0}
41!6 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !7, size: 64)
42!7 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
43!8 = !{i32 2, !"Dwarf Version", i32 4}
44!9 = !{i32 2, !"Debug Info Version", i32 3}
45!10 = !{i32 1, !"wchar_size", i32 4}
46!11 = !{!"clang version 8.0.0 (trunk 344789) (llvm/trunk 344782)"}
47