[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / InstCombine / builtin-object-size-custom-dl.ll
blobeec0f76842520c8ac7035225074feb91fecb0f8d
1 ; RUN: opt -instcombine -S < %s | FileCheck %s
2 target datalayout = "e-m:o-p:40:64:64:32-i64:64-f80:128-n8:16:32:64-S128"
4 ; check that memory builtins can be handled.
5 define i64 @objsize1_custom_idx(i64 %sz) {
6 entry:
7   %ptr = call i8* @malloc(i64 %sz)
8   %ptr2 = getelementptr inbounds i8, i8* %ptr, i32 2
9   %calc_size = call i64 @llvm.objectsize.i64.p0i8(i8* %ptr2, i1 false, i1 true, i1 true)
10   ret i64 %calc_size
13 %struct.V = type { [10 x i8], i32, [10 x i8] }
15 define i32 @objsize2_custom_idx() #0 {
16 entry:
17   %var = alloca %struct.V, align 4
18   %0 = bitcast %struct.V* %var to i8*
19   call void @llvm.lifetime.start.p0i8(i64 28, i8* %0) #3
20   %buf1 = getelementptr inbounds %struct.V, %struct.V* %var, i32 0, i32 0
21   %arrayidx = getelementptr inbounds [10 x i8], [10 x i8]* %buf1, i64 0, i64 1
22   %1 = call i64 @llvm.objectsize.i64.p0i8(i8* %arrayidx, i1 false, i1 false, i1 false)
23   %conv = trunc i64 %1 to i32
24   call void @llvm.lifetime.end.p0i8(i64 28, i8* %0) #3
25   ret i32 %conv
26 ; CHECK: ret i32 27
29 declare void @llvm.lifetime.start.p0i8(i64, i8* nocapture) #1
30 declare void @llvm.lifetime.end.p0i8(i64, i8* nocapture) #1
31 declare i8* @malloc(i64)
32 declare i64 @llvm.objectsize.i64.p0i8(i8*, i1, i1, i1)