aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenObjC/mrr-captured-block-var-inlined-layout.m
blob: 0be45533258004a1a019e974008ee4dc1e89af9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// RUN: %clang_cc1 -fblocks -triple x86_64-apple-darwin -O0 -emit-llvm %s -o - | FileCheck %s
// RUN: %clang_cc1 -fblocks -triple i386-apple-darwin -O0 -emit-llvm %s -o - | FileCheck -check-prefix=CHECK-i386 %s
// rdar://12184410

void x(id y) {}
void y(int a) {}

extern id opaque_id();
__weak id wid;

void f() {
    __block int byref_int = 0;
    const id bar = (id) opaque_id();
    id baz = 0;
    __strong id strong_void_sta;
    __block id byref_bab = (id)0;
    __block id bl_var1;

// block variable layout: BL_STRONG:1, BL_OPERATOR:0
// Inline instruction for block variable layout: 0x0100
// CHECK: internal constant{{.*}}i64 256
// CHECK-i386: internal constant{{.*}}i32 256
    void (^b)() = ^{
        x(bar);
    };    

// block variable layout: BL_STRONG:2, BL_BYREF:1, BL_OPERATOR:0
// Inline instruction for block variable layout: 0x0210
// CHECK: internal constant{{.*}}i64 528
// CHECK-i386: internal constant{{.*}}i32 528
    void (^c)() = ^{
        x(bar);
        x(baz);
        byref_int = 1;
    };    

// block variable layout: BL_STRONG:2, BL_BYREF:3, BL_OPERATOR:0
// Inline instruction for block variable layout: 0x0230
// CHECK: internal constant{{.*}}i64 560
// CHECK-i386: internal constant{{.*}}i32 560
    void (^d)() = ^{
        x(bar);
        x(baz);
        byref_int = 1;
        bl_var1 = 0;
        byref_bab = 0;
    };

// block variable layout: BL_STRONG:2, BL_BYREF:3, BL_OPERATOR:0
// Inline instruction for block variable layout: 0x0230
// CHECK: internal constant{{.*}}i64 560
// CHECK-i386: internal constant{{.*}}i32 560
    id (^e)() = ^{
        x(bar);
        x(baz);
        byref_int = 1;
        bl_var1 = 0;
        byref_bab = 0;
        return wid;
    };

// Inline instruction for block variable layout: 0x020
// CHECK: internal constant{{.*}}i64 32
// CHECK-i386: internal constant{{.*}}i32 32
    void (^ii)() = ^{
       byref_int = 1;
       byref_bab = 0;
    };
}