[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / Transforms / ObjCARC / inert-global.ll
blob4bb9a809a0f218004bcabf6446fa3ec8eb8f650c
1 ; RUN: opt -objc-arc -S < %s | FileCheck %s
3 %0 = type opaque
4 %struct.__NSConstantString_tag = type { i32*, i32, i8*, i64 }
5 %struct.__block_descriptor = type { i64, i64 }
7 @__CFConstantStringClassReference = external global [0 x i32]
8 @.str = private unnamed_addr constant [4 x i8] c"abc\00", section "__TEXT,__cstring,cstring_literals", align 1
9 @.str1 = private unnamed_addr constant [4 x i8] c"def\00", section "__TEXT,__cstring,cstring_literals", align 1
10 @_unnamed_cfstring_ = private global %struct.__NSConstantString_tag { i32* getelementptr inbounds ([0 x i32], [0 x i32]* @__CFConstantStringClassReference, i32 0, i32 0), i32 1992, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i64 3 }, section "__DATA,__cfstring", align 8 #0
11 @_unnamed_cfstring_wo_attr = private global %struct.__NSConstantString_tag { i32* getelementptr inbounds ([0 x i32], [0 x i32]* @__CFConstantStringClassReference, i32 0, i32 0), i32 1992, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str1, i32 0, i32 0), i64 3 }, section "__DATA,__cfstring", align 8
12 @_NSConcreteGlobalBlock = external global i8*
13 @.str.1 = private unnamed_addr constant [6 x i8] c"v8@?0\00", align 1
14 @"__block_descriptor_32_e5_v8@?0l" = linkonce_odr hidden unnamed_addr constant { i64, i64, i8*, i8* } { i64 0, i64 32, i8* getelementptr inbounds ([6 x i8], [6 x i8]* @.str.1, i32 0, i32 0), i8* null }, align 8
15 @__block_literal_global = internal constant { i8**, i32, i32, i8*, %struct.__block_descriptor* } { i8** @_NSConcreteGlobalBlock, i32 1342177280, i32 0, i8* bitcast (void (i8*)* @__globalBlock_block_invoke to i8*), %struct.__block_descriptor* bitcast ({ i64, i64, i8*, i8* }* @"__block_descriptor_32_e5_v8@?0l" to %struct.__block_descriptor*) }, align 8 #0
17 ; CHECK-LABEL: define %0* @stringLiteral()
18 ; CHECK-NOT: call
19 ; CHECK: ret %0* bitcast (%struct.__NSConstantString_tag* @_unnamed_cfstring_ to %0*)
21 define %0* @stringLiteral() {
22   %1 = tail call i8* @llvm.objc.retain(i8* bitcast (%struct.__NSConstantString_tag* @_unnamed_cfstring_ to i8*))
23   %2 = call i8* @llvm.objc.autorelease(i8* bitcast (%struct.__NSConstantString_tag* @_unnamed_cfstring_ to i8*))
24   ret %0* bitcast (%struct.__NSConstantString_tag* @_unnamed_cfstring_ to %0*)
27 ; CHECK-LABEL: define %0* @stringLiteral1()
28 ; CHECK-NEXT: call i8* @llvm.objc.retain(
29 ; CHECK-NEXT: call i8* @llvm.objc.autorelease(
30 ; CHECK-NEXT: ret %0*
32 define %0* @stringLiteral1() {
33   %1 = tail call i8* @llvm.objc.retain(i8* bitcast (%struct.__NSConstantString_tag* @_unnamed_cfstring_wo_attr to i8*))
34   %2 = call i8* @llvm.objc.autorelease(i8* bitcast (%struct.__NSConstantString_tag* @_unnamed_cfstring_wo_attr to i8*))
35   ret %0* bitcast (%struct.__NSConstantString_tag* @_unnamed_cfstring_wo_attr to %0*)
38 ; CHECK-LABEL: define void (...)* @globalBlock()
39 ; CHECK-NOT: call
40 ; CHECK: %[[V1:.*]] = bitcast i8* bitcast ({ i8**, i32, i32, i8*, %struct.__block_descriptor* }* @__block_literal_global to i8*) to void (...)*
41 ; CHECK-NEXT: ret void (...)* %[[V1]]
43 define void (...)* @globalBlock() {
44   %1 = tail call i8* @llvm.objc.retainBlock(i8* bitcast ({ i8**, i32, i32, i8*, %struct.__block_descriptor* }* @__block_literal_global to i8*))
45   %2 = tail call i8* @llvm.objc.retainBlock(i8* %1)
46   %3 = bitcast i8* %2 to void (...)*
47   tail call void @llvm.objc.release(i8* %1)
48   %4 = tail call i8* @llvm.objc.autoreleaseReturnValue(i8* %2)
49   ret void (...)* %3
52 define internal void @__globalBlock_block_invoke(i8* nocapture readnone) {
53   tail call void @foo()
54   ret void
57 declare void @foo()
59 declare i8* @llvm.objc.retain(i8*) local_unnamed_addr
60 declare i8* @llvm.objc.autoreleaseReturnValue(i8*) local_unnamed_addr
61 declare i8* @llvm.objc.retainBlock(i8*) local_unnamed_addr
62 declare void @llvm.objc.release(i8*) local_unnamed_addr
63 declare i8* @llvm.objc.autorelease(i8*) local_unnamed_addr
65 attributes #0 = { "objc_arc_inert" }