1*9880d681SAndroid Build Coastguard Worker; RUN: opt -instcombine -S < %s | FileCheck %s 2*9880d681SAndroid Build Coastguard Worker 3*9880d681SAndroid Build Coastguard Workertarget datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128" 4*9880d681SAndroid Build Coastguard Worker 5*9880d681SAndroid Build Coastguard Workerdeclare void @llvm.memcpy.p0i8.p0i8.i64(i8* nocapture, i8* nocapture, i64, i32, i1) nounwind 6*9880d681SAndroid Build Coastguard Worker 7*9880d681SAndroid Build Coastguard Worker; Verify that instcombine preserves TBAA tags when converting a memcpy into 8*9880d681SAndroid Build Coastguard Worker; a scalar load and store. 9*9880d681SAndroid Build Coastguard Worker 10*9880d681SAndroid Build Coastguard Worker%struct.test1 = type { float } 11*9880d681SAndroid Build Coastguard Worker 12*9880d681SAndroid Build Coastguard Worker; CHECK: @test 13*9880d681SAndroid Build Coastguard Worker; CHECK: %[[LOAD:.*]] = load i32, i32* %{{.*}}, align 4, !tbaa !0 14*9880d681SAndroid Build Coastguard Worker; CHECK: store i32 %[[LOAD:.*]], i32* %{{.*}}, align 4, !tbaa !0 15*9880d681SAndroid Build Coastguard Worker; CHECK: ret 16*9880d681SAndroid Build Coastguard Workerdefine void @test1(%struct.test1* nocapture %a, %struct.test1* nocapture %b) { 17*9880d681SAndroid Build Coastguard Workerentry: 18*9880d681SAndroid Build Coastguard Worker %0 = bitcast %struct.test1* %a to i8* 19*9880d681SAndroid Build Coastguard Worker %1 = bitcast %struct.test1* %b to i8* 20*9880d681SAndroid Build Coastguard Worker tail call void @llvm.memcpy.p0i8.p0i8.i64(i8* %0, i8* %1, i64 4, i32 4, i1 false), !tbaa.struct !3 21*9880d681SAndroid Build Coastguard Worker ret void 22*9880d681SAndroid Build Coastguard Worker} 23*9880d681SAndroid Build Coastguard Worker 24*9880d681SAndroid Build Coastguard Worker%struct.test2 = type { i32 (i8*, i32*, double*)** } 25*9880d681SAndroid Build Coastguard Worker 26*9880d681SAndroid Build Coastguard Workerdefine i32 (i8*, i32*, double*)*** @test2() { 27*9880d681SAndroid Build Coastguard Worker; CHECK-LABEL: @test2( 28*9880d681SAndroid Build Coastguard Worker; CHECK-NOT: memcpy 29*9880d681SAndroid Build Coastguard Worker; CHECK: ret 30*9880d681SAndroid Build Coastguard Worker %tmp = alloca %struct.test2, align 8 31*9880d681SAndroid Build Coastguard Worker %tmp1 = bitcast %struct.test2* %tmp to i8* 32*9880d681SAndroid Build Coastguard Worker call void @llvm.memcpy.p0i8.p0i8.i64(i8* %tmp1, i8* undef, i64 8, i32 8, i1 false), !tbaa.struct !4 33*9880d681SAndroid Build Coastguard Worker %tmp2 = getelementptr %struct.test2, %struct.test2* %tmp, i32 0, i32 0 34*9880d681SAndroid Build Coastguard Worker %tmp3 = load i32 (i8*, i32*, double*)**, i32 (i8*, i32*, double*)*** %tmp2 35*9880d681SAndroid Build Coastguard Worker ret i32 (i8*, i32*, double*)*** %tmp2 36*9880d681SAndroid Build Coastguard Worker} 37*9880d681SAndroid Build Coastguard Worker 38*9880d681SAndroid Build Coastguard Worker; CHECK: !0 = !{!1, !1, i64 0} 39*9880d681SAndroid Build Coastguard Worker; CHECK: !1 = !{!"float", !2} 40*9880d681SAndroid Build Coastguard Worker 41*9880d681SAndroid Build Coastguard Worker!0 = !{!"Simple C/C++ TBAA"} 42*9880d681SAndroid Build Coastguard Worker!1 = !{!"omnipotent char", !0} 43*9880d681SAndroid Build Coastguard Worker!2 = !{!5, !5, i64 0} 44*9880d681SAndroid Build Coastguard Worker!3 = !{i64 0, i64 4, !2} 45*9880d681SAndroid Build Coastguard Worker!4 = !{i64 0, i64 8, null} 46*9880d681SAndroid Build Coastguard Worker!5 = !{!"float", !0} 47