1 ; RUN: opt -O2 %s | llvm-dis > %t1
2 ; RUN: llc -filetype=asm -o - %t1 | FileCheck %s
3 ; RUN: llc -mattr=+alu32 -filetype=asm -o - %t1 | FileCheck %s
6 ; #define _(x) (__builtin_preserve_access_index(x))
7 ; struct s {int a; int b;};
8 ; const ptr test(struct s *arg) { return _(&arg->b); }
9 ; Compiler flag to generate IR:
10 ; clang -target bpf -S -O2 -g -emit-llvm -Xclang -disable-llvm-passes test.c
14 %struct.s = type { i32, i32 }
16 ; Function Attrs: nounwind readnone
17 define dso_local ptr @test(ptr readnone %arg) local_unnamed_addr #0 !dbg !7 {
19 call void @llvm.dbg.value(metadata ptr %arg, metadata !19, metadata !DIExpression()), !dbg !20
20 %0 = tail call ptr @llvm.preserve.struct.access.index.p0.p0.ss(ptr elementtype(%struct.s) %arg, i32 1, i32 1), !dbg !21, !llvm.preserve.access.index !13
30 ; CHECK: .long 1 # BTF_KIND_STRUCT(id = 2)
32 ; CHECK: .byte 115 # string offset=1
33 ; CHECK: .ascii ".text" # string offset=20
34 ; CHECK: .ascii "0:1" # string offset=63
36 ; CHECK: .long 16 # FieldReloc
37 ; CHECK-NEXT: .long 20 # Field reloc section string offset=20
39 ; CHECK-NEXT: .long .Ltmp{{[0-9]+}}
41 ; CHECK-NEXT: .long 63
44 ; Function Attrs: nounwind readnone
45 declare ptr @llvm.preserve.struct.access.index.p0.p0.ss(ptr, i32, i32) #1
47 ; Function Attrs: nounwind readnone speculatable willreturn
48 declare void @llvm.dbg.value(metadata, metadata, metadata) #2
50 attributes #0 = { 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"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
51 attributes #1 = { nounwind readnone }
52 attributes #2 = { nounwind readnone speculatable willreturn }
55 !llvm.module.flags = !{!3, !4, !5}
58 !0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 10.0.0 (https://github.com/llvm/llvm-project.git 6e353b4df3aa452ed4741a5e5caea02b1a876d8c)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, nameTableKind: None)
59 !1 = !DIFile(filename: "test.c", directory: "/tmp/home/yhs/work/tests/core")
61 !3 = !{i32 2, !"Dwarf Version", i32 4}
62 !4 = !{i32 2, !"Debug Info Version", i32 3}
63 !5 = !{i32 1, !"wchar_size", i32 4}
64 !6 = !{!"clang version 10.0.0 (https://github.com/llvm/llvm-project.git 6e353b4df3aa452ed4741a5e5caea02b1a876d8c)"}
65 !7 = distinct !DISubprogram(name: "test", scope: !1, file: !1, line: 3, type: !8, scopeLine: 3, flags: DIFlagPrototyped, isDefinition: true, isOptimized: true, unit: !0, retainedNodes: !18)
66 !8 = !DISubroutineType(types: !9)
68 !10 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !11, size: 64)
69 !11 = !DIDerivedType(tag: DW_TAG_const_type, baseType: null)
70 !12 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !13, size: 64)
71 !13 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "s", file: !1, line: 2, size: 64, elements: !14)
73 !15 = !DIDerivedType(tag: DW_TAG_member, name: "a", scope: !13, file: !1, line: 2, baseType: !16, size: 32)
74 !16 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
75 !17 = !DIDerivedType(tag: DW_TAG_member, name: "b", scope: !13, file: !1, line: 2, baseType: !16, size: 32, offset: 32)
77 !19 = !DILocalVariable(name: "arg", arg: 1, scope: !7, file: !1, line: 3, type: !12)
78 !20 = !DILocation(line: 0, scope: !7)
79 !21 = !DILocation(line: 3, column: 42, scope: !7)
80 !22 = !DILocation(line: 3, column: 35, scope: !7)