[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / BPF / xadd.ll
blob49f0c10c318694d13b6f99e3864b5f5098ee133e
1 ; RUN: not llc -march=bpfel < %s 2>&1 | FileCheck %s
2 ; RUN: not llc -march=bpfeb < %s 2>&1 | FileCheck %s
3 ; RUN: not llc -march=bpfel -mattr=+alu32 < %s 2>&1 | FileCheck %s
4 ; RUN: not llc -march=bpfeb -mattr=+alu32 < %s 2>&1 | FileCheck %s
6 ; This file is generated with the source command and source
7 ; $ clang -target bpf -O2 -g -S -emit-llvm t.c
8 ; $ cat t.c
9 ; int test(int *ptr) {
10 ;    int r;
11 ;    __sync_fetch_and_add(ptr, 4);
12 ;    r = __sync_fetch_and_add(ptr, 6);
13 ;    return r;
14 ; }
16 ; ModuleID = 't.c'
17 source_filename = "t.c"
18 target datalayout = "e-m:e-p:64:64-i64:64-n32:64-S128"
19 target triple = "bpf"
21 ; Function Attrs: nounwind
22 define dso_local i32 @test(i32* nocapture %ptr) local_unnamed_addr #0 !dbg !7 {
23 entry:
24   call void @llvm.dbg.value(metadata i32* %ptr, metadata !13, metadata !DIExpression()), !dbg !15
25   %0 = atomicrmw add i32* %ptr, i32 4 seq_cst, !dbg !16
26   %1 = atomicrmw add i32* %ptr, i32 6 seq_cst, !dbg !17
27 ; CHECK: line 4: Invalid usage of the XADD return value
28   call void @llvm.dbg.value(metadata i32 %1, metadata !14, metadata !DIExpression()), !dbg !18
29   ret i32 %1, !dbg !19
32 ; Function Attrs: nounwind readnone speculatable
33 declare void @llvm.dbg.value(metadata, metadata, metadata) #1
35 attributes #0 = { nounwind "correctly-rounded-divide-sqrt-fp-math"="false" "disable-tail-calls"="false" "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "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" }
36 attributes #1 = { nounwind readnone speculatable }
38 !llvm.dbg.cu = !{!0}
39 !llvm.module.flags = !{!3, !4, !5}
40 !llvm.ident = !{!6}
42 !0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 8.0.0 (trunk 342605) (llvm/trunk 342612)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, nameTableKind: None)
43 !1 = !DIFile(filename: "t.c", directory: "/home/yhs/work/tests/llvm/sync/test1")
44 !2 = !{}
45 !3 = !{i32 2, !"Dwarf Version", i32 4}
46 !4 = !{i32 2, !"Debug Info Version", i32 3}
47 !5 = !{i32 1, !"wchar_size", i32 4}
48 !6 = !{!"clang version 8.0.0 (trunk 342605) (llvm/trunk 342612)"}
49 !7 = distinct !DISubprogram(name: "test", scope: !1, file: !1, line: 1, type: !8, isLocal: false, isDefinition: true, scopeLine: 1, flags: DIFlagPrototyped, isOptimized: true, unit: !0, retainedNodes: !12)
50 !8 = !DISubroutineType(types: !9)
51 !9 = !{!10, !11}
52 !10 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
53 !11 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !10, size: 64)
54 !12 = !{!13, !14}
55 !13 = !DILocalVariable(name: "ptr", arg: 1, scope: !7, file: !1, line: 1, type: !11)
56 !14 = !DILocalVariable(name: "r", scope: !7, file: !1, line: 2, type: !10)
57 !15 = !DILocation(line: 1, column: 15, scope: !7)
58 !16 = !DILocation(line: 3, column: 4, scope: !7)
59 !17 = !DILocation(line: 4, column: 8, scope: !7)
60 !18 = !DILocation(line: 2, column: 8, scope: !7)
61 !19 = !DILocation(line: 5, column: 4, scope: !7)