[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / PGOProfile / memop_size_from_strlen.ll
blob601aeaf899860601de46009f1d21d09bf019f8d3
1 ; RUN: opt < %s -pgo-instr-gen -S | FileCheck %s
3 declare void @llvm.memcpy.p0i8.p0i8.i32(i8* nocapture writeonly, i8* nocapture readonly, i32, i1)
4 declare i32 @strlen(i8* nocapture)
6 ; CHECK_LABEL: test
7 ; CHECK: %1 = zext i32 %c to i64
8 ; CHECK:  call void @llvm.instrprof.value.profile(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @__profn_test, i32 0, i32 0), i64 {{[0-9]+}}, i64 %1, i32 1, i32 0)
10 define void @test(i8* %a, i8* %p) {
11   %c = call i32 @strlen(i8* %p)
12   call void @llvm.memcpy.p0i8.p0i8.i32(i8* %a, i8* %p, i32 %c, i1 false)
13   ret void