[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Transforms / MergeICmps / X86 / int64-and-ptr.ll
blobf598d74fa4ea762380be3294832e4cc0b7a967e0
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --force-update
2 ; RUN: opt < %s -mtriple=x86_64-unknown-unknown -mergeicmps -verify-dom-info -S 2>&1 | FileCheck %s
4 ; 8-byte int and 8-byte pointer should merge into a 16-byte memcmp.
6 %struct.outer = type { i64, %struct.inner* }
7 %struct.inner = type { i32, i32, i32 }
9 ; Function Attrs: nounwind uwtable
10 define i1 @test(%struct.outer* align 8 dereferenceable(16) %o1, %struct.outer* align 8 dereferenceable(116) %o2) local_unnamed_addr nofree nosync {
11 ; CHECK-LABEL: @test(
12 ; CHECK-NEXT:  "entry+if.then":
13 ; CHECK-NEXT:    [[TMP0:%.*]] = getelementptr inbounds [[STRUCT_OUTER:%.*]], %struct.outer* [[O1:%.*]], i64 0, i32 0
14 ; CHECK-NEXT:    [[TMP1:%.*]] = getelementptr inbounds [[STRUCT_OUTER]], %struct.outer* [[O2:%.*]], i64 0, i32 0
15 ; CHECK-NEXT:    [[CSTR:%.*]] = bitcast i64* [[TMP0]] to i8*
16 ; CHECK-NEXT:    [[CSTR1:%.*]] = bitcast i64* [[TMP1]] to i8*
17 ; CHECK-NEXT:    [[MEMCMP:%.*]] = call i32 @memcmp(i8* [[CSTR]], i8* [[CSTR1]], i64 16)
18 ; CHECK-NEXT:    [[TMP2:%.*]] = icmp eq i32 [[MEMCMP]], 0
19 ; CHECK-NEXT:    br label [[IF_END5:%.*]]
20 ; CHECK:       if.end5:
21 ; CHECK-NEXT:    ret i1 [[TMP2]]
23 entry:
24   %p1 = getelementptr inbounds %struct.outer, %struct.outer* %o1, i64 0, i32 0
25   %0 = load i64, i64* %p1, align 8
26   %p11 = getelementptr inbounds %struct.outer, %struct.outer* %o2, i64 0, i32 0
27   %1 = load i64, i64* %p11, align 8
28   %cmp = icmp eq i64 %0, %1
29   br i1 %cmp, label %if.then, label %if.end5
31 if.then:                                          ; preds = %entry
32   %p2 = getelementptr inbounds %struct.outer, %struct.outer* %o1, i64 0, i32 1
33   %2 = load %struct.inner*, %struct.inner** %p2, align 8
34   %p22 = getelementptr inbounds %struct.outer, %struct.outer* %o2, i64 0, i32 1
35   %3 = load %struct.inner*, %struct.inner** %p22, align 8
36   %cmp3 = icmp eq %struct.inner* %2, %3
37   br label %if.end5
39 if.end5:                                          ; preds = %if.then, %entry
40   %rez.0 = phi i1 [ %cmp3, %if.then ], [ false, %entry ]
41   ret i1 %rez.0
43 ; Function Attrs: argmemonly nounwind
44 declare void @llvm.lifetime.start.p0i8(i64, i8* nocapture) #1
46 ; Function Attrs: argmemonly nounwind
47 declare void @llvm.lifetime.end.p0i8(i64, i8* nocapture) #1
49 attributes #0 = { nounwind uwtable "correctly-rounded-divide-sqrt-fp-math"="false" "disable-tail-calls"="false" "less-precise-fpmad"="false" "frame-pointer"="none" "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" "target-cpu"="x86-64" "target-features"="+fxsr,+mmx,+sse,+sse2,+x87" "unsafe-fp-math"="false" "use-soft-float"="false" }
50 attributes #1 = { argmemonly nounwind }
51 attributes #2 = { nounwind }