[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / AArch64 / tailcall-string-rvo.ll
blobac9ce4d10df947c924f481be6230c94462bdab3f
1 ; RUN: llc -relocation-model=static -verify-machineinstrs -O2 < %s | FileCheck %s
2 ; RUN: llc -relocation-model=static -verify-machineinstrs -global-isel -O2 < %s | FileCheck %s
4 ; The call to function TestBar should be a tail call, when in C++ the string
5 ; `ret` is RVO returned.
6 ; string TestFoo() {
7 ;   string ret = undef;
8 ;   TestBar(&ret);  // tail call optimized
9 ;   return ret;
10 ; }
12 target triple = "aarch64-linux-gnu"
14 %class.basic_string.11.42.73 = type { %"class.__gnu_cxx::__versa_string.10.41.72" }
15 %"class.__gnu_cxx::__versa_string.10.41.72" = type { %"class.__gnu_cxx::__sso_string_base.9.40.71" }
16 %"class.__gnu_cxx::__sso_string_base.9.40.71" = type { %"struct.__gnu_cxx::__vstring_utility<char, std::char_traits<char>, std::allocator<char> >::_Alloc_hider.7.38.69", i64, %union.anon.8.39.70 }
17 %"struct.__gnu_cxx::__vstring_utility<char, std::char_traits<char>, std::allocator<char> >::_Alloc_hider.7.38.69" = type { i8* }
18 %union.anon.8.39.70 = type { i64, [8 x i8] }
20 declare void @TestBaz(%class.basic_string.11.42.73* noalias sret %arg)
22 define void @TestBar(%class.basic_string.11.42.73* noalias sret %arg) {
23 bb:
24   call void @TestBaz(%class.basic_string.11.42.73* noalias sret %arg)
25   ret void
28 define void @TestFoo(%class.basic_string.11.42.73* noalias sret %arg) {
29 ; CHECK-LABEL: TestFoo:
30 ; CHECK: b TestBar
31 bb:
32   %tmp = getelementptr inbounds %class.basic_string.11.42.73, %class.basic_string.11.42.73* %arg, i64 0, i32 0, i32 0, i32 2
33   %tmp1 = bitcast %class.basic_string.11.42.73* %arg to %union.anon.8.39.70**
34   store %union.anon.8.39.70* %tmp, %union.anon.8.39.70** %tmp1, align 8
35   %tmp2 = bitcast %union.anon.8.39.70* %tmp to i8*
36   tail call void @llvm.memcpy.p0i8.p0i8.i64(i8* %tmp2, i8* nonnull undef, i64 13, i1 false)
37   %tmp3 = getelementptr inbounds %class.basic_string.11.42.73, %class.basic_string.11.42.73* %arg, i64 0, i32 0, i32 0, i32 1
38   store i64 13, i64* %tmp3, align 8
39   %tmp4 = getelementptr inbounds %class.basic_string.11.42.73, %class.basic_string.11.42.73* %arg, i64 0, i32 0, i32 0, i32 2, i32 1, i64 5
40   store i8 0, i8* %tmp4, align 1
41   tail call void @TestBar(%class.basic_string.11.42.73* noalias sret %arg)
42   ret void
45 ; Function Attrs: argmemonly nounwind
46 declare void @llvm.memcpy.p0i8.p0i8.i64(i8* nocapture, i8* nocapture readonly, i64, i1) #0
48 attributes #0 = { argmemonly nounwind }