Revert r354244 "[DAGCombiner] Eliminate dead stores to stack."
[llvm-complete.git] / test / CodeGen / X86 / xchg-nofold.ll
blob673fa74d02f184edcd0d74fedc810f042428c2bd
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc -mtriple=x86_64-linux-gnu < %s | FileCheck %s
4 %"struct.std::atomic" = type { %"struct.std::atomic_bool" }
5 %"struct.std::atomic_bool" = type { %"struct.std::__atomic_base" }
6 %"struct.std::__atomic_base" = type { i8 }
8 ; CHECK-LABEL: _Z3fooRSt6atomicIbEb
9 define zeroext i1 @_Z3fooRSt6atomicIbEb(%"struct.std::atomic"* nocapture dereferenceable(1) %a, i1 returned zeroext %b) nounwind {
10 ; CHECK-LABEL: _Z3fooRSt6atomicIbEb:
11 ; CHECK:       # %bb.0: # %entry
12 ; CHECK-NEXT:    movl %esi, %eax
13 ; CHECK-NEXT:    movq %rdi, %rcx
14 ; CHECK-NEXT:    shrq $3, %rcx
15 ; CHECK-NEXT:    movb 2147450880(%rcx), %cl
16 ; CHECK-NEXT:    testb %cl, %cl
17 ; CHECK-NEXT:    je .LBB0_3
18 ; CHECK-NEXT:  # %bb.1:
19 ; CHECK-NEXT:    movl %edi, %edx
20 ; CHECK-NEXT:    andb $7, %dl
21 ; CHECK-NEXT:    cmpb %cl, %dl
22 ; CHECK-NEXT:    jge .LBB0_2
23 ; CHECK-NEXT:  .LBB0_3:
24 ; CHECK-NEXT:    movl %eax, %ecx
25 ; CHECK-NEXT:    xchgb %cl, (%rdi)
26 ; CHECK-NEXT:    # kill: def $al killed $al killed $eax
27 ; CHECK-NEXT:    retq
28 ; CHECK-NEXT:  .LBB0_2:
29 ; CHECK-NEXT:    pushq %rax
30 ; CHECK-NEXT:    callq __asan_report_store1
31 ; CHECK-NEXT:    #APP
32 ; CHECK-NEXT:    #NO_APP
33 entry:
34   %frombool.i.i = zext i1 %b to i8
35   %_M_i.i.i = getelementptr inbounds %"struct.std::atomic", %"struct.std::atomic"* %a, i64 0, i32 0, i32 0, i32 0
36   %0 = ptrtoint i8* %_M_i.i.i to i64
37   %1 = lshr i64 %0, 3
38   %2 = add i64 %1, 2147450880
39   %3 = inttoptr i64 %2 to i8*
40   %4 = load i8, i8* %3
41   %5 = icmp ne i8 %4, 0
42   br i1 %5, label %6, label %11
44 ; <label>:6:                                      ; preds = %entry
45   %7 = and i64 %0, 7
46   %8 = trunc i64 %7 to i8
47   %9 = icmp sge i8 %8, %4
48   br i1 %9, label %10, label %11
50 ; <label>:10:                                     ; preds = %6
51   call void @__asan_report_store1(i64 %0)
52   call void asm sideeffect "", ""()
53   unreachable
55 ; <label>:11:                                     ; preds = %6, %entry
56   store atomic i8 %frombool.i.i, i8* %_M_i.i.i seq_cst, align 1
57   ret i1 %b
60 declare void @__asan_report_store1(i64)