[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / X86 / pr40631_deadstore_elision.ll
blobc742ce4bd94259a72220688c510f6f467a4e16c6
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc -o - %s -mtriple=x86_64-unknown-linux-gnu | FileCheck %s
4 %struct.sk_buff = type { i8* }
5 %struct.xt_action_param = type { i8*, i8*, i8*, i32, i32, i8 }
7 define i32 @ipt_do_table(%struct.sk_buff* noalias nocapture readonly) {
8 ; CHECK-LABEL: ipt_do_table:
9 ; CHECK:       # %bb.0:
10 ; CHECK-NEXT:    subq $40, %rsp
11 ; CHECK-NEXT:    .cfi_def_cfa_offset 48
12 ; CHECK-NEXT:    movq (%rdi), %rax
13 ; CHECK-NEXT:    xorps %xmm0, %xmm0
14 ; CHECK-NEXT:    movaps %xmm0, {{[0-9]+}}(%rsp)
15 ; CHECK-NEXT:    movq $0, {{[0-9]+}}(%rsp)
16 ; CHECK-NEXT:    movaps {{.*#+}} xmm0 = [12297829382473034410,12297829382473034410]
17 ; CHECK-NEXT:    movaps %xmm0, (%rsp)
18 ; CHECK-NEXT:    movabsq $-6148914691236517206, %rcx # imm = 0xAAAAAAAAAAAAAAAA
19 ; CHECK-NEXT:    movq %rcx, {{[0-9]+}}(%rsp)
20 ; CHECK-NEXT:    movq %rcx, {{[0-9]+}}(%rsp)
21 ; CHECK-NEXT:    movb $-86, {{[0-9]+}}(%rsp)
22 ; CHECK-NEXT:    movzwl 2(%rax), %ecx
23 ; CHECK-NEXT:    andl $8191, %ecx # imm = 0x1FFF
24 ; CHECK-NEXT:    movl %ecx, {{[0-9]+}}(%rsp)
25 ; CHECK-NEXT:    movzbl (%rax), %eax
26 ; CHECK-NEXT:    andl $15, %eax
27 ; CHECK-NEXT:    movl %eax, {{[0-9]+}}(%rsp)
28 ; CHECK-NEXT:    movb $0, {{[0-9]+}}(%rsp)
29 ; CHECK-NEXT:    movq %rsp, %rdi
30 ; CHECK-NEXT:    callq use_it
31 ; CHECK-NEXT:    addq $40, %rsp
32 ; CHECK-NEXT:    .cfi_def_cfa_offset 8
33 ; CHECK-NEXT:    retq
34   %2 = alloca %struct.xt_action_param, align 16
35   %3 = getelementptr inbounds %struct.sk_buff, %struct.sk_buff* %0, i64 0, i32 0
36   %4 = load i8*, i8** %3, align 8
37   %5 = bitcast %struct.xt_action_param* %2 to i8*
38   call void @llvm.lifetime.start.p0i8(i64 40, i8* nonnull %5) #3
39   call void @llvm.memset.p0i8.i64(i8* nonnull align 16 %5, i8 0, i64 40, i1 false)
40   %6 = bitcast %struct.xt_action_param* %2 to <2 x i8*>*
41   store <2 x i8*> <i8* inttoptr (i64 -6148914691236517206 to i8*), i8* inttoptr (i64 -6148914691236517206 to i8*)>, <2 x i8*>* %6, align 16
42   %7 = getelementptr inbounds %struct.xt_action_param, %struct.xt_action_param* %2, i64 0, i32 2
43   store i8* inttoptr (i64 -6148914691236517206 to i8*), i8** %7, align 16
44   %8 = getelementptr inbounds %struct.xt_action_param, %struct.xt_action_param* %2, i64 0, i32 3
45   %9 = getelementptr inbounds %struct.xt_action_param, %struct.xt_action_param* %2, i64 0, i32 4
46   %10 = getelementptr inbounds %struct.xt_action_param, %struct.xt_action_param* %2, i64 0, i32 5
47   %11 = getelementptr inbounds i8, i8* %4, i64 2
48   %12 = bitcast i8* %11 to i16*
49   %13 = bitcast i32* %8 to i8*
50   call void @llvm.memset.p0i8.i64(i8* nonnull align 8 %13, i8 -86, i64 9, i1 false)
51   %14 = load i16, i16* %12, align 2
52   %15 = and i16 %14, 8191
53   %16 = zext i16 %15 to i32
54   store i32 %16, i32* %8, align 8
55   %17 = load i8, i8* %4, align 2
56   %18 = and i8 %17, 15
57   %19 = zext i8 %18 to i32
58   store i32 %19, i32* %9, align 4
59   store i8 0, i8* %10, align 16
60   %20 = call i32 @use_it(%struct.xt_action_param* nonnull %2)
61   call void @llvm.lifetime.end.p0i8(i64 40, i8* nonnull %5)
62   ret i32 %20
65 declare void @llvm.lifetime.start.p0i8(i64, i8* nocapture)
67 declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1)
69 declare dso_local i32 @use_it(%struct.xt_action_param*) local_unnamed_addr
71 declare void @llvm.lifetime.end.p0i8(i64, i8* nocapture)