2010-08-21 12:58:16 +08:00
|
|
|
// RUN: %clang_cc1 -emit-llvm -triple x86_64-apple-darwin10 < %s -o - | FileCheck %s
|
2009-10-01 03:55:07 +08:00
|
|
|
// CHECK:%struct.S = type { i32, i32 }
|
2013-02-26 03:51:03 +08:00
|
|
|
// CHECK:define void @test_addrspace(%struct.S addrspace(1)* %p1, %struct.S addrspace(2)* %p2) #0
|
2010-02-09 10:48:28 +08:00
|
|
|
// CHECK: [[p1addr:%.*]] = alloca %struct.S addrspace(1)*
|
|
|
|
// CHECK: [[p2addr:%.*]] = alloca %struct.S addrspace(2)*
|
2009-11-11 11:48:26 +08:00
|
|
|
// CHECK: store %struct.S addrspace(1)* %p1, %struct.S addrspace(1)** [[p1addr]]
|
|
|
|
// CHECK: store %struct.S addrspace(2)* %p2, %struct.S addrspace(2)** [[p2addr]]
|
2010-09-03 06:43:55 +08:00
|
|
|
// CHECK: [[t0:%.*]] = load %struct.S addrspace(2)** [[p2addr]], align 8
|
|
|
|
// CHECK: [[t1:%.*]] = getelementptr inbounds %struct.S addrspace(2)* [[t0]], i32 0, i32 1
|
|
|
|
// CHECK: [[t2:%.*]] = load i32 addrspace(2)* [[t1]], align 4
|
|
|
|
// CHECK: [[t3:%.*]] = load %struct.S addrspace(1)** [[p1addr]], align 8
|
|
|
|
// CHECK: [[t4:%.*]] = getelementptr inbounds %struct.S addrspace(1)* [[t3]], i32 0, i32 0
|
2010-08-21 12:20:22 +08:00
|
|
|
// CHECK: store i32 [[t2]], i32 addrspace(1)* [[t4]], align 4
|
2010-09-03 06:43:55 +08:00
|
|
|
// CHECK: [[t5:%.*]] = load %struct.S addrspace(2)** [[p2addr]], align 8
|
|
|
|
// CHECK: [[t6:%.*]] = getelementptr inbounds %struct.S addrspace(2)* [[t5]], i32 0, i32 0
|
|
|
|
// CHECK: [[t7:%.*]] = load i32 addrspace(2)* [[t6]], align 4
|
|
|
|
// CHECK: [[t8:%.*]] = load %struct.S addrspace(1)** [[p1addr]], align 8
|
|
|
|
// CHECK: [[t9:%.*]] = getelementptr inbounds %struct.S addrspace(1)* [[t8]], i32 0, i32 1
|
2010-08-21 12:20:22 +08:00
|
|
|
// CHECK: store i32 [[t7]], i32 addrspace(1)* [[t9]], align 4
|
2009-10-01 03:55:07 +08:00
|
|
|
// CHECK: ret void
|
|
|
|
// CHECK:}
|
2009-07-22 11:08:17 +08:00
|
|
|
|
|
|
|
// Check that we don't lose the address space when accessing a member
|
|
|
|
// of a structure.
|
|
|
|
|
|
|
|
#define __addr1 __attribute__((address_space(1)))
|
|
|
|
#define __addr2 __attribute__((address_space(2)))
|
|
|
|
|
|
|
|
typedef struct S {
|
|
|
|
int a;
|
|
|
|
int b;
|
|
|
|
} S;
|
|
|
|
|
|
|
|
void test_addrspace(__addr1 S* p1, __addr2 S*p2) {
|
|
|
|
// swap
|
|
|
|
p1->a = p2->b;
|
|
|
|
p1->b = p2->a;
|
|
|
|
}
|
2013-02-20 15:22:19 +08:00
|
|
|
|
2013-02-26 03:51:03 +08:00
|
|
|
// CHECK: attributes #0 = { nounwind "target-features"={{.*}} }
|