[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / BPF / CORE / offset-reloc-ignore.ll
blob4646377cfbf39d9bc31a158382e49286f8d84e03
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 code:
4 ;   #define _(x) (__builtin_preserve_access_index(x))
5 ;   int get_value(const int *arg);
6 ;   int test(int *arg) {
7 ;     return get_value(_(&arg[4]));
8 ;   }
9 ; Compilation flag:
10 ;   clang -target bpf -O2 -g -S -emit-llvm test.c
12 ; Function Attrs: nounwind
13 define dso_local i32 @test(i32* %arg) local_unnamed_addr #0 !dbg !10 {
14 entry:
15   call void @llvm.dbg.value(metadata i32* %arg, metadata !14, metadata !DIExpression()), !dbg !15
16   %0 = tail call i32* @llvm.preserve.array.access.index.p0i32.p0i32(i32* %arg, i32 0, i32 4), !dbg !16, !llvm.preserve.access.index !4
17   %call = tail call i32 @get_value(i32* %0) #4, !dbg !17
18   ret i32 %call, !dbg !18
21 ; CHECK:             r1 += 16
22 ; CHECK:             call get_value
23 ; CHECK:             .section        .BTF.ext,"",@progbits
24 ; CHECK-NOT:         .long   16                      # FieldReloc
26 declare dso_local i32 @get_value(i32*) local_unnamed_addr #1
28 ; Function Attrs: nounwind readnone
29 declare i32* @llvm.preserve.array.access.index.p0i32.p0i32(i32*, i32, i32) #2
31 ; Function Attrs: nounwind readnone speculatable willreturn
32 declare void @llvm.dbg.value(metadata, metadata, metadata) #3
34 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" }
35 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" }
36 attributes #2 = { nounwind readnone }
37 attributes #3 = { nounwind readnone speculatable willreturn }
38 attributes #4 = { nounwind }
40 !llvm.dbg.cu = !{!0}
41 !llvm.module.flags = !{!6, !7, !8}
42 !llvm.ident = !{!9}
44 !0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 10.0.0 (trunk 367256) (llvm/trunk 367266)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, retainedTypes: !3, nameTableKind: None)
45 !1 = !DIFile(filename: "test.c", directory: "/tmp/home/yhs/work/tests/llvm/cast")
46 !2 = !{}
47 !3 = !{!4}
48 !4 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !5, size: 64)
49 !5 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
50 !6 = !{i32 2, !"Dwarf Version", i32 4}
51 !7 = !{i32 2, !"Debug Info Version", i32 3}
52 !8 = !{i32 1, !"wchar_size", i32 4}
53 !9 = !{!"clang version 10.0.0 (trunk 367256) (llvm/trunk 367266)"}
54 !10 = distinct !DISubprogram(name: "test", scope: !1, file: !1, line: 3, type: !11, scopeLine: 3, flags: DIFlagPrototyped, isDefinition: true, isOptimized: true, unit: !0, retainedNodes: !13)
55 !11 = !DISubroutineType(types: !12)
56 !12 = !{!5, !4}
57 !13 = !{!14}
58 !14 = !DILocalVariable(name: "arg", arg: 1, scope: !10, file: !1, line: 3, type: !4)
59 !15 = !DILocation(line: 0, scope: !10)
60 !16 = !DILocation(line: 4, column: 20, scope: !10)
61 !17 = !DILocation(line: 4, column: 10, scope: !10)
62 !18 = !DILocation(line: 4, column: 3, scope: !10)